/*!
 * jquery-confirm v3.0.3 (http://craftpip.github.io/jquery-confirm/)
 * Author: boniface pereira
 * Website: www.craftpip.com
 * Contact: hey@craftpip.com
 *
 * Copyright 2013-2016 jquery-confirm
 * Licensed under MIT (https://github.com/craftpip/jquery-confirm/blob/master/LICENSE)
 */
@-webkit-keyframes jconfirm-spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes jconfirm-spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

body[class*=jconfirm-no-scroll-] {
    overflow: hidden !important;
}

.jconfirm {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999999;
    font-family: inherit;
    overflow: hidden;
}

.jconfirm .jconfirm-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: opacity .4s;
    transition: opacity .4s;
}

.jconfirm .jconfirm-bg.jconfirm-bg-h {
    opacity: 0 !important;
}

.jconfirm .jconfirm-scrollpane {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    -webkit-perspective: 500px;
    perspective: 500px;
    -webkit-perspective-origin: center;
    perspective-origin: center;
}

.jconfirm .jconfirm-box {
    background: white;
    border-radius: 4px;
    position: relative;
    outline: none;
    padding: 15px 15px 0;
    margin: 0 auto;
    overflow: hidden;
}

@-webkit-keyframes type-blue {
    1%,
    100% {
        border-color: #3498db;
    }
    50% {
        border-color: #5faee3;
    }
}

@keyframes type-blue {
    1%,
    100% {
        border-color: #3498db;
    }
    50% {
        border-color: #5faee3;
    }
}

@-webkit-keyframes type-green {
    1%,
    100% {
        border-color: #2ecc71;
    }
    50% {
        border-color: #54d98c;
    }
}

@keyframes type-green {
    1%,
    100% {
        border-color: #2ecc71;
    }
    50% {
        border-color: #54d98c;
    }
}

@-webkit-keyframes type-red {
    1%,
    100% {
        border-color: #e74c3c;
    }
    50% {
        border-color: #ed7669;
    }
}

@keyframes type-red {
    1%,
    100% {
        border-color: #e74c3c;
    }
    50% {
        border-color: #ed7669;
    }
}

@-webkit-keyframes type-orange {
    1%,
    100% {
        border-color: #f1c40f;
    }
    50% {
        border-color: #f4d03f;
    }
}

@keyframes type-orange {
    1%,
    100% {
        border-color: #f1c40f;
    }
    50% {
        border-color: #f4d03f;
    }
}

@-webkit-keyframes type-purple {
    1%,
    100% {
        border-color: #9b59b6;
    }
    50% {
        border-color: #b07cc6;
    }
}

@keyframes type-purple {
    1%,
    100% {
        border-color: #9b59b6;
    }
    50% {
        border-color: #b07cc6;
    }
}

@-webkit-keyframes type-dark {
    1%,
    100% {
        border-color: #34495e;
    }
    50% {
        border-color: #46627f;
    }
}

@keyframes type-dark {
    1%,
    100% {
        border-color: #34495e;
    }
    50% {
        border-color: #46627f;
    }
}

.jconfirm .jconfirm-box.jconfirm-type-animated {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.jconfirm .jconfirm-box.jconfirm-type-blue {
    border-top: solid 7px #3498db;
    -webkit-animation-name: type-blue;
    animation-name: type-blue;
}

.jconfirm .jconfirm-box.jconfirm-type-green {
    border-top: solid 7px #2ecc71;
    -webkit-animation-name: type-green;
    animation-name: type-green;
}

.jconfirm .jconfirm-box.jconfirm-type-red {
    border-top: solid 7px #e74c3c;
    -webkit-animation-name: type-red;
    animation-name: type-red;
}

.jconfirm .jconfirm-box.jconfirm-type-orange {
    border-top: solid 7px #f1c40f;
    -webkit-animation-name: type-orange;
    animation-name: type-orange;
}

.jconfirm .jconfirm-box.jconfirm-type-purple {
    border-top: solid 7px #9b59b6;
    -webkit-animation-name: type-purple;
    animation-name: type-purple;
}

.jconfirm .jconfirm-box.jconfirm-type-dark {
    border-top: solid 7px #34495e;
    -webkit-animation-name: type-dark;
    animation-name: type-dark;
}

.jconfirm .jconfirm-box.loading {
    height: 120px;
}

.jconfirm .jconfirm-box.loading:before {
    content: '';
    position: absolute;
    left: 0;
    background: white;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: 10px;
    z-index: 1;
}

.jconfirm .jconfirm-box.loading:after {
    opacity: 0.6;
    content: '';
    height: 30px;
    width: 30px;
    border: solid 3px transparent;
    position: absolute;
    left: 50%;
    margin-left: -15px;
    border-radius: 50%;
    -webkit-animation: jconfirm-spin 1s infinite linear;
    animation: jconfirm-spin 1s infinite linear;
    border-bottom-color: dodgerblue;
    top: 50%;
    margin-top: -15px;
    z-index: 2;
}

.jconfirm .jconfirm-box div.jconfirm-closeIcon {
    height: 20px;
    width: 20px;
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
    opacity: .6;
    text-align: center;
    -webkit-transition: opacity 0.3s ease-in;
    transition: opacity 0.3s ease-in;
    font-size: 27px !important;
    line-height: 14px !important;
    display: none;
}

.jconfirm .jconfirm-box div.jconfirm-closeIcon:empty {
    display: none;
}

.jconfirm .jconfirm-box div.jconfirm-closeIcon .fa {
    font-size: 16px;
}

.jconfirm .jconfirm-box div.jconfirm-closeIcon .glyphicon {
    font-size: 16px;
}

.jconfirm .jconfirm-box div.jconfirm-closeIcon .zmdi {
    font-size: 16px;
}

.jconfirm .jconfirm-box div.jconfirm-closeIcon:hover {
    opacity: 1;
}

.jconfirm .jconfirm-box div.jconfirm-title-c {
    display: block;
    font-size: 22px;
    line-height: 20px;
}

.jconfirm .jconfirm-box div.jconfirm-title-c .jconfirm-icon-c {
    font-size: inherit;
    padding-bottom: 15px;
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
}

.jconfirm .jconfirm-box div.jconfirm-title-c .jconfirm-icon-c i {
    vertical-align: middle;
}

.jconfirm .jconfirm-box div.jconfirm-title-c .jconfirm-icon-c:empty {
    display: none;
}

.jconfirm .jconfirm-box div.jconfirm-title-c .jconfirm-title {
    font-size: inherit;
    font-family: inherit;
    display: inline-block;
    vertical-align: middle;
    padding-bottom: 15px;
}

.jconfirm .jconfirm-box div.jconfirm-title-c .jconfirm-title:empty {
    display: none;
}

.jconfirm .jconfirm-box div.jconfirm-content-pane {
    margin-bottom: 15px;
    height: auto;
    -webkit-transition: height 0.4s ease-in;
    transition: height 0.4s ease-in;
    display: inline-block;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.jconfirm .jconfirm-box div.jconfirm-content-pane .jconfirm-content img {
    max-width: 100%;
    height: auto;
}

.jconfirm .jconfirm-box div.jconfirm-content-pane .jconfirm-content:empty {
    display: none;
}

.jconfirm .jconfirm-box .jconfirm-buttons {
    padding-bottom: 11px;
}

.jconfirm .jconfirm-box .jconfirm-buttons > button {
    margin-bottom: 4px;
    margin-left: 2px;
    margin-right: 2px;
}

.jconfirm .jconfirm-box .jconfirm-buttons button {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    border-radius: 4px;
    min-height: 1em;
    outline: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: opacity 0.1s ease, background-color 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, background 0.1s ease;
    transition: opacity 0.1s ease, background-color 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, background 0.1s ease;
    -webkit-tap-highlight-color: transparent;
    border: none;
    background-image: none;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-blue {
    background-color: #3498db;
    color: #FFF;
    text-shadow: none;
    -webkit-transition: background .2s;
    transition: background .2s;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-blue:hover {
    background-color: #2980b9;
    color: #FFF;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-green {
    background-color: #2ecc71;
    color: #FFF;
    text-shadow: none;
    -webkit-transition: background .2s;
    transition: background .2s;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-green:hover {
    background-color: #27ae60;
    color: #FFF;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-red {
    background-color: #e74c3c;
    color: #FFF;
    text-shadow: none;
    -webkit-transition: background .2s;
    transition: background .2s;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-red:hover {
    background-color: #c0392b;
    color: #FFF;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-orange {
    background-color: #f1c40f;
    color: #FFF;
    text-shadow: none;
    -webkit-transition: background .2s;
    transition: background .2s;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-orange:hover {
    background-color: #f39c12;
    color: #FFF;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-default {
    background-color: #ecf0f1;
    color: #000;
    text-shadow: none;
    -webkit-transition: background .2s;
    transition: background .2s;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-default:hover {
    background-color: #bdc3c7;
    color: #000;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-purple {
    background-color: #9b59b6;
    color: #FFF;
    text-shadow: none;
    -webkit-transition: background .2s;
    transition: background .2s;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-purple:hover {
    background-color: #8e44ad;
    color: #FFF;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-dark {
    background-color: #34495e;
    color: #FFF;
    text-shadow: none;
    -webkit-transition: background .2s;
    transition: background .2s;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-dark:hover {
    background-color: #2c3e50;
    color: #FFF;
}

.jconfirm .jconfirm-clear {
    clear: both;
}

.jconfirm.jconfirm-rtl {
    direction: rtl;
}

.jconfirm.jconfirm-rtl div.jconfirm-closeIcon {
    left: 5px;
    right: auto;
}

.jconfirm.jconfirm-white .jconfirm-bg,
.jconfirm.jconfirm-light .jconfirm-bg {
    background-color: #444;
    opacity: .2;
}

.jconfirm.jconfirm-white .jconfirm-box,
.jconfirm.jconfirm-light .jconfirm-box {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

.jconfirm.jconfirm-white .jconfirm-box .jconfirm-buttons,
.jconfirm.jconfirm-light .jconfirm-box .jconfirm-buttons {
    float: right;
}

.jconfirm.jconfirm-white .jconfirm-box .jconfirm-buttons button,
.jconfirm.jconfirm-light .jconfirm-box .jconfirm-buttons button {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    text-shadow: none;
}

.jconfirm.jconfirm-white .jconfirm-box .jconfirm-buttons button.btn-default,
.jconfirm.jconfirm-light .jconfirm-box .jconfirm-buttons button.btn-default {
    box-shadow: none;
    color: #333;
}

.jconfirm.jconfirm-white .jconfirm-box .jconfirm-buttons button.btn-default:hover,
.jconfirm.jconfirm-light .jconfirm-box .jconfirm-buttons button.btn-default:hover {
    background: #ddd;
}

.jconfirm.jconfirm-black .jconfirm-bg,
.jconfirm.jconfirm-dark .jconfirm-bg {
    background-color: darkslategray;
    opacity: .4;
}

.jconfirm.jconfirm-black .jconfirm-box,
.jconfirm.jconfirm-dark .jconfirm-box {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    background: #444;
    border-radius: 5px;
    color: white;
}

.jconfirm.jconfirm-black .jconfirm-box .jconfirm-buttons,
.jconfirm.jconfirm-dark .jconfirm-box .jconfirm-buttons {
    float: right;
}

.jconfirm.jconfirm-black .jconfirm-box .jconfirm-buttons button,
.jconfirm.jconfirm-dark .jconfirm-box .jconfirm-buttons button {
    border: none;
    background-image: none;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    text-shadow: none;
    -webkit-transition: background .1s;
    transition: background .1s;
    color: white;
}

.jconfirm.jconfirm-black .jconfirm-box .jconfirm-buttons button.btn-default,
.jconfirm.jconfirm-dark .jconfirm-box .jconfirm-buttons button.btn-default {
    box-shadow: none;
    color: #fff;
    background: none;
}

.jconfirm.jconfirm-black .jconfirm-box .jconfirm-buttons button.btn-default:hover,
.jconfirm.jconfirm-dark .jconfirm-box .jconfirm-buttons button.btn-default:hover {
    background: #666;
}

.jconfirm .jconfirm-box.hilight.jconfirm-hilight-shake {
    -webkit-animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
    animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.jconfirm .jconfirm-box.hilight.jconfirm-hilight-glow {
    -webkit-animation: glow 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
    animation: glow 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

@-webkit-keyframes shake {
    10%,
    90% {
        -webkit-transform: translate3d(-2px, 0, 0);
        transform: translate3d(-2px, 0, 0);
    }
    20%,
    80% {
        -webkit-transform: translate3d(4px, 0, 0);
        transform: translate3d(4px, 0, 0);
    }
    30%,
    50%,
    70% {
        -webkit-transform: translate3d(-8px, 0, 0);
        transform: translate3d(-8px, 0, 0);
    }
    40%,
    60% {
        -webkit-transform: translate3d(8px, 0, 0);
        transform: translate3d(8px, 0, 0);
    }
}

@keyframes shake {
    10%,
    90% {
        -webkit-transform: translate3d(-2px, 0, 0);
        transform: translate3d(-2px, 0, 0);
    }
    20%,
    80% {
        -webkit-transform: translate3d(4px, 0, 0);
        transform: translate3d(4px, 0, 0);
    }
    30%,
    50%,
    70% {
        -webkit-transform: translate3d(-8px, 0, 0);
        transform: translate3d(-8px, 0, 0);
    }
    40%,
    60% {
        -webkit-transform: translate3d(8px, 0, 0);
        transform: translate3d(8px, 0, 0);
    }
}

@-webkit-keyframes glow {
    0%,
    100% {
        box-shadow: 0 0 3px red;
    }
    50% {
        box-shadow: 0 0 30px red;
    }
}

@keyframes glow {
    0%,
    100% {
        box-shadow: 0 0 3px red;
    }
    50% {
        box-shadow: 0 0 30px red;
    }
}

/*Transition rules*/
.jconfirm {
    -webkit-perspective: 400px;
    perspective: 400px;
}

.jconfirm .jconfirm-box {
    opacity: 1;
    -webkit-transition-property: all;
    transition-property: all;
}

.jconfirm .jconfirm-box.jconfirm-animation-top,
.jconfirm .jconfirm-box.jconfirm-animation-left,
.jconfirm .jconfirm-box.jconfirm-animation-right,
.jconfirm .jconfirm-box.jconfirm-animation-bottom,
.jconfirm .jconfirm-box.jconfirm-animation-opacity,
.jconfirm .jconfirm-box.jconfirm-animation-zoom,
.jconfirm .jconfirm-box.jconfirm-animation-scale,
.jconfirm .jconfirm-box.jconfirm-animation-none,
.jconfirm .jconfirm-box.jconfirm-animation-rotate,
.jconfirm .jconfirm-box.jconfirm-animation-rotatex,
.jconfirm .jconfirm-box.jconfirm-animation-rotatey,
.jconfirm .jconfirm-box.jconfirm-animation-scaley,
.jconfirm .jconfirm-box.jconfirm-animation-scalex {
    opacity: 0;
}

.jconfirm .jconfirm-box.jconfirm-animation-rotate {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.jconfirm .jconfirm-box.jconfirm-animation-rotatex {
    -webkit-transform: rotateX(90deg);
    transform: rotateX(90deg);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
}

.jconfirm .jconfirm-box.jconfirm-animation-rotatexr {
    -webkit-transform: rotateX(-90deg);
    transform: rotateX(-90deg);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
}

.jconfirm .jconfirm-box.jconfirm-animation-rotatey {
    -webkit-transform: rotatey(90deg);
    -ms-transform: rotatey(90deg);
    transform: rotatey(90deg);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
}

.jconfirm .jconfirm-box.jconfirm-animation-rotateyr {
    -webkit-transform: rotatey(-90deg);
    -ms-transform: rotatey(-90deg);
    transform: rotatey(-90deg);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
}

.jconfirm .jconfirm-box.jconfirm-animation-scaley {
    -webkit-transform: scaley(1.5);
    -ms-transform: scaley(1.5);
    transform: scaley(1.5);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
}

.jconfirm .jconfirm-box.jconfirm-animation-scalex {
    -webkit-transform: scalex(1.5);
    -ms-transform: scalex(1.5);
    transform: scalex(1.5);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
}

.jconfirm .jconfirm-box.jconfirm-animation-top {
    -webkit-transform: translate(0px, -100px);
    -ms-transform: translate(0px, -100px);
    transform: translate(0px, -100px);
}

.jconfirm .jconfirm-box.jconfirm-animation-left {
    -webkit-transform: translate(-100px, 0px);
    -ms-transform: translate(-100px, 0px);
    transform: translate(-100px, 0px);
}

.jconfirm .jconfirm-box.jconfirm-animation-right {
    -webkit-transform: translate(100px, 0px);
    -ms-transform: translate(100px, 0px);
    transform: translate(100px, 0px);
}

.jconfirm .jconfirm-box.jconfirm-animation-bottom {
    -webkit-transform: translate(0px, 100px);
    -ms-transform: translate(0px, 100px);
    transform: translate(0px, 100px);
}

.jconfirm .jconfirm-box.jconfirm-animation-zoom {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

.jconfirm .jconfirm-box.jconfirm-animation-scale {
    -webkit-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5);
}

.jconfirm .jconfirm-box.jconfirm-animation-none {
    visibility: hidden;
}

.jconfirm.jconfirm-supervan .jconfirm-bg {
    background-color: rgba(54, 70, 93, 0.95);
}

.jconfirm.jconfirm-supervan .jconfirm-box {
    background-color: transparent;
}

.jconfirm.jconfirm-supervan .jconfirm-box div.jconfirm-closeIcon {
    color: white;
}

.jconfirm.jconfirm-supervan .jconfirm-box div.jconfirm-title-c {
    text-align: center;
    color: white;
    font-size: 28px;
    font-weight: normal;
}

.jconfirm.jconfirm-supervan .jconfirm-box div.jconfirm-title-c > * {
    padding-bottom: 25px;
}

.jconfirm.jconfirm-supervan .jconfirm-box div.jconfirm-content-pane {
    margin-bottom: 25px;
}

.jconfirm.jconfirm-supervan .jconfirm-box div.jconfirm-content {
    text-align: center;
    color: white;
}

.jconfirm.jconfirm-supervan .jconfirm-box .jconfirm-buttons {
    text-align: center;
}

.jconfirm.jconfirm-supervan .jconfirm-box .jconfirm-buttons button {
    font-size: 16px;
    border-radius: 2px;
    background: #303f53;
    text-shadow: none;
    border: none;
    color: white;
    padding: 10px;
    min-width: 100px;
}

.jconfirm.jconfirm-material .jconfirm-bg {
    background-color: rgba(0, 0, 0, 0.67);
}

.jconfirm.jconfirm-material .jconfirm-box {
    background-color: white;
    box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2), 0 13px 19px 2px rgba(0, 0, 0, 0.14), 0 5px 24px 4px rgba(0, 0, 0, 0.12);
    padding: 30px 25px 10px 25px;
}

.jconfirm.jconfirm-material .jconfirm-box div.jconfirm-closeIcon {
    color: rgba(0, 0, 0, 0.87);
}

.jconfirm.jconfirm-material .jconfirm-box div.jconfirm-title-c {
    color: rgba(0, 0, 0, 0.87);
    font-size: 22px;
    font-weight: bold;
}

.jconfirm.jconfirm-material .jconfirm-box div.jconfirm-content {
    text-align: left;
    color: rgba(0, 0, 0, 0.87);
}

.jconfirm.jconfirm-material .jconfirm-box .jconfirm-buttons {
    text-align: right;
}

.jconfirm.jconfirm-material .jconfirm-box .jconfirm-buttons button {
    text-transform: uppercase;
    font-weight: 500;
}

.jconfirm.jconfirm-bootstrap .jconfirm-bg {
    background-color: rgba(0, 0, 0, 0.21);
}

.jconfirm.jconfirm-bootstrap .jconfirm-box {
    background-color: white;
    box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.2);
    border: solid 1px rgba(0, 0, 0, 0.4);
    padding: 15px 0 0;
}

.jconfirm.jconfirm-bootstrap .jconfirm-box div.jconfirm-closeIcon {
    color: rgba(0, 0, 0, 0.87);
}

.jconfirm.jconfirm-bootstrap .jconfirm-box div.jconfirm-title-c {
    color: rgba(0, 0, 0, 0.87);
    font-size: 22px;
    font-weight: bold;
    padding-left: 15px;
    padding-right: 15px;
}

.jconfirm.jconfirm-bootstrap .jconfirm-box div.jconfirm-content {
    text-align: left;
    color: rgba(0, 0, 0, 0.87);
    padding: 0 15px;
}

.jconfirm.jconfirm-bootstrap .jconfirm-box .jconfirm-buttons {
    text-align: right;
    padding: 0px 0 0px;
    margin: -5px 0 0px;
    border-top: solid 1px #ddd;
    overflow: hidden;
    border-radius: 0 0 4px 4px;
}

.jconfirm.jconfirm-bootstrap .jconfirm-box .jconfirm-buttons button {
    font-weight: 500;
    border-radius: 0px;
    margin: 0;
    border-left: solid 1px #ddd;
}

/* ==========================================================================
    TYPOGRAPHY
   ========================================================================== */
.link-red {
  color: #ea1c0a;
}
.link-red:hover {
  color: #d51607;
}
.link-bordeaux {
  color: #b00402;
}
.link-bordeaux:hover {
  color: #a00311;
}
.text-center {
  text-align: center;
}
.text-center p,
.text-center a {
  text-align: center;
}
.text-red {
  color: #ea1c0a;
}
.text-yellow {
  color: #E3E000;
}
.text-grey {
  color: #9B9B9B;
}
.text-grey-light {
  color: #c9c9c9;
}
.text-bordeaux {
  color: #B00402;
}

/* In questo file verranno inseriti tutti i css comuni per i componenti */

/* ==========================================================================
    UTILITY
   ========================================================================== */
.font-EONHead{
    font-family: "EONHead", sans-serif !important;
}

@font-face {
    font-family: "EONHead";
    src: url("../clientlibs-old-foundation/clientlib-base-global/resources/fonts/EONHead.eot");
    src: url("../clientlibs-old-foundation/clientlib-base-global/resources/fonts/EONHead.eot?#iefix") format("embedded-opentype"), url("../clientlibs-old-foundation/clientlib-base-global/resources/fonts/EONHead.woff") format("woff"), url("../clientlibs-old-foundation/clientlib-base-global/resources/fonts/EONHead.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

body.iOsFixCaret {
    width: 100%;
    position: fixed;
    overflow: hidden !important;
}

body .height100 {
    height: 100%;
}

.min-width100 {
    min-width: 100%;
}

.modal-content {
    width: 100%;
}

.modal-dialog-centered {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - (.5rem * 2));
}

.height0 {
    height: 0;
}

.width-auto {
    width: auto;
}

.width0 {
    width: 0;
}

.max-width-initial {
    max-width: initial;
}

.max-width-130P {
    max-width: 130%;
}

.max-width40 {
    max-width: 40px;
}

.max-width200 {
    max-width: 200px;
}

.min-height80 {
    min-height: 80px;
}

.min-height200 {
    min-height: 200px;
}

.min-height400 {
    min-height: 400px;
}

.height50 {
    height: 50%;
}

.width-fit-content{
    width: fit-content;
}

.cover{
    object-fit: cover;
}

.width100 {
    width: 100%;
}

.width90{
    width: 90%;
}

@media only screen and (min-width: 1024px) {
    .width150-desk {
        width: 150%;
    }
}

.width50 {
    width: 50%;
}

.width40{
    width: 40%;
}

.z1 {
    z-index: 1;
}

.z2 {
    z-index: 2;
}

.z23{
    z-index: 23;
}

.z3 {
    z-index: 3;
}

.z4 {
    z-index: 4;
}

.z22 {
    z-index: 22;
}

.z100{
    z-index: 100;
}

/* Float Class */
.float-right {
    float: right;
}

.float-left {
    float: left;
}

.float-none {
    float: none;
}

.clear {
    clear: both;
}

.left0 {
    left: 0;
}

.right0 {
    right: 0;
}

.right5 {
    right: 5px;
}

.left0 {
    left: 0;
}

.bottom0 {
    bottom: 0;
}

.top0 {
    top: 0;
}

.top5 {
    top: 5px;
}

.top10 {
    top: 10px;
}

.top25 {
    top: 25px;
}

.top30 {
    top: 30px;
}

.bottom30 {
    bottom: 30px
}

.top42 {
    top: 42px;
}

.top50 {
    top: 50px;
}

.top80 {
    top: 80px;
}

.top100 {
    top: 100px;
}

.top180 {
    top: 180px;
}

.top250 {
    top: 250px;
}

.richtext-remove-last-mb p:last-of-type {
    margin-bottom: 0;
}

/* ==========================================================================
    INPUT CLASS
   ========================================================================== */

input.read-only-input {
    background-color: #d2d2d2;
}

input.text-uppercase {
    text-transform: uppercase;
}

input.text-uppercase::placeholder {
    text-transform: capitalize;
}

/* ==========================================================================
    ICON SVG
   ========================================================================== */

.tick-red {
    width: 20px;
    height: 17px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='17' viewBox='0 0 20 17'%3E %3Cpath fill='%23EA1C0A' fill-rule='nonzero' d='M18.85.77a1.5 1.5 0 0 0-2.09.38L8.63 12.89 2.87 8.77a1.5 1.5 0 1 0-1.74 2.44l7 5a1.5 1.5 0 0 0 2.1-.37l9-13a1.5 1.5 0 0 0-.38-2.07z'/%3E %3C/svg%3E ") no-repeat;
}

.tick-turquoise {
    width: 20px;
    height: 17px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='17' viewBox='0 0 20 17'%3E %3Cpath fill='%231EA2B1' fill-rule='nonzero' d='M18.85.77a1.5 1.5 0 0 0-2.09.38L8.63 12.89 2.87 8.77a1.5 1.5 0 1 0-1.74 2.44l7 5a1.5 1.5 0 0 0 2.1-.37l9-13a1.5 1.5 0 0 0-.38-2.07z'/%3E %3C/svg%3E ") no-repeat;
}

.eon_icons_rte {
    font-family: 'eon-icons', Arial, sans-serif;
    display: inline-block;
    vertical-align: bottom;
}

p .eon_icons_rte {
    font-size: 40px;
}

p .eon_icons_rte_banner {
    font-family: 'eon-icons', Arial, sans-serif;
    display: inline-block;
    vertical-align: bottom;
    font-size: 65px;
    line-height: 32px;
    margin-right: 10px;
}

.angle-brackets {
    background-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E %3Csvg width='22px' height='22px' viewBox='0 0 22 22' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E %3C!-- Generator: Sketch 51.3 (57544) - http://www.bohemiancoding.com/sketch --%3E %3Ctitle%3Eicona_Freccia%3C/title%3E %3Cdesc%3ECreated with Sketch.%3C/desc%3E %3Cdefs%3E%3C/defs%3E %3Cg id='icona_Freccia' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' stroke-linecap='round' stroke-linejoin='round'%3E %3Cpath d='M7,4 C9.76038165,5.99428571 12.390863,8.44914286 14.7845905,11.3428571 C15.0716283,11.688 15.0716283,12.2674286 14.7856381,12.6125714 C13.6161098,14.0290569 12.3997702,15.3409732 11.1393892,16.5454299 C9.80767157,17.8180579 8.42678605,18.9707178 7,20' id='icn_right_small-copy' stroke='%23EA1B0A' stroke-width='2' transform='translate(11.000000, 12.000000) rotate(-270.000000) translate(-11.000000, -12.000000) '%3E%3C/path%3E %3C/g%3E %3C/svg%3E");
    background-size: contain;
    width: 10px;
}

.angle-brackets.eon-brackets-turquoise {
    background-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E %3Csvg width='22px' height='22px' viewBox='0 0 22 22' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E %3C!-- Generator: Sketch 51.3 (57544) - http://www.bohemiancoding.com/sketch --%3E %3Ctitle%3Eicona_Freccia%3C/title%3E %3Cdesc%3ECreated with Sketch.%3C/desc%3E %3Cdefs%3E%3C/defs%3E %3Cg id='icona_Freccia' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' stroke-linecap='round' stroke-linejoin='round'%3E %3Cpath d='M7,4 C9.76038165,5.99428571 12.390863,8.44914286 14.7845905,11.3428571 C15.0716283,11.688 15.0716283,12.2674286 14.7856381,12.6125714 C13.6161098,14.0290569 12.3997702,15.3409732 11.1393892,16.5454299 C9.80767157,17.8180579 8.42678605,18.9707178 7,20' id='icn_right_small-copy' stroke='%231EA2B1' stroke-width='2' transform='translate(11.000000, 12.000000) rotate(-270.000000) translate(-11.000000, -12.000000) '%3E%3C/path%3E %3C/g%3E %3C/svg%3E");
    background-size: contain;
    width: 10px;
}

.angle-brackets.eon-brackets-darkturquoise {
    background-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E %3Csvg width='22px' height='22px' viewBox='0 0 22 22' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E %3C!-- Generator: Sketch 51.3 (57544) - http://www.bohemiancoding.com/sketch --%3E %3Ctitle%3Eicona_Freccia%3C/title%3E %3Cdesc%3ECreated with Sketch.%3C/desc%3E %3Cdefs%3E%3C/defs%3E %3Cg id='icona_Freccia' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' stroke-linecap='round' stroke-linejoin='round'%3E %3Cpath d='M7,4 C9.76038165,5.99428571 12.390863,8.44914286 14.7845905,11.3428571 C15.0716283,11.688 15.0716283,12.2674286 14.7856381,12.6125714 C13.6161098,14.0290569 12.3997702,15.3409732 11.1393892,16.5454299 C9.80767157,17.8180579 8.42678605,18.9707178 7,20' id='icn_right_small-copy' stroke='%2300738B' stroke-width='2' transform='translate(11.000000, 12.000000) rotate(-270.000000) translate(-11.000000, -12.000000) '%3E%3C/path%3E %3C/g%3E %3C/svg%3E");
    background-size: contain;
    width: 10px;
}

.angle-brackets.eon-brackets-red {
    background-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E %3Csvg width='22px' height='22px' viewBox='0 0 22 22' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E %3C!-- Generator: Sketch 51.3 (57544) - http://www.bohemiancoding.com/sketch --%3E %3Ctitle%3Eicona_Freccia%3C/title%3E %3Cdesc%3ECreated with Sketch.%3C/desc%3E %3Cdefs%3E%3C/defs%3E %3Cg id='icona_Freccia' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' stroke-linecap='round' stroke-linejoin='round'%3E %3Cpath d='M7,4 C9.76038165,5.99428571 12.390863,8.44914286 14.7845905,11.3428571 C15.0716283,11.688 15.0716283,12.2674286 14.7856381,12.6125714 C13.6161098,14.0290569 12.3997702,15.3409732 11.1393892,16.5454299 C9.80767157,17.8180579 8.42678605,18.9707178 7,20' id='icn_right_small-copy' stroke='%23EA1B0A' stroke-width='2' transform='translate(11.000000, 12.000000) rotate(-270.000000) translate(-11.000000, -12.000000) '%3E%3C/path%3E %3C/g%3E %3C/svg%3E");
    background-size: contain;
    width: 10px;
}

.angle-brackets.eon-brackets-darkred {
    background-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E %3Csvg width='22px' height='22px' viewBox='0 0 22 22' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E %3C!-- Generator: Sketch 51.3 (57544) - http://www.bohemiancoding.com/sketch --%3E %3Ctitle%3Eicona_Freccia%3C/title%3E %3Cdesc%3ECreated with Sketch.%3C/desc%3E %3Cdefs%3E%3C/defs%3E %3Cg id='icona_Freccia' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' stroke-linecap='round' stroke-linejoin='round'%3E %3Cpath d='M7,4 C9.76038165,5.99428571 12.390863,8.44914286 14.7845905,11.3428571 C15.0716283,11.688 15.0716283,12.2674286 14.7856381,12.6125714 C13.6161098,14.0290569 12.3997702,15.3409732 11.1393892,16.5454299 C9.80767157,17.8180579 8.42678605,18.9707178 7,20' id='icn_right_small-copy' stroke='%23B00402' stroke-width='2' transform='translate(11.000000, 12.000000) rotate(-270.000000) translate(-11.000000, -12.000000) '%3E%3C/path%3E %3C/g%3E %3C/svg%3E");
    background-size: contain;
    width: 10px;
}

.angle-brackets.eon-brackets-black {
    background-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E %3Csvg width='22px' height='22px' viewBox='0 0 22 22' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E %3C!-- Generator: Sketch 51.3 (57544) - http://www.bohemiancoding.com/sketch --%3E %3Ctitle%3Eicona_Freccia%3C/title%3E %3Cdesc%3ECreated with Sketch.%3C/desc%3E %3Cdefs%3E%3C/defs%3E %3Cg id='icona_Freccia' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' stroke-linecap='round' stroke-linejoin='round'%3E %3Cpath d='M7,4 C9.76038165,5.99428571 12.390863,8.44914286 14.7845905,11.3428571 C15.0716283,11.688 15.0716283,12.2674286 14.7856381,12.6125714 C13.6161098,14.0290569 12.3997702,15.3409732 11.1393892,16.5454299 C9.80767157,17.8180579 8.42678605,18.9707178 7,20' id='icn_right_small-copy' stroke='%23000000' stroke-width='2' transform='translate(11.000000, 12.000000) rotate(-270.000000) translate(-11.000000, -12.000000) '%3E%3C/path%3E %3C/g%3E %3C/svg%3E");
    background-size: contain;
    width: 10px;
}

.turquoise-angle-brackets {
    background-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E %3Csvg width='22px' height='22px' viewBox='0 0 22 22' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E %3C!-- Generator: Sketch 51.3 (57544) - http://www.bohemiancoding.com/sketch --%3E %3Ctitle%3Eicona_Freccia%3C/title%3E %3Cdesc%3ECreated with Sketch.%3C/desc%3E %3Cdefs%3E%3C/defs%3E %3Cg id='icona_Freccia' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' stroke-linecap='round' stroke-linejoin='round'%3E %3Cpath d='M7,4 C9.76038165,5.99428571 12.390863,8.44914286 14.7845905,11.3428571 C15.0716283,11.688 15.0716283,12.2674286 14.7856381,12.6125714 C13.6161098,14.0290569 12.3997702,15.3409732 11.1393892,16.5454299 C9.80767157,17.8180579 8.42678605,18.9707178 7,20' id='icn_right_small-copy' stroke='%231EA2B1' stroke-width='2' transform='translate(11.000000, 12.000000) rotate(-270.000000) translate(-11.000000, -12.000000) '%3E%3C/path%3E %3C/g%3E %3C/svg%3E");
    background-size: contain;
    width: 10px;
}

.white-angle-brackets {
    background-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E %3Csvg width='22px' height='22px' viewBox='0 0 22 22' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E %3C!-- Generator: Sketch 51.3 (57544) - http://www.bohemiancoding.com/sketch --%3E %3Ctitle%3Eicona_Freccia%3C/title%3E %3Cdesc%3ECreated with Sketch.%3C/desc%3E %3Cdefs%3E%3C/defs%3E %3Cg id='icona_Freccia' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' stroke-linecap='round' stroke-linejoin='round'%3E %3Cpath d='M7,4 C9.76038165,5.99428571 12.390863,8.44914286 14.7845905,11.3428571 C15.0716283,11.688 15.0716283,12.2674286 14.7856381,12.6125714 C13.6161098,14.0290569 12.3997702,15.3409732 11.1393892,16.5454299 C9.80767157,17.8180579 8.42678605,18.9707178 7,20' id='icn_right_small-copy' stroke='%23FFFFFF' stroke-width='2' transform='translate(11.000000, 12.000000) rotate(-270.000000) translate(-11.000000, -12.000000) '%3E%3C/path%3E %3C/g%3E %3C/svg%3E");
    background-size: contain;
    width: 10px;
}

.angle-brackets.white-angle-brackets {
    background-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E %3Csvg width='22px' height='22px' viewBox='0 0 22 22' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E %3C!-- Generator: Sketch 51.3 (57544) - http://www.bohemiancoding.com/sketch --%3E %3Ctitle%3Eicona_Freccia%3C/title%3E %3Cdesc%3ECreated with Sketch.%3C/desc%3E %3Cdefs%3E%3C/defs%3E %3Cg id='icona_Freccia' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' stroke-linecap='round' stroke-linejoin='round'%3E %3Cpath d='M7,4 C9.76038165,5.99428571 12.390863,8.44914286 14.7845905,11.3428571 C15.0716283,11.688 15.0716283,12.2674286 14.7856381,12.6125714 C13.6161098,14.0290569 12.3997702,15.3409732 11.1393892,16.5454299 C9.80767157,17.8180579 8.42678605,18.9707178 7,20' id='icn_right_small-copy' stroke='%23FFFFFF' stroke-width='2' transform='translate(11.000000, 12.000000) rotate(-270.000000) translate(-11.000000, -12.000000) '%3E%3C/path%3E %3C/g%3E %3C/svg%3E");
    background-size: contain;
    width: 10px;
}

.angle-brackets.bordeaux-angle-brackets {
    background-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E %3Csvg width='22px' height='22px' viewBox='0 0 22 22' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E %3C!-- Generator: Sketch 51.3 (57544) - http://www.bohemiancoding.com/sketch --%3E %3Ctitle%3Eicona_Freccia%3C/title%3E %3Cdesc%3ECreated with Sketch.%3C/desc%3E %3Cdefs%3E%3C/defs%3E %3Cg id='icona_Freccia' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' stroke-linecap='round' stroke-linejoin='round'%3E %3Cpath d='M7,4 C9.76038165,5.99428571 12.390863,8.44914286 14.7845905,11.3428571 C15.0716283,11.688 15.0716283,12.2674286 14.7856381,12.6125714 C13.6161098,14.0290569 12.3997702,15.3409732 11.1393892,16.5454299 C9.80767157,17.8180579 8.42678605,18.9707178 7,20' id='icn_right_small-copy' stroke='%23B00402' stroke-width='2' transform='translate(11.000000, 12.000000) rotate(-270.000000) translate(-11.000000, -12.000000) '%3E%3C/path%3E %3C/g%3E %3C/svg%3E");
    background-size: contain;
    width: 10px;
}

.prev-bracket {
    width: 15px;
    height: 25px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3c?xml version='1.0' encoding='utf-8'?%3e%3csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 15.9 27' style='enable-background:new 0 0 15.9 27;' xml:space='preserve'%3e%3cstyle type='text/css'%3e .st0%7bfill:%23E53325;%7d %3c/style%3e%3cg%3e%3cg%3e%3cg%3e%3cpath class='st0' d='M15.4,25L15.4,25c-4.6-3-9-6.8-13-11.2l0,0c0,0-0.1-0.1-0.1-0.2s0-0.2,0.1-0.2l0,0c4-4.5,8.3-8.2,13-11.3 c0.5-0.3,0.7-1,0.3-1.6c-0.3-0.5-1-0.7-1.6-0.3C9.3,3.4,4.8,7.3,0.7,11.8C0.2,12.3,0,12.9,0,13.5s0.2,1.2,0.7,1.7 c4.1,4.6,8.6,8.4,13.4,11.6c0.5,0.3,1.2,0.2,1.6-0.3C16.1,26.1,15.9,25.4,15.4,25'/%3e%3c/g%3e%3c/g%3e%3cg%3e%3cg%3e%3cpath class='st0' d='M0.8,15.3L0.8,15.3L0.8,15.3z'/%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/svg%3e ");
}

.next-bracket {
    width: 15px;
    height: 25px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3c?xml version='1.0' encoding='utf-8'?%3e%3csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 16 27.2' style='enable-background:new 0 0 16 27.2;' xml:space='preserve'%3e%3cstyle type='text/css'%3e .st0%7bfill:%23E53325;%7d %3c/style%3e%3cg%3e%3cg%3e%3cg%3e%3cpath class='st0' d='M15.3,11.8C11.2,7.2,6.7,3.4,1.9,0.2C1.4-0.1,0.7,0,0.3,0.5C0,1,0.1,1.7,0.6,2.1c4.6,3,9,6.8,13,11.2l0,0 c0,0,0.1,0.1,0.1,0.2s0,0.2-0.1,0.2l0,0c-4,4.5-8.3,8.2-13,11.3c-0.5,0.3-0.7,1-0.3,1.6s1,0.7,1.6,0.3c4.8-3.2,9.3-7.1,13.4-11.6 c0.5-0.5,0.7-1.1,0.7-1.7C16,12.9,15.8,12.3,15.3,11.8'/%3e%3c/g%3e%3c/g%3e%3cg%3e%3cg%3e%3cpath class='st0' d='M15.3,11.8L15.3,11.8L15.3,11.8z'/%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/svg%3e ");
}

.x-close {
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3c?xml version='1.0' encoding='utf-8'?%3e%3csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 20.2 20.2' style='enable-background:new 0 0 20.2 20.2;' xml:space='preserve'%3e%3cstyle type='text/css'%3e .st0%7bfill:%23E53325;%7d %3c/style%3e%3cg%3e%3cg%3e%3cg%3e%3cpath class='st0' d='M11.7,10.1l8.2-8.2c0.4-0.4,0.4-1.2,0-1.6s-1.2-0.4-1.6,0l-8.2,8.2L1.9,0.3c-0.4-0.4-1.2-0.4-1.6,0 s-0.4,1.2,0,1.6l8.2,8.2l-8.2,8.2c-0.4,0.4-0.4,1.2,0,1.6s1.2,0.4,1.6,0l8.2-8.2l8.2,8.2c0.4,0.4,1.2,0.4,1.6,0s0.4-1.2,0-1.6 L11.7,10.1z'/%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/svg%3e ");
}

.share-icon {
    width: 18px;
    height: 22px;
    background-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='utf-8'?%3E %3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='18px' height='22px' viewBox='0 0 18 22' enable-background='new 0 0 18 22' xml:space='preserve'%3E %3Cpath fill='%23EA1C0A' d='M14.1,20.4c-1.3,0-2.3-1.1-2.3-2.4s1-2.4,2.3-2.4s2.3,1.1,2.3,2.4S15.4,20.4,14.1,20.4z M3.9,13.4 c-1.3,0-2.3-1.1-2.3-2.4s1-2.4,2.3-2.4S6.3,9.7,6.3,11S5.2,13.4,3.9,13.4z M14.1,1.6c1.3,0,2.3,1.1,2.3,2.4s-1,2.4-2.3,2.4 S11.8,5.3,11.8,4C11.7,2.6,12.8,1.6,14.1,1.6z M14.1,14.1c-1,0-1.9,0.4-2.6,1L11.4,15l-3.9-2.4c0.5-1.1,0.5-2.3,0-3.4L11.4,7 l0.1-0.1c1.5,1.3,3.8,1.3,5.2,0c1.5-1.4,1.7-3.6,0.5-5.2s-3.4-2-5.2-1c-1.7,1-2.4,3.2-1.5,5.1L6.7,8L6.6,8.1C5,6.7,2.6,6.8,1.1,8.3 s-1.5,3.9,0,5.5S5,15.4,6.5,14l0.1,0.1l3.9,2.4c-0.7,1.6-0.4,3.5,0.9,4.6c1.3,1.2,3.2,1.3,4.7,0.4s2.1-2.7,1.7-4.4 C17.4,15.3,15.8,14.1,14.1,14.1z'/%3E %3C/svg%3E ");
}

.download-icon {
    width: 18px;
    height: 21px;
    background-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='utf-8'?%3E %3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='18px' height='21px' viewBox='0 0 18 21' enable-background='new 0 0 18 21' xml:space='preserve'%3E %3Cpath fill='%23EA1C0A' d='M17.2,14.2c-0.4,0-0.8,0.3-0.8,0.8v3c0,0.8-0.7,1.5-1.5,1.5H3c-0.8,0-1.5-0.7-1.5-1.5v-3 c0-0.4-0.3-0.8-0.8-0.8C0.3,14.2,0,14.6,0,15v3c0,1.7,1.3,3,3,3h12c1.7,0,3-1.3,3-3v-3C18,14.6,17.7,14.2,17.2,14.2z'/%3E %3Cpath fill='%23EA1C0A' d='M3.6,7.1c1.4,1.8,2.9,3.5,4.6,5V0.8C8.2,0.3,8.6,0,9,0s0.8,0.3,0.8,0.8v11.3c1.7-1.5,3.3-3.2,4.6-5 c0.2-0.2,0.4-0.4,0.7-0.3c0.3,0,0.5,0.2,0.6,0.4c0.1,0.3,0.1,0.5-0.1,0.8c-1.6,2.2-3.5,4.2-5.6,6c-0.2,0.2-0.5,0.3-0.8,0.4 c-0.1,0-0.2,0-0.3,0c-0.3,0-0.5-0.1-0.8-0.3c-2.1-1.7-4-3.7-5.7-6C2.3,7.8,2.2,7.5,2.3,7.2C2.4,7,2.7,6.8,2.9,6.8 C3.2,6.7,3.5,6.9,3.6,7.1L3.6,7.1z'/%3E %3C/svg%3E ");
}

.minus-button {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='52' height='52' viewBox='0 0 52 52'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpath fill='%23EA1C0A' d='M8.415 1.673a8.472 8.472 0 0 0-6.743 6.742c-2.23 11.723-2.23 23.447 0 35.17a8.472 8.472 0 0 0 6.743 6.742A93.925 93.925 0 0 0 26 52c5.862 0 11.723-.558 17.585-1.673a8.472 8.472 0 0 0 6.743-6.742c2.23-11.723 2.23-23.447 0-35.17a8.472 8.472 0 0 0-6.743-6.742A93.903 93.903 0 0 0 26 0C20.138 0 14.277.557 8.415 1.673z'/%3E %3Cpath stroke='%23FFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M16 26.5h20'/%3E %3C/g%3E %3C/svg%3E ");
    width: 52px;
    height: 52px;
}

.minus-button.disabled {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='52' height='52' viewBox='0 0 52 52'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpath fill='%23BFBFBF' d='M8.415 1.673a8.472 8.472 0 0 0-6.743 6.742c-2.23 11.723-2.23 23.447 0 35.17a8.472 8.472 0 0 0 6.743 6.742A93.925 93.925 0 0 0 26 52c5.862 0 11.723-.558 17.585-1.673a8.472 8.472 0 0 0 6.743-6.742c2.23-11.723 2.23-23.447 0-35.17a8.472 8.472 0 0 0-6.743-6.742A93.903 93.903 0 0 0 26 0C20.138 0 14.277.557 8.415 1.673z'/%3E %3Cpath stroke='%23FFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M16 26.5h20'/%3E %3C/g%3E %3C/svg%3E ");
    width: 52px;
    height: 52px;
}

.minus-button-32 {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 52 52'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpath fill='%23EA1C0A' d='M8.415 1.673a8.472 8.472 0 0 0-6.743 6.742c-2.23 11.723-2.23 23.447 0 35.17a8.472 8.472 0 0 0 6.743 6.742A93.925 93.925 0 0 0 26 52c5.862 0 11.723-.558 17.585-1.673a8.472 8.472 0 0 0 6.743-6.742c2.23-11.723 2.23-23.447 0-35.17a8.472 8.472 0 0 0-6.743-6.742A93.903 93.903 0 0 0 26 0C20.138 0 14.277.557 8.415 1.673z'/%3E %3Cpath stroke='%23FFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M16 26.5h20'/%3E %3C/g%3E %3C/svg%3E ");
    width: 32px;
    height: 32px;
}

.minus-button-32.disabled {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 52 52'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpath fill='%23BFBFBF' d='M8.415 1.673a8.472 8.472 0 0 0-6.743 6.742c-2.23 11.723-2.23 23.447 0 35.17a8.472 8.472 0 0 0 6.743 6.742A93.925 93.925 0 0 0 26 52c5.862 0 11.723-.558 17.585-1.673a8.472 8.472 0 0 0 6.743-6.742c2.23-11.723 2.23-23.447 0-35.17a8.472 8.472 0 0 0-6.743-6.742A93.903 93.903 0 0 0 26 0C20.138 0 14.277.557 8.415 1.673z'/%3E %3Cpath stroke='%23FFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M16 26.5h20'/%3E %3C/g%3E %3C/svg%3E ");
    width: 32px;
    height: 32px;
}

.plus-button {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='52' height='52' viewBox='0 0 52 52'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpath fill='%23EA1C0A' d='M8.415 1.673a8.472 8.472 0 0 0-6.743 6.742c-2.23 11.723-2.23 23.447 0 35.17a8.472 8.472 0 0 0 6.743 6.742A93.925 93.925 0 0 0 26 52c5.862 0 11.723-.558 17.585-1.673a8.472 8.472 0 0 0 6.743-6.742c2.23-11.723 2.23-23.447 0-35.17a8.472 8.472 0 0 0-6.743-6.742A93.903 93.903 0 0 0 26 0C20.138 0 14.277.557 8.415 1.673z'/%3E %3Cg stroke='%23FFF' stroke-linecap='round' stroke-width='2'%3E %3Cpath d='M16 26h20M26 36V16'/%3E %3C/g%3E %3C/g%3E %3C/svg%3E ");
    width: 52px;
    height: 52px;
}

.plus-button.disabled {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='52' height='52' viewBox='0 0 52 52'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpath fill='%23BFBFBF' d='M8.415 1.673a8.472 8.472 0 0 0-6.743 6.742c-2.23 11.723-2.23 23.447 0 35.17a8.472 8.472 0 0 0 6.743 6.742A93.925 93.925 0 0 0 26 52c5.862 0 11.723-.558 17.585-1.673a8.472 8.472 0 0 0 6.743-6.742c2.23-11.723 2.23-23.447 0-35.17a8.472 8.472 0 0 0-6.743-6.742A93.903 93.903 0 0 0 26 0C20.138 0 14.277.557 8.415 1.673z'/%3E %3Cg stroke='%23FFF' stroke-linecap='round' stroke-width='2'%3E %3Cpath d='M16 26h20M26 36V16'/%3E %3C/g%3E %3C/g%3E %3C/svg%3E ");
    width: 52px;
    height: 52px;
}

.plus-button-32 {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 52 52'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpath fill='%23EA1C0A' d='M8.415 1.673a8.472 8.472 0 0 0-6.743 6.742c-2.23 11.723-2.23 23.447 0 35.17a8.472 8.472 0 0 0 6.743 6.742A93.925 93.925 0 0 0 26 52c5.862 0 11.723-.558 17.585-1.673a8.472 8.472 0 0 0 6.743-6.742c2.23-11.723 2.23-23.447 0-35.17a8.472 8.472 0 0 0-6.743-6.742A93.903 93.903 0 0 0 26 0C20.138 0 14.277.557 8.415 1.673z'/%3E %3Cg stroke='%23FFF' stroke-linecap='round' stroke-width='2'%3E %3Cpath d='M16 26h20M26 36V16'/%3E %3C/g%3E %3C/g%3E %3C/svg%3E ");
    width: 32px;
    height: 32px;
}

.plus-button-32.disabled {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 52 52'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpath fill='%23BFBFBF' d='M8.415 1.673a8.472 8.472 0 0 0-6.743 6.742c-2.23 11.723-2.23 23.447 0 35.17a8.472 8.472 0 0 0 6.743 6.742A93.925 93.925 0 0 0 26 52c5.862 0 11.723-.558 17.585-1.673a8.472 8.472 0 0 0 6.743-6.742c2.23-11.723 2.23-23.447 0-35.17a8.472 8.472 0 0 0-6.743-6.742A93.903 93.903 0 0 0 26 0C20.138 0 14.277.557 8.415 1.673z'/%3E %3Cg stroke='%23FFF' stroke-linecap='round' stroke-width='2'%3E %3Cpath d='M16 26h20M26 36V16'/%3E %3C/g%3E %3C/g%3E %3C/svg%3E ");
    width: 32px;
    height: 32px;
}

.fix-arrow-link {
    margin-left: -10px;
}

/* ==========================================================================
    TOOLTIP
   ========================================================================== */

.more-info,
.more-info a {
    font-size: 1.4rem;
    color: #00a5b4;
    cursor: pointer;
}

.more-info-img-blu:before {
    content: '';
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E %3Cpath fill='%231EA2B1' fill-rule='nonzero' d='M9 15h2V9H9v6zm1-15C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zM9 7h2V5H9v2z'/%3E %3C/svg%3E") no-repeat;
    vertical-align: sub;
    display: inline-block;
    margin-right: 8px;
}

.more-info-img:before {
    content: '';
    width: 20px;
    height: 20px;
    vertical-align: middle;
    display: inline-block;
    margin-right: 8px;
    margin-top: -3px;
}

/* INFO ICON RED */
.color_set1 .more-info-img:before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E %3Cpath fill='%23ea1c0a' fill-rule='nonzero' d='M9 15h2V9H9v6zm1-15C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zM9 7h2V5H9v2z'/%3E %3C/svg%3E") no-repeat;
}

/* INFO ICON BORDEAUX */
.color_set6 .more-info-img:before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E %3Cpath fill='%23b00402' fill-rule='nonzero' d='M9 15h2V9H9v6zm1-15C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zM9 7h2V5H9v2z'/%3E %3C/svg%3E") no-repeat;
}

/* INFO ICON BLUE */
.color_set3 .more-info-img:before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E %3Cpath fill='%231EA2B1' fill-rule='nonzero' d='M9 15h2V9H9v6zm1-15C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zM9 7h2V5H9v2z'/%3E %3C/svg%3E") no-repeat;
}

/* INFO ICON WHITE */
.color_set4 .more-info-img:before,
.color_set4.more-info-img:before,
.color_set5 .more-info-img:before,
.color_set14 .more-info-img:before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E %3Cpath fill='%23fff' fill-rule='nonzero' d='M9 15h2V9H9v6zm1-15C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zM9 7h2V5H9v2z'/%3E %3C/svg%3E") no-repeat;
}

/* INFO ICON WHITE */
.color_set4 .more-info-img:before,
.color_set4.more-info-img:before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E %3Cpath fill='%23fff' fill-rule='nonzero' d='M9 15h2V9H9v6zm1-15C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zM9 7h2V5H9v2z'/%3E %3C/svg%3E") no-repeat;
}

/* INFO ICON BLACK */
.color_set7 .more-info-img:before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E %3Cpath fill='%23000' fill-rule='nonzero' d='M9 15h2V9H9v6zm1-15C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zM9 7h2V5H9v2z'/%3E %3C/svg%3E") no-repeat;
}

/* ==========================================================================
    LINK-AUTOMATOR COLOR COMBINATIONS
    :duplicate every class replacing the component name to use link-automator in your component.
    :add as few selectors as possible to achieve the desired result
   ========================================================================== */

.link-automator.section, .link-automator.section div:not(.click-to-call):not(.click-to-call div)  {
    /*width: 100%; */
}

/** Color Combination 1**/
div.link-automator .color_set1 a, .color_set1 a:visited,
div.link-automator .color_set1 button, .color_set1 button:visited {
    color: #ea1c0a;
}

div.link-automator .color_set1 a:hover, .color_set1 a:active,
div.link-automator .color_set1 button:hover, .color_set1 button:active {
    color: #d51607;
}

div.link-automator .color_set1 a.eon-button:before,
div.link-automator .color_set1 button.eon-button:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' width='26px' height='52px' viewBox='0 0 26 52' enable-background='new 0 0 26 52' xml:space='preserve'%3E%3Cg%3E%3Cpath fill='rgb(255,255,255)' d='M8.414,1.076C4.994,1.75,2.322,4.23,1.672,7.775c-2.23,12.15-2.23,24.301,0,36.452c0.65,3.545,3.322,6.02,6.742,6.693 C14.332,51.884,26,52,26,52V0C26,0.001,13.667,0.13,8.414,1.076z'/%3E%3C/g%3E%3C/svg%3E");
}

div.link-automator .color_set1 a.eon-button span,
div.link-automator .color_set1 button.eon-button span {
    background-color: #ffffff;
    color: #ea1c0a;
}

div.link-automator .color_set1 a.eon-button:after,
div.link-automator .color_set1 button.eon-button:after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' width='26px' height='52px' viewBox='0.239 0.829 26 52' enable-background='new 0.239 0.829 26 52' xml:space='preserve'%3E%3Cg%3E%3Cpath fill='rgb(255,255,255)' d='M17.824,51.754c3.42-0.674,6.092-3.154,6.742-6.699c2.23-12.15,2.23-24.301,0-36.451 c-0.65-3.545-3.322-6.02-6.742-6.694c-5.918-0.964-17.585-1.08-17.585-1.08v52C0.239,52.829,12.571,52.7,17.824,51.754z'/%3E%3C/g%3E%3C/svg%3E");
}

div.link-automator .color_set1 a.eon-button:hover:before,
div.link-automator .color_set1 button.eon-button:hover:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' width='26px' height='52px' viewBox='0 0 26 52' enable-background='new 0 0 26 52' xml:space='preserve'%3E%3Cg%3E%3Cpath fill='rgb(232,232,232)' d='M8.414,1.076C4.994,1.75,2.322,4.23,1.672,7.775c-2.23,12.15-2.23,24.301,0,36.452c0.65,3.545,3.322,6.02,6.742,6.693 C14.332,51.884,26,52,26,52V0C26,0.001,13.667,0.13,8.414,1.076z'/%3E%3C/g%3E%3C/svg%3E");
}

div.link-automator .color_set1 a.eon-button:hover span,
div.link-automator .color_set1 button.eon-button:hover span {
    background-color: #e8e8e8;
    color: #d51607;
}

div.link-automator .color_set1 a.eon-button:hover:after,
div.link-automator .color_set1 button.eon-button:hover:after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' width='26px' height='52px' viewBox='0.239 0.829 26 52' enable-background='new 0.239 0.829 26 52' xml:space='preserve'%3E%3Cg%3E%3Cpath fill='rgb(232,232,232)' d='M17.824,51.754c3.42-0.674,6.092-3.154,6.742-6.699c2.23-12.15,2.23-24.301,0-36.451 c-0.65-3.545-3.322-6.02-6.742-6.694c-5.918-0.964-17.585-1.08-17.585-1.08v52C0.239,52.829,12.571,52.7,17.824,51.754z'/%3E%3C/g%3E%3C/svg%3E");
}

div.link-automator .color_set1.nobgcolor {
    background-color: transparent;
}

/** Color Combination 3 **/
div.link-automator .color_set3 a, .color_set3 a:visited,
div.link-automator .color_set3 button, .color_set3 button:visited {
    color: #1ea2b1;
}

div.link-automator .color_set3 a:hover, .color_set3 a:active,
div.link-automator .color_set3 button:hover, .color_set3 button:active {
    color: #2b91a3;
}

div.link-automator .color_set3 a.eon-button:before,
div.link-automator .color_set3 button.eon-button:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' width='26px' height='52px' viewBox='0 0 26 52' enable-background='new 0 0 26 52' xml:space='preserve'%3E%3Cg%3E%3Cpath fill='rgb(255,255,255)' d='M8.414,1.076C4.994,1.75,2.322,4.23,1.672,7.775c-2.23,12.15-2.23,24.301,0,36.452c0.65,3.545,3.322,6.02,6.742,6.693 C14.332,51.884,26,52,26,52V0C26,0.001,13.667,0.13,8.414,1.076z'/%3E%3C/g%3E%3C/svg%3E");
}

div.link-automator .color_set3 a.eon-button span,
div.link-automator .color_set3 button.eon-button span {
    background-color: #ffffff;
    color: #1ea2b1;
}

div.link-automator .color_set3 a.eon-button:after,
div.link-automator .color_set3 button.eon-button:after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' width='26px' height='52px' viewBox='0.239 0.829 26 52' enable-background='new 0.239 0.829 26 52' xml:space='preserve'%3E%3Cg%3E%3Cpath fill='rgb(255,255,255)' d='M17.824,51.754c3.42-0.674,6.092-3.154,6.742-6.699c2.23-12.15,2.23-24.301,0-36.451 c-0.65-3.545-3.322-6.02-6.742-6.694c-5.918-0.964-17.585-1.08-17.585-1.08v52C0.239,52.829,12.571,52.7,17.824,51.754z'/%3E%3C/g%3E%3C/svg%3E");
}

div.link-automator .color_set3 a.eon-button:hover:before,
div.link-automator .color_set3 button.eon-button:hover:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' width='26px' height='52px' viewBox='0 0 26 52' enable-background='new 0 0 26 52' xml:space='preserve'%3E%3Cg%3E%3Cpath fill='rgb(232,232,232)' d='M8.414,1.076C4.994,1.75,2.322,4.23,1.672,7.775c-2.23,12.15-2.23,24.301,0,36.452c0.65,3.545,3.322,6.02,6.742,6.693 C14.332,51.884,26,52,26,52V0C26,0.001,13.667,0.13,8.414,1.076z'/%3E%3C/g%3E%3C/svg%3E");
}

div.link-automator .color_set3 a.eon-button:hover span,
div.link-automator .color_set3 button.eon-button:hover span {
    background-color: #e8e8e8;
    color: #2b91a3;
}

div.link-automator .color_set3 a.eon-button:hover:after,
div.link-automator .color_set3 button.eon-button:hover:after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' width='26px' height='52px' viewBox='0.239 0.829 26 52' enable-background='new 0.239 0.829 26 52' xml:space='preserve'%3E%3Cg%3E%3Cpath fill='rgb(232,232,232)' d='M17.824,51.754c3.42-0.674,6.092-3.154,6.742-6.699c2.23-12.15,2.23-24.301,0-36.451 c-0.65-3.545-3.322-6.02-6.742-6.694c-5.918-0.964-17.585-1.08-17.585-1.08v52C0.239,52.829,12.571,52.7,17.824,51.754z'/%3E%3C/g%3E%3C/svg%3E");
}

div.link-automator .color_set3.nobgcolor {
    background-color: transparent;
}

/** Color Combination 4 **/
div.link-automator .color_set4 a, .color_set4 a:visited,
div.link-automator .color_set4 button, .color_set4 button:visited {
    color: #fff;
}

div.link-automator .color_set4 a:hover, .color_set4 a:active,
div.link-automator .color_set4 button:hover, .color_set4 button:active {
    color: #e8e8e8;
}

div.link-automator .color_set4 a.eon-button:before,
div.link-automator .color_set4 button.eon-button:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' width='26px' height='52px' viewBox='0 0 26 52' enable-background='new 0 0 26 52' xml:space='preserve'%3E%3Cg%3E%3Cpath fill='rgb(234,28,10)' d='M8.414,1.076C4.994,1.75,2.322,4.23,1.672,7.775c-2.23,12.15-2.23,24.301,0,36.452c0.65,3.545,3.322,6.02,6.742,6.693 C14.332,51.884,26,52,26,52V0C26,0.001,13.667,0.13,8.414,1.076z'/%3E%3C/g%3E%3C/svg%3E");
}

div.link-automator .color_set4 a.eon-button span,
div.link-automator .color_set4 button.eon-button span {
    background-color: #ea1c0a;
    color: #ffffff;
}

div.link-automator .color_set4 a.eon-button:after,
div.link-automator .color_set4 button.eon-button:after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' width='26px' height='52px' viewBox='0.239 0.829 26 52' enable-background='new 0.239 0.829 26 52' xml:space='preserve'%3E%3Cg%3E%3Cpath fill='rgb(234,28,10)' d='M17.824,51.754c3.42-0.674,6.092-3.154,6.742-6.699c2.23-12.15,2.23-24.301,0-36.451 c-0.65-3.545-3.322-6.02-6.742-6.694c-5.918-0.964-17.585-1.08-17.585-1.08v52C0.239,52.829,12.571,52.7,17.824,51.754z'/%3E%3C/g%3E%3C/svg%3E");
}

div.link-automator .color_set4 a.eon-button:hover:before,
div.link-automator .color_set4 button.eon-button:hover:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' width='26px' height='52px' viewBox='0 0 26 52' enable-background='new 0 0 26 52' xml:space='preserve'%3E%3Cg%3E%3Cpath fill='rgb(213,22,7)' d='M8.414,1.076C4.994,1.75,2.322,4.23,1.672,7.775c-2.23,12.15-2.23,24.301,0,36.452c0.65,3.545,3.322,6.02,6.742,6.693 C14.332,51.884,26,52,26,52V0C26,0.001,13.667,0.13,8.414,1.076z'/%3E%3C/g%3E%3C/svg%3E");
}

div.link-automator .color_set4 a.eon-button:hover span,
div.link-automator .color_set4 button.eon-button:hover span {
    background-color: #d51607;
}

div.link-automator .color_set4 a.eon-button:hover:after,
div.link-automator .color_set4 button.eon-button:hover:after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' width='26px' height='52px' viewBox='0.239 0.829 26 52' enable-background='new 0.239 0.829 26 52' xml:space='preserve'%3E%3Cg%3E%3Cpath fill='rgb(213,22,7)' d='M17.824,51.754c3.42-0.674,6.092-3.154,6.742-6.699c2.23-12.15,2.23-24.301,0-36.451 c-0.65-3.545-3.322-6.02-6.742-6.694c-5.918-0.964-17.585-1.08-17.585-1.08v52C0.239,52.829,12.571,52.7,17.824,51.754z'/%3E%3C/g%3E%3C/svg%3E");
}

div.link-automator .color_set4.nobgcolor {
    background-color: transparent;
}

/** Color Combination 5 **/
div.link-automator .color_set5 a, .color_set5 a:visited,
div.link-automator .color_set5 button, .color_set5 button:visited {
    color: #fff;
}

div.link-automator .color_set5 a:hover, .color_set5 a:active,
div.link-automator .color_set5 button:hover, .color_set5 button:active {
    color: #e8e8e8;
}

div.link-automator .color_set5 a.eon-button:before,
div.link-automator .color_set5 button.eon-button:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' width='26px' height='52px' viewBox='0 0 26 52' enable-background='new 0 0 26 52' xml:space='preserve'%3E%3Cg%3E%3Cpath fill='rgb(30,162,177)' d='M8.414,1.076C4.994,1.75,2.322,4.23,1.672,7.775c-2.23,12.15-2.23,24.301,0,36.452c0.65,3.545,3.322,6.02,6.742,6.693 C14.332,51.884,26,52,26,52V0C26,0.001,13.667,0.13,8.414,1.076z'/%3E%3C/g%3E%3C/svg%3E");
}

div.link-automator .color_set5 a.eon-button span,
div.link-automator .color_set5 button.eon-button span {
    background-color: #1ea2b1;
    color: #fff;
}

div.link-automator .color_set5 a.eon-button:after,
div.link-automator .color_set5 button.eon-button:after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' width='26px' height='52px' viewBox='0.239 0.829 26 52' enable-background='new 0.239 0.829 26 52' xml:space='preserve'%3E%3Cg%3E%3Cpath fill='rgb(30,162,177)' d='M17.824,51.754c3.42-0.674,6.092-3.154,6.742-6.699c2.23-12.15,2.23-24.301,0-36.451 c-0.65-3.545-3.322-6.02-6.742-6.694c-5.918-0.964-17.585-1.08-17.585-1.08v52C0.239,52.829,12.571,52.7,17.824,51.754z'/%3E%3C/g%3E%3C/svg%3E");
}

div.link-automator .color_set5 a.eon-button:hover:before,
div.link-automator .color_set5 button.eon-button:hover:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' width='26px' height='52px' viewBox='0 0 26 52' enable-background='new 0 0 26 52' xml:space='preserve'%3E%3Cg%3E%3Cpath fill='rgb(43,145,163)' d='M8.414,1.076C4.994,1.75,2.322,4.23,1.672,7.775c-2.23,12.15-2.23,24.301,0,36.452c0.65,3.545,3.322,6.02,6.742,6.693 C14.332,51.884,26,52,26,52V0C26,0.001,13.667,0.13,8.414,1.076z'/%3E%3C/g%3E%3C/svg%3E");
}

div.link-automator .color_set5 a.eon-button:hover span,
div.link-automator .color_set5 button.eon-button:hover span {
    background-color: #2b91a3;
}

div.link-automator .color_set5 a.eon-button:hover:after,
div.link-automator .color_set5 button.eon-button:hover:after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' width='26px' height='52px' viewBox='0.239 0.829 26 52' enable-background='new 0.239 0.829 26 52' xml:space='preserve'%3E%3Cg%3E%3Cpath fill='rgb(43,145,163)' d='M17.824,51.754c3.42-0.674,6.092-3.154,6.742-6.699c2.23-12.15,2.23-24.301,0-36.451 c-0.65-3.545-3.322-6.02-6.742-6.694c-5.918-0.964-17.585-1.08-17.585-1.08v52C0.239,52.829,12.571,52.7,17.824,51.754z'/%3E%3C/g%3E%3C/svg%3E");
}

div.link-automator .color_set5.nobgcolor {
    background-color: transparent;
}

/** Color Combination 6 **/
div.link-automator .color_set6 a, .color_set6 a:visited,
div.link-automator .color_set6 button, .color_set6 button:visited {
    color: #b00402;
}

div.link-automator .color_set6 a:hover, .color_set6 a:active,
div.link-automator .color_set6 button:hover, .color_set6 button:active {
    color: #a00301;
}

div.link-automator .color_set6 a.eon-button:before,
div.link-automator .color_set6 button.eon-button:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' width='26px' height='52px' viewBox='0 0 26 52' enable-background='new 0 0 26 52' xml:space='preserve'%3E%3Cg%3E%3Cpath fill='rgb(176,4,2)' d='M8.414,1.076C4.994,1.75,2.322,4.23,1.672,7.775c-2.23,12.15-2.23,24.301,0,36.452c0.65,3.545,3.322,6.02,6.742,6.693 C14.332,51.884,26,52,26,52V0C26,0.001,13.667,0.13,8.414,1.076z'/%3E%3C/g%3E%3C/svg%3E");
}

div.link-automator .color_set6 a.eon-button span,
div.link-automator .color_set6 button.eon-button span {
    background-color: #b00402;
    color: #ffffff;
}

div.link-automator .color_set6 a.eon-button:after,
div.link-automator .color_set6 button.eon-button:after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' width='26px' height='52px' viewBox='0.239 0.829 26 52' enable-background='new 0.239 0.829 26 52' xml:space='preserve'%3E%3Cg%3E%3Cpath fill='rgb(176,4,2)' d='M17.824,51.754c3.42-0.674,6.092-3.154,6.742-6.699c2.23-12.15,2.23-24.301,0-36.451 c-0.65-3.545-3.322-6.02-6.742-6.694c-5.918-0.964-17.585-1.08-17.585-1.08v52C0.239,52.829,12.571,52.7,17.824,51.754z'/%3E%3C/g%3E%3C/svg%3E");
}

div.link-automator .color_set6 a.eon-button:hover:before,
div.link-automator .color_set6 button.eon-button:hover:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' width='26px' height='52px' viewBox='0 0 26 52' enable-background='new 0 0 26 52' xml:space='preserve'%3E%3Cg%3E%3Cpath fill='rgb(160,3,17)' d='M8.414,1.076C4.994,1.75,2.322,4.23,1.672,7.775c-2.23,12.15-2.23,24.301,0,36.452c0.65,3.545,3.322,6.02,6.742,6.693 C14.332,51.884,26,52,26,52V0C26,0.001,13.667,0.13,8.414,1.076z'/%3E%3C/g%3E%3C/svg%3E");
}

div.link-automator .color_set6 a.eon-button:hover span,
div.link-automator .color_set6 button.eon-button:hover span {
    background-color: #a00301;
}

div.link-automator .color_set6 a.eon-button:hover:after,
div.link-automator .color_set6 button.eon-button:hover:after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' width='26px' height='52px' viewBox='0.239 0.829 26 52' enable-background='new 0.239 0.829 26 52' xml:space='preserve'%3E%3Cg%3E%3Cpath fill='rgb(160,3,17)' d='M17.824,51.754c3.42-0.674,6.092-3.154,6.742-6.699c2.23-12.15,2.23-24.301,0-36.451 c-0.65-3.545-3.322-6.02-6.742-6.694c-5.918-0.964-17.585-1.08-17.585-1.08v52C0.239,52.829,12.571,52.7,17.824,51.754z'/%3E%3C/g%3E%3C/svg%3E");
}

div.link-automator .color_set6.nobgcolor {
    background-color: transparent;
}

/** Color Combination 7 **/
div.link-automator .color_set7 a, .color_set7 a:visited,
div.link-automator .color_set7 button, .color_set7 button:visited {
    color: #000000;
}

div.link-automator .color_set7 a:hover, .color_set7 a:active,
div.link-automator .color_set7 button:hover, .color_set7 button:active {
    color: #000000;
}

div.link-automator .color_set7 a.eon-button:before,
div.link-automator .color_set7 button.eon-button:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' width='26px' height='52px' viewBox='0 0 26 52' enable-background='new 0 0 26 52' xml:space='preserve'%3E%3Cg%3E%3Cpath fill='rgb(234,28,10)' d='M8.414,1.076C4.994,1.75,2.322,4.23,1.672,7.775c-2.23,12.15-2.23,24.301,0,36.452c0.65,3.545,3.322,6.02,6.742,6.693 C14.332,51.884,26,52,26,52V0C26,0.001,13.667,0.13,8.414,1.076z'/%3E%3C/g%3E%3C/svg%3E");
}

div.link-automator .color_set7 a.eon-button span,
div.link-automator .color_set7 button.eon-button span {
    background-color: #ea1c0a;
    color: #000000;
}

div.link-automator .color_set7 a.eon-button:after,
div.link-automator .color_set7 button.eon-button:after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' width='26px' height='52px' viewBox='0.239 0.829 26 52' enable-background='new 0.239 0.829 26 52' xml:space='preserve'%3E%3Cg%3E%3Cpath fill='rgb(234,28,10)' d='M17.824,51.754c3.42-0.674,6.092-3.154,6.742-6.699c2.23-12.15,2.23-24.301,0-36.451 c-0.65-3.545-3.322-6.02-6.742-6.694c-5.918-0.964-17.585-1.08-17.585-1.08v52C0.239,52.829,12.571,52.7,17.824,51.754z'/%3E%3C/g%3E%3C/svg%3E");
}

div.link-automator .color_set7 a.eon-button:hover:before,
div.link-automator .color_set7 button.eon-button:hover:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' width='26px' height='52px' viewBox='0 0 26 52' enable-background='new 0 0 26 52' xml:space='preserve'%3E%3Cg%3E%3Cpath fill='rgb(213,22,7)' d='M8.414,1.076C4.994,1.75,2.322,4.23,1.672,7.775c-2.23,12.15-2.23,24.301,0,36.452c0.65,3.545,3.322,6.02,6.742,6.693 C14.332,51.884,26,52,26,52V0C26,0.001,13.667,0.13,8.414,1.076z'/%3E%3C/g%3E%3C/svg%3E");
}

div.link-automator .color_set7 a.eon-button:hover span,
div.link-automator .color_set7 button.eon-button:hover span {
    background-color: #d51607;
}

div.link-automator .color_set7 a.eon-button:hover:after,
div.link-automator .color_set7 button.eon-button:hover:after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' width='26px' height='52px' viewBox='0.239 0.829 26 52' enable-background='new 0.239 0.829 26 52' xml:space='preserve'%3E%3Cg%3E%3Cpath fill='rgb(213,22,7)' d='M17.824,51.754c3.42-0.674,6.092-3.154,6.742-6.699c2.23-12.15,2.23-24.301,0-36.451 c-0.65-3.545-3.322-6.02-6.742-6.694c-5.918-0.964-17.585-1.08-17.585-1.08v52C0.239,52.829,12.571,52.7,17.824,51.754z'/%3E%3C/g%3E%3C/svg%3E");
}

div.link-automator .color_set7.nobgcolor {
    background-color: transparent;
}

/** Color Combination 15 **/
div.link-automator .color_set15 a, .color_set15 a:visited,
div.link-automator .color_set15 button, .color_set15 button:visited {
    color: #b00402;
}

div.link-automator .color_set15 a:hover, .color_set15 a:active,
div.link-automator .color_set15 button:hover, .color_set15 button:active {
    color: #b00402;
}

div.link-automator .color_set15 a.eon-button:before,
div.link-automator .color_set15 button.eon-button:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' width='26px' height='52px' viewBox='0 0 26 52' enable-background='new 0 0 26 52' xml:space='preserve'%3E%3Cg%3E%3Cpath fill='rgb(255,255,255)' d='M8.414,1.076C4.994,1.75,2.322,4.23,1.672,7.775c-2.23,12.15-2.23,24.301,0,36.452c0.65,3.545,3.322,6.02,6.742,6.693 C14.332,51.884,26,52,26,52V0C26,0.001,13.667,0.13,8.414,1.076z'/%3E%3C/g%3E%3C/svg%3E");
}

div.link-automator .color_set15 a.eon-button span,
div.link-automator .color_set15 button.eon-button span {
    background-color: #ffffff;
    color: #b00402;
}

div.link-automator .color_set15 a.eon-button:after,
div.link-automator .color_set15 button.eon-button:after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' width='26px' height='52px' viewBox='0.239 0.829 26 52' enable-background='new 0.239 0.829 26 52' xml:space='preserve'%3E%3Cg%3E%3Cpath fill='rgb(255,255,255)' d='M17.824,51.754c3.42-0.674,6.092-3.154,6.742-6.699c2.23-12.15,2.23-24.301,0-36.451 c-0.65-3.545-3.322-6.02-6.742-6.694c-5.918-0.964-17.585-1.08-17.585-1.08v52C0.239,52.829,12.571,52.7,17.824,51.754z'/%3E%3C/g%3E%3C/svg%3E");
}

div.link-automator .color_set15 a.eon-button:hover:before,
div.link-automator .color_set15 button.eon-button:hover:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' width='26px' height='52px' viewBox='0 0 26 52' enable-background='new 0 0 26 52' xml:space='preserve'%3E%3Cg%3E%3Cpath fill='rgb(255,255,255)' d='M8.414,1.076C4.994,1.75,2.322,4.23,1.672,7.775c-2.23,12.15-2.23,24.301,0,36.452c0.65,3.545,3.322,6.02,6.742,6.693 C14.332,51.884,26,52,26,52V0C26,0.001,13.667,0.13,8.414,1.076z'/%3E%3C/g%3E%3C/svg%3E");
}

div.link-automator .color_set15 a.eon-button:hover span,
div.link-automator .color_set15 button.eon-button:hover span {
    background-color: #ffffff;
}

div.link-automator .color_set15 a.eon-button:hover:after,
div.link-automator .color_set15 button.eon-button:hover:after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' width='26px' height='52px' viewBox='0.239 0.829 26 52' enable-background='new 0.239 0.829 26 52' xml:space='preserve'%3E%3Cg%3E%3Cpath fill='rgb(255,255,255)' d='M17.824,51.754c3.42-0.674,6.092-3.154,6.742-6.699c2.23-12.15,2.23-24.301,0-36.451 c-0.65-3.545-3.322-6.02-6.742-6.694c-5.918-0.964-17.585-1.08-17.585-1.08v52C0.239,52.829,12.571,52.7,17.824,51.754z'/%3E%3C/g%3E%3C/svg%3E");
}

div.link-automator .color_set15.nobgcolor {
    background-color: transparent;
}

/** Color Combination 17 **/
div.link-automator .color_set17 a, .color_set17 a:visited {
    color: #0F738A;
}

/** Color Combination 14 **/
.color_set14 {
    background-color: #b00402;
    color: #ffffff;
}

.color_set14.nobgcolor {
    background-color: transparent;
}

/** Color Combination 18 **/
.color_set18 a span{
    background-color: white!important;
    color: #ea1c0a;
    border-top: solid 2px #ea1c0a;
    border-bottom: solid 2px #ea1c0a;
    padding: 0;
    line-height: 50px;
}

.color_set18 a.eon-button:after {
    content: "";
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Generator: Adobe Illustrator 25.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 24 48' style='enable-background:new 0 0 24 48;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23FFFFFF;stroke:%23EA1B0A;stroke-width:2;%7D%0A%3C/style%3E%3Cg id='Symbols'%3E%3Cpath id='Left_1_' class='st0' d='M0,1c1.7,0,6,0.1,9.4,0.4h0.7l0,0c2.3,0.1,4.5,0.3,6,0.6c1.3,0.2,2.5,0.8,3.5,1.8 s1.6,2.2,1.9,3.5c2,11,2,22.3,0,33.3c-0.3,1.4-1,2.8-1.9,3.7c-0.9,0.9-2.1,1.6-3.5,1.8c-1.7,0.3-3.8,0.5-6,0.6H9.4l0,0 C6,46.9,1.7,47,0,47'/%3E%3C/g%3E%3C/svg%3E%0A");
}

.color_set18 a.eon-button:before {
    content: "";
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Generator: Adobe Illustrator 25.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 24 48' style='enable-background:new 0 0 24 48;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23FFFFFF;stroke:%23EA1B0A;stroke-width:2;%7D%0A%3C/style%3E%3Cg id='Symbols'%3E%3Cpath id='Left_1_' class='st0' d='M24,47c-1.7,0-6-0.1-9.4-0.3l0,0h-0.7c-2.2-0.1-4.3-0.3-6-0.6c-1.4-0.2-2.6-0.9-3.5-1.8 S2.8,42,2.5,40.6c-2-11-2-22.3,0-33.3C2.8,6,3.4,4.8,4.4,3.8S6.6,2.2,7.9,2c1.5-0.3,3.7-0.5,6-0.6l0,0h0.7C18,1.1,22.3,1,24,1'/%3E%3C/g%3E%3C/svg%3E%0A");
}

.color_set19 a span {
    background-color: transparent !important;
    color: white;
    border-top: solid 2px white;
    border-bottom: solid 2px white;
    padding: 0;
    line-height: 50px;
}

.color_set19 a.eon-button:after {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 24 48'%3E%3Cstyle%3E.st0%7Bfill:none;stroke:white;stroke-width:2;%7D%3C/style%3E%3Cpath class='st0' d='M0,1c1.7,0,6,0.1,9.4,0.4h0.7l0,0c2.3,0.1,4.5,0.3,6,0.6c1.3,0.2,2.5,0.8,3.5,1.8s1.6,2.2,1.9,3.5c2,11,2,22.3,0,33.3c-0.3,1.4-1,2.8-1.9,3.7c-0.9,0.9-2.1,1.6-3.5,1.8c-1.7,0.3-3.8,0.5-6,0.6H9.4l0,0C6,46.9,1.7,47,0,47'/%3E%3C/svg%3E");
}

.color_set19 a.eon-button:before {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 24 48'%3E%3Cstyle%3E.st0%7Bfill:none;stroke:white;stroke-width:2;%7D%3C/style%3E%3Cpath class='st0' d='M24,47c-1.7,0-6-0.1-9.4-0.3l0,0h-0.7c-2.2-0.1-4.3-0.3-6-0.6c-1.4-0.2-2.6-0.9-3.5-1.8S2.8,42,2.5,40.6c-2-11-2-22.3,0-33.3C2.8,6,3.4,4.8,4.4,3.8S6.6,2.2,7.9,2c1.5-0.3,3.7-0.5,6-0.6l0,0h0.7C18,1.1,22.3,1,24,1'/%3E%3C/svg%3E");
}

.color_set19 a:hover span {
    background-color: white !important;
    color: #c41708 !important;
}

.color_set19 a:hover:after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' width='26px' height='52px' viewBox='0.239 0.829 26 52' enable-background='new 0.239 0.829 26 52' xml:space='preserve'%3E%3Cg%3E%3Cpath fill='rgb(255,255,255)' d='M17.824,51.754c3.42-0.674,6.092-3.154,6.742-6.699c2.23-12.15,2.23-24.301,0-36.451 c-0.65-3.545-3.322-6.02-6.742-6.694c-5.918-0.964-17.585-1.08-17.585-1.08v52C0.239,52.829,12.571,52.7,17.824,51.754z'/%3E%3C/g%3E%3C/svg%3E") !important;
}

.color_set19 a:hover:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' width='26px' height='52px' viewBox='0 0 26 52' enable-background='new 0 0 26 52' xml:space='preserve'%3E%3Cg%3E%3Cpath fill='rgb(255,255,255)' d='M8.414,1.076C4.994,1.75,2.322,4.23,1.672,7.775c-2.23,12.15-2.23,24.301,0,36.452c0.65,3.545,3.322,6.02,6.742,6.693 C14.332,51.884,26,52,26,52V0C26,0.001,13.667,0.13,8.414,1.076z'/%3E%3C/g%3E%3C/svg%3E") !important;
}

.color_set14 h1, .color_set14 h2, .color_set14 h3 {
    color: #ffffff;
}

.color_set14 h4, .color_set14 h5, .color_set14 h6 {
    color: #ffffff;
}

.color_set14 .abstract {
    color: #ffffff;
}

.color_set14 a, .color_set14 a:visited {
    color: #ffffff;
}

.color_set14 a:hover, .color_set14 a:active {
    color: #ffffff;
}

.sticky-bar.color_set4 a.eon-button span {
    background-color: #ffffff;
    color: #ea1c0a;
}

.sticky-bar.color_set14 a.eon-button span {
    background-color: #ffffff;
    color: #b00402;
}

.sticky-bar.color_set5 a.small.eon-button span {
    background-color: #ffffff;
    color: #1ea2b1;
}

.sticky-bar.color_set6 a.eon-button span {
    background-color: #ffffff;
    color: #b00402;
}

.sticky-bar .container a.small.eon-button:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' width='26px' height='52px' viewBox='0 0 26 52' enable-background='new 0 0 26 52' xml:space='preserve'%3E%3Cg%3E%3Cpath fill='rgb(255,255,255)' d='M8.414,1.076C4.994,1.75,2.322,4.23,1.672,7.775c-2.23,12.15-2.23,24.301,0,36.452c0.65,3.545,3.322,6.02,6.742,6.693 C14.332,51.884,26,52,26,52V0C26,0.001,13.667,0.13,8.414,1.076z'/%3E%3C/g%3E%3C/svg%3E");
}

.sticky-bar .container a.small.eon-button:hover:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' width='26px' height='52px' viewBox='0 0 26 52' enable-background='new 0 0 26 52' xml:space='preserve'%3E%3Cg%3E%3Cpath fill='rgb(232,232,232)' d='M8.414,1.076C4.994,1.75,2.322,4.23,1.672,7.775c-2.23,12.15-2.23,24.301,0,36.452c0.65,3.545,3.322,6.02,6.742,6.693 C14.332,51.884,26,52,26,52V0C26,0.001,13.667,0.13,8.414,1.076z'/%3E%3C/g%3E%3C/svg%3E");
}

.sticky-bar .container a.small.eon-button:after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' width='26px' height='52px' viewBox='0.239 0.829 26 52' enable-background='new 0.239 0.829 26 52' xml:space='preserve'%3E%3Cg%3E%3Cpath fill='rgb(255,255,255)' d='M17.824,51.754c3.42-0.674,6.092-3.154,6.742-6.699c2.23-12.15,2.23-24.301,0-36.451 c-0.65-3.545-3.322-6.02-6.742-6.694c-5.918-0.964-17.585-1.08-17.585-1.08v52C0.239,52.829,12.571,52.7,17.824,51.754z'/%3E%3C/g%3E%3C/svg%3E");
}

.sticky-bar .container a.small.eon-button:hover:after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' width='26px' height='52px' viewBox='0.239 0.829 26 52' enable-background='new 0.239 0.829 26 52' xml:space='preserve'%3E%3Cg%3E%3Cpath fill='rgb(232,232,232)' d='M17.824,51.754c3.42-0.674,6.092-3.154,6.742-6.699c2.23-12.15,2.23-24.301,0-36.451 c-0.65-3.545-3.322-6.02-6.742-6.694c-5.918-0.964-17.585-1.08-17.585-1.08v52C0.239,52.829,12.571,52.7,17.824,51.754z'/%3E%3C/g%3E%3C/svg%3E");
}

.sticky-bar .container a.small.eon-button:hover span {
    background-color: #e8e8e8;
}

.sticky-bar a.small.eon-button span {
    height: 32px;
    line-height: 32px;
}

div.link-automator a.eon-button:before {
    background-size: 100% 100%;
    height: calc(51px + 1px);
    width: calc(26px + 1px);
    margin-left: calc(-26px + 1px);
}

div.link-automator a.eon-button:after {
    background-size: 100% 100%;
    height: calc(51px + 1px);
    width: calc(26px + 1px);
    margin-left: calc(-5px + 1px);
}


/* ==========================================================================
   MODALS
   ========================================================================== */
.modal .close {
    float: right;
    padding-right: 15px;
    font-size: 40px;
    font-weight: bold;
    line-height: 1;
    color: #EA1C0A;
    text-shadow: 0 1px 0 #ffffff;
    opacity: 0.2;
    filter: alpha(opacity=20);
}

.modal-open .modal-backdrop {
    z-index: 2000;
}

.modal {
    z-index: 2001;
}

/* ==========================================================================
   JConfirm
   ========================================================================== */

.jconfirm.jconfirm-white .jconfirm-box.jconfirm-type-default .jconfirm-buttons button, .jconfirm.jconfirm-light .jconfirm-box.jconfirm-type-default .jconfirm-buttons button {
    text-transform: none;
    font-size: 18px;
}

.jconfirm.jconfirm-white .jconfirm-box, .jconfirm.jconfirm-light .jconfirm-box {
    box-shadow: none;
}

.jconfirm .jconfirm-box.jconfirm-type-default div.jconfirm-title-c .jconfirm-icon-c {
    margin-right: 0;
}

.jconfirm-title {
    font-size: 2.5rem;
    line-height: 1.3;
    color: #ea1c0a;
}

.jconfirm-p {
    margin: 30px 0 30px 0;
}

.jconfirm .jconfirm-box div.jconfirm-closeIcon {
    margin: 20px 10px 15px 15px;
    z-index: 1;
    color: #ea1c0a;
    width: 30px;
    height: 30px;
    font-size: 50px !important;
}

.eon-close-icon {
    position: absolute;
    top: 0;
    right: 20px;
    text-align: center;
    line-height: normal;
    font-weight: normal;
    z-index: 1;
    color: #ea1c0a;
    cursor: pointer;
    font-size: 40px;
}

.eon-input-text.jconfirm-input {
    width: 35%;
}

.jconfirm.jconfirm-light .jconfirm-box .jconfirm-buttons button.eon-button {
    font-size: 18px;
}

.jconfirm-box .configurator-item-main-title {
    font-size: 3rem;
}

/* ==========================================================================
    COOKIE SECTION
   ========================================================================== */

.cookie_wrapper.it {
    bottom: 15px;
    padding: 0 25px;
    width: 40%;
}

.cookie_wrapper.it button.eon-button {
    padding: 0 13px;
    margin: 0;
    height: 28px;
}

.cookie_wrapper.it button.eon-button:before {
    margin-left: -12px;
}

.cookie_wrapper.it button.eon-button span {
    padding: 1px 10px;
    line-height: 27px;
}

.cookie_wrapper.it .color_set7 .more-text-cookie {
    color: #b00402
}

.rte-ita-strike-bold {
    text-decoration: line-through;
    font-weight: 900;
}

.rte-ita-strike-normal {
    text-decoration: line-through;
}


/* ==========================================================================
    MEDIA QUERIES
   ========================================================================== */

@media (min-width: 1200px) {

    /* GRID Columns Fixer */
    .auto-clear .col-lg-1:nth-child(12n+1) {
        clear: left;
    }

    .auto-clear .col-lg-2:nth-child(6n+1) {
        clear: left;
    }

    .auto-clear .col-lg-3:nth-child(4n+1) {
        clear: left;
    }

    .auto-clear .col-lg-4:nth-child(3n+1) {
        clear: left;
    }

    .auto-clear .col-lg-6:nth-child(odd) {
        clear: left;
    }
}

@media (min-width: 992px) {

    body.scuole-modes {
        padding-top: 11.8rem;
    }

    /* GRID Columns Fixer */
    .auto-clear .col-md-1:nth-child(12n+1) {
        clear: left;
    }

    .auto-clear .col-md-2:nth-child(6n+1) {
        clear: left;
    }

    .auto-clear .col-md-3:nth-child(4n+1) {
        clear: left;
    }

    .auto-clear .col-md-4:nth-child(3n+1) {
        clear: left;
    }

    .auto-clear .col-md-6:nth-child(odd) {
        clear: left;
    }
}

@media (min-width: 768px) {


    /* GRID Columns Fixer */
    .auto-clear .col-sm-1:nth-child(12n+1) {
        clear: left;
    }

    .auto-clear .col-sm-2:nth-child(6n+1) {
        clear: left;
    }

    .auto-clear .col-sm-3:nth-child(4n+1) {
        clear: left;
    }

    .auto-clear .col-sm-4:nth-child(3n+1) {
        clear: left;
    }

    .auto-clear .col-sm-6:nth-child(odd) {
        clear: left;
    }
}

@media (max-width: 1199px) {


}

@media (max-width: 991px) {

    .width100-tab{
        width: 100%;
    }

    .z2-tab {
        z-index: 2;
    }

    .top20-tab{
        top: 20px;
    }

    .no-clear-tab {
        clear: unset;
    }

    .block-tab {
        display: block;
    }

    .float-none-tab {
        float: none;
    }

    .lh50-mob {
        line-height: 50px;
    }

    /* COOKIE SECTION ONLY ITALY */
    .cookie_wrapper.it {
        bottom: 60px
    }

    footer.footercomp,
    .body-wrapper,
    html body {
        float: left;
        width: 100%;
    }

    body .navigation-wrapper,
    body .lp-header {
        float: left;
        width: 100%;
        z-index: 2000;
        position: sticky;
        position: -webkit-sticky;
        top: 0;
    }
}

@media (min-width: 768px) and (max-width: 991px) {

    .jconfirm .jconfirm-box div.jconfirm-closeIcon {
        margin: 15px 5px 15px 15px;
        z-index: 1;
        color: #ea1c0a;
        width: 30px;
        height: 30px;
        font-size: 40px !important;
    }
}

@media (max-width: 767px) {

    .width-auto-mob {
        width: auto;
    }

    .no-mw-mob {
        max-width: none;
    }

    .lh0-mob {
        line-height: 0;
    }

    .clear-mob {
        clear: both;
    }

    .jconfirm.jconfirm-white .jconfirm-box .jconfirm-buttons, .jconfirm.jconfirm-light .jconfirm-box .jconfirm-buttons {
        float: none;
        text-align: center;
    }

    .jconfirm-box .configurator-item-main-title {
        margin-top: 20px;
    }

    .eon-close-icon {
        font-size: 30px;
    }

    .lhnormal-mob {
        line-height: normal;
    }

    button.eon-button.mobile:before, a.eon-button.mobile:before {
        content: "";
        display: inline-block;
        position: absolute;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' width='26px' height='52px' viewBox='0 0 26 52' enable-background='new 0 0 26 52' xml:space='preserve'%3E%3Cg%3E%3Cpath fill='rgb(234,28,10)' d='M8.414,1.076C4.994,1.75,2.322,4.23,1.672,7.775c-2.23,12.15-2.23,24.301,0,36.452c0.65,3.545,3.322,6.02,6.742,6.693 C14.332,51.884,26,52,26,52V0C26,0.001,13.667,0.13,8.414,1.076z'/%3E%3C/g%3E%3C/svg%3E");
        background-size: 100% 100%;
        height: calc(39px + 1px);
        width: calc(20px + 1px);
        margin-left: calc(-16px + 1px);
    }

    button.eon-button.mobile:after, a.eon-button.mobile:after {
        content: "";
        display: inline-block;
        position: absolute;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' width='26px' height='52px' viewBox='0.239 0.829 26 52' enable-background='new 0.239 0.829 26 52' xml:space='preserve'%3E%3Cg%3E%3Cpath fill='rgb(234,28,10)' d='M17.824,51.754c3.42-0.674,6.092-3.154,6.742-6.699c2.23-12.15,2.23-24.301,0-36.451 c-0.65-3.545-3.322-6.02-6.742-6.694c-5.918-0.964-17.585-1.08-17.585-1.08v52C0.239,52.829,12.571,52.7,17.824,51.754z'/%3E%3C/g%3E%3C/svg%3E");
        background-size: 100% 100%;
        height: calc(39px + 1px);
        width: calc(20px + 1px);
        margin-right: calc(1px + 1px);
    }

    button.eon-button.mobile span, a.eon-button.mobile span {
        height: 40px;
        line-height: 40px;
        font-weight: bold;
        display: inline-block;
        background-color: #EA1C0A;
        padding: 0 10px;
        font-size: 1.4rem;
    }

    .block-mob {
        display: block !important;
    }

    /* GRID Columns Fixer */
    .auto-clear .col-xs-1:nth-child(12n+1) {
        clear: left;
    }

    .auto-clear .col-xs-2:nth-child(6n+1) {
        clear: left;
    }

    .auto-clear .col-xs-3:nth-child(4n+1) {
        clear: left;
    }

    .auto-clear .col-xs-4:nth-child(3n+1) {
        clear: left;
    }

    .auto-clear .col-xs-6:nth-child(odd) {
        clear: left;
    }

    /* COOKIE SECTION ONLY ITALY */
    .cookie_wrapper.it {
        position: static;
        float: left;
        width: 100%;
        padding: 0;
    }

    .body-wrapper.eon-it-page {
        float: left;
    }

}

/* IPHONE 5 OR SIMILAR DEVICE */
@media (max-width: 340px) {

    .jconfirm .jconfirm-box div.jconfirm-closeIcon {
        margin: 15px 5px 15px 15px;
        font-size: 40px !important;
    }

    .jconfirm-title {
        font-size: 2.3rem;
        color: #ea1c0a;
    }

    .jconfirm.jconfirm-light .jconfirm-box .jconfirm-buttons button.eon-button {
        font-size: 16px;
    }

}
/* This file is only for imports */
/* breakpoints */
/* colors */
/* variables */
/* ==========================================================================
    TYPOGRAPHY
   ========================================================================== */
.text-white {
  color: white;
}
html {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.no-decoration {
  text-decoration: none !important;
}
.underline-text {
  text-decoration: underline;
}
.text-justify {
  text-align: justify;
}
.pointer {
  cursor: pointer;
}
.headline_it h1,
.headline_it h2,
.headline_it h3,
.headline_it h4,
.headline_it h5 {
  margin: 0;
}
.headline_it h2.smaller {
  font-size: 40px;
}
h1 {
  margin-top: 20px;
}
.text-bold {
  font-weight: 900;
}
.text-thin {
  font-weight: 400;
}
.text-thinner {
  font-weight: 300;
}
.text-medium {
  font-weight: 500;
}
.text-big {
  font-weight: 700;
}
.lh-normal {
  line-height: normal;
}
.lh1 {
  line-height: 1;
}
.lh70 {
  line-height: 70px;
}
.no-list-style {
  list-style: none;
}
.f90 {
  font-size: 9rem;
}
.f84-des {
  font-size: 84px;
}
.f72-des {
  font-size: 72px;
}
.f32-des {
  font-size: 32px;
}
.red-text {
  color: #ea1c0a;
}
.text-white {
  color: white;
}
.text-turquoise {
  color: #1ea2b1;
}
.text-dark-turquoise {
  color: #00738b;
}
.text-limeyellow {
  color: #E3E000;
}
.text-light-grey {
  color: #666666;
}
.dark-red-text {
  color: #b00402;
}
.middlegray-text {
  color: #8f9192;
}
.lh-100 {
  line-height: 100%;
}
@media (max-width: 1199px) {
  .f84-des {
    font-size: 84px;
  }
  .f72-des {
    font-size: 72px;
  }
  .f40-des {
    font-size: 40px;
  }
  .f36-des {
    font-size: 36px;
  }
  .f32-des {
    font-size: 32px;
  }
  .f30-des {
    font-size: 30px;
  }
  .f28-des {
    font-size: 28px;
  }
  .f24-des {
    font-size: 24px;
  }
  .f20-des {
    font-size: 20px;
  }
  .f18-des {
    font-size: 18px;
  }
  .f14-des {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .text-center-tab {
    text-align: center;
  }
  .text-right-tab {
    text-align: right;
  }
  .f16-tab {
    font-size: 1.6rem;
  }
  .f18-tab {
    font-size: 1.8rem;
  }
  .f24-tab {
    font-size: 2.4rem;
  }
  .f28-tab {
    font-size: 2.8rem;
  }
  .f30-tab {
    font-size: 3.0rem;
  }
  .f60-tab {
    font-size: 6rem;
  }
}
@media (max-width: 767px) {
  h1.fs42-sm {
    font-size: 4.2rem;
  }
  .headline_it h2.smaller {
    font-size: 24px;
    line-height: 30px;
  }
  .lh1-mob {
    line-height: 1;
  }
  .text-center-mob {
    text-align: center;
  }
  .f11-mob {
    font-size: 1.1rem;
  }
  .f12-mob {
    font-size: 1.2rem;
  }
  .f13-mob {
    font-size: 1.3rem;
  }
  .f14-mob {
    font-size: 1.4rem;
  }
  .f16-mob {
    font-size: 16px;
  }
  .f18-mob {
    font-size: 1.8rem;
  }
  .f18-mob-px {
    font-size: 18px;
  }
  .f20-mob {
    font-size: 2.0rem;
  }
  .f22-mob {
    font-size: 2.2rem;
  }
  .f24-mob {
    font-size: 2.4rem;
  }
  .f26-mob {
    font-size: 2.6rem;
  }
  .f28-mob {
    font-size: 2.8rem;
  }
  .f35-mob {
    font-size: 3.5rem;
  }
  .f39-mob {
    font-size: 3.9rem;
  }
  .f40-mob {
    font-size: 4rem;
  }
  .f48-mob {
    font-size: 48px;
  }
}
@media (max-width: 340px) {
  .f11-xxs {
    font-size: 1.1rem;
  }
  .f12-xxs {
    font-size: 1.2rem;
  }
  .f14-xxs {
    font-size: 1.4rem;
  }
  .f16-xxs {
    font-size: 1.6rem;
  }
  .f15-xxs {
    font-size: 1.5rem;
  }
  .f18-xxs {
    font-size: 1.8rem;
  }
  .f20-xxs {
    font-size: 2.0rem;
  }
  .f23-xxs {
    font-size: 2.3rem;
  }
  h1.fs38-xxs {
    font-size: 3.8rem;
  }
}
/* typography_custom */
/* ==========================================================================
    BG COLOR FOR ITALY COMPONENTS
   ========================================================================== */
.bg-eon-it-red {
  background-color: #EA1C0A;
}
.bg-eon-it-white {
  background-color: #ffffff;
}
.bg-eon-natural300 {
  background-color: #f9f6f4;
}
.bg-eon-it-turquoise {
  background-color: #1EA2B1;
}
.bg-eon-it-bordeaux {
  background-color: #B00402;
}
.bg-eon-it-limeyellow {
  background-color: #E3E000;
}
.bg-eon-it-black {
  background-color: #000000;
}
.bg-eon-it-darkgrey {
  background-color: #39393A;
}
.bg-eon-it-red-active {
  background-color: #D51607;
}
.bg-eon-it-bordeaux-active {
  background-color: #A00311;
}
.bg-eon-it-limeyellow-active {
  background-color: #DAD600;
}
.bg-eon-it-turquoise-active {
  background-color: #2B91A3;
}
.bg-eon-it-red-75 {
  background-color: #f05548;
}
.bg-eon-it-red-50 {
  background-color: #f48D84;
}
.bg-eon-it-red-25 {
  background-color: #fAC6C2;
}
.bg-eon-red300 {
  background-color: #f59a86;
}
.bg-eon-red500 {
  background-color: #eb1d0a;
}
.bg-eon-red700 {
  background-color: #9d1207;
}
.bg-eon-red100 {
  background-color: #f7e8da;
}
.bg-eon-it-bordeaux-75 {
  background-color: #c44341;
}
.bg-eon-it-bordeaux-50 {
  background-color: #d78180;
}
.bg-eon-it-bordeaux-25 {
  background-color: #ebc0c0;
}
.bg-eon-it-bordeaux-dark {
  background-color: #76020C;
}
.bg-eon-it-limeyellow-75 {
  background-color: #eae840;
}
.bg-eon-it-limeyellow-50 {
  background-color: #f1ef7f;
}
.bg-eon-it-limeyellow-25 {
  background-color: #f8f7bf;
}
.bg-eon-it-yellow300 {
  background-color: #edea6c;
}
.bg-eon-it-yellow100 {
  background-color: #f7f4d9;
}
.bg-eon-it-turquoise-75 {
  background-color: #56b9c5;
}
.bg-eon-it-turquoise-50 {
  background-color: #8ed0d8;
}
.bg-eon-it-turquoise-25 {
  background-color: #c7e8eb;
}
.bg-eon-it-turquoise-dark {
  background-color: #0F738A;
}
.bg-eon-turquoise300 {
  background-color: #7fc7cf;
}
.bg-eon-turquoise100 {
  background-color: #e1eded;
}
.bg-eon-it-black {
  background-color: #000000;
}
.bg-eon-it-darkgrey {
  background-color: #39393A;
}
.bg-eon-it-darkgrey-active {
  background-color: #404040;
}
.bg-eon-it-darkgrey-75 {
  background-color: #404040;
}
.bg-eon-it-darkgrey-50 {
  background-color: #4a4a4a;
}
.bg-eon-it-darkgrey-25 {
  background-color: #bfbfbf;
}
.bg-eon-it-middlegrey {
  background-color: #8F9192;
}
.bg-eon-it-lightgrey {
  background-color: #E8E8E8;
}
.bg-eon-it-ultralightgrey {
  background-color: #F6F6F7;
}
.bg-eon-it-grey {
  background-color: #f3f3f3;
}
.bg-eon-it-greylight {
  background-color: #E6E6E7;
}
.bg-eon-grey800 {
  background-color: #404040;
}
.bg-eon-turquoise-opacity-80 {
  background-color: #1EA2B180;
}
.bg-eon-red-opacity-80 {
  background-color: #EA1C0A80;
}
.bg-eon-bordeaux-opacity-80 {
  background-color: #B0040280;
}
.bg-eon-black-opacity-80 {
  background-color: #00000080;
}
.bg-eon-darkgrey-opacity-80 {
  background-color: #39393A80;
}
.bg-eon-lightgrey-opacity-80 {
  background-color: #E8E8E880;
}
.bg-eon-it-limeyellow-opacity-80 {
  background-color: #E3E00080;
}
.bg-eon-it-white-opacity-80 {
  background-color: #ffffff80;
}
.bg-eon-neutral100 {
  background-color: #ffffff;
}
.bg-eon-neutral300 {
  background-color: #f9f6f4;
}
.bg-eon-neutral800 {
  background-color: #262626;
}
/* padding_custom */
/* ==========================================================================
   IE FIX ONLY
   ========================================================================== */
button.eon-button:after,
a.eon-button:after {
  background-repeat: no-repeat;
}
button.eon-button:before,
a.eon-button:before {
  background-repeat: no-repeat;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  /* Fix button on click */
  button:active span,
  button:focus span,
  .eon-button {
    position: relative;
    top: 0;
    left: 0;
  }
  .headline_it h1,
  .headline_it h2,
  .headline_it h3,
  .headline_it h4,
  .headline_it h5 {
    margin-top: 20px;
  }
  .eon-button:hover,
  .eon-button span:hover {
    font-weight: bold;
  }
  .angle-brackets {
    width: 20px;
  }
  .cookie_wrapper.it button.eon-button:after {
    margin-left: -4px;
  }
  button.eon-button:after,
  a.eon-button:after {
    background-repeat: no-repeat;
  }
  button.eon-button:before,
  a.eon-button:before {
    background-repeat: no-repeat;
  }
}
/* padding_custom */
/* ==========================================================================
    BOOTSTRAP
   ========================================================================== */
.row-eq-height,
.flex {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
}
.flex-1 {
  flex: 1;
}
.flex-2 {
  flex: 2;
}
.items-start {
  -ms-flex-align: start;
  align-items: flex-start;
}
.items-end {
  -ms-flex-align: end;
  align-items: flex-end;
}
.items-center {
  -ms-flex-align: center;
  align-items: center;
}
.items-baseline {
  -ms-flex-align: center;
  align-items: baseline;
}
.flex-row {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
}
.flex-row-reverse {
  -webkit-flex-direction: row-reverse;
  /* Safari 6.1+ */
  flex-direction: row-reverse;
}
.flex-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex-nowrap {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.justify-end {
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.justify-start {
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.justify-center {
  -ms-flex-pack: center;
  justify-content: center;
}
.justify-right {
  -ms-flex-pack: end;
  justify-content: right;
}
.justify-space {
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.justify-around {
  -ms-flex-pack: justify;
  justify-content: space-around;
}
.align-self-start {
  -ms-flex-item-align: start;
  align-self: flex-start;
}
.align-self-center {
  -ms-flex-item-align: center;
  align-self: center;
}
.flex-column {
  -ms-flex-direction: column;
  flex-direction: column;
}
.no-shrink {
  flex-shrink: 0;
}
/* Position Class */
.posfixed {
  position: fixed;
}
.posstatic {
  position: static;
}
.possticky {
  position: -webkit-sticky;
  position: sticky;
}
.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 10px;
}
/* Overflow Class */
.overflow-hidden {
  overflow: hidden;
}
.no-overflow {
  overflow: unset;
}
@media (max-width: 991px) {
  .flex-tab {
    display: flex;
  }
  .flex-wrap-tab {
    flex-wrap: wrap;
  }
  .flex-row-tab {
    flex-direction: row;
  }
  .flex-column-tab {
    flex-direction: column;
  }
  .flex-column-rev-tab {
    flex-direction: column-reverse;
  }
  .justify-center-tab {
    justify-content: center;
  }
  .justify-space-tab {
    justify-content: space-between;
  }
  .justify-end-tab {
    justify-content: end;
    padding-right: 0;
  }
  .pull-left-tab {
    float: left !important;
  }
  .pull-right-tab {
    float: right !important;
  }
  .flex-column-rev-tab {
    flex-direction: column-reverse;
  }
}
@media (max-width: 767px) {
  .posabs-mob {
    position: absolute;
  }
  .posrel-mob {
    position: relative;
  }
  .posstatic-mob {
    position: static;
  }
  .align-items-start-mob {
    align-items: flex-start;
  }
  .flex-mob {
    display: flex;
  }
  .justify-center-mob {
    justify-content: center;
  }
  .justify-start-mob {
    justify-content: start;
  }
  .justify-space-mob {
    justify-content: space-between;
  }
  .flex-row-mob {
    flex-direction: row;
  }
  .flex-column-mob {
    flex-direction: column;
  }
  .flex-wrap-mob {
    flex-wrap: wrap;
  }
  .flex-column-rev-mob {
    flex-direction: column-reverse;
  }
}
.d-none {
  display: none !important;
}
.d-inline {
  display: inline !important;
}
.d-inline-block {
  display: inline-block !important;
}
.d-block {
  display: block !important;
}
.d-table {
  display: table !important;
}
.d-table-row {
  display: table-row !important;
}
.d-table-cell {
  display: table-cell !important;
}
.d-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}
.d-inline-flex {
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}
@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .justify-start-desk {
    justify-content: start;
  }
  .justify-end-desk {
    justify-content: end;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
/* bootstrap_custom */
/* ==========================================================================
    MARGIN
   ========================================================================== */
.margin-auto {
  margin: 0 auto;
}
.ml-auto {
  margin-left: auto;
}
.mr-auto {
  margin-right: auto;
}
.no-margin,
.m0 {
  margin: 0;
}
.m20 {
  margin: 20px;
}
.mr0 {
  margin-right: 0;
}
.mr5 {
  margin-right: 5px;
}
.mt1 {
  margin-top: 1px;
}
.mt2 {
  margin-top: 2px;
}
.mt5 {
  margin-top: 5px;
}
.mb2 {
  margin-bottom: 2px;
}
.mb5 {
  margin-bottom: 5px;
}
.mb8 {
  margin-bottom: 8px;
}
.mb10 {
  margin-bottom: 10px;
}
.mb15 {
  margin-bottom: 15px;
}
.mb25 {
  margin-bottom: 25px;
}
.mb100 {
  margin-bottom: 100px;
}
.ml-10 {
  margin-left: -10px;
}
.ml5 {
  margin-left: 5px;
}
.ml7 {
  margin-left: 7px;
}
.ml10 {
  margin-left: 10px;
}
.ml20 {
  margin-left: 20px;
}
.ml25 {
  margin-left: 25px;
}
.ml35 {
  margin-left: 35px;
}
.ml200 {
  margin-left: 200px;
}
.mt10 {
  margin-top: 10px;
}
.mt15 {
  margin-top: 15px;
}
.mt30 {
  margin-top: 30px;
}
.mt40 {
  margin-top: 40px;
}
.mt41 {
  margin-top: 41px;
}
.mt50 {
  margin-top: 50px;
}
.mt-55 {
  margin-top: -55px;
}
.mr6 {
  margin-right: 6px;
}
.mr20 {
  margin-right: 20px;
}
.mr20 {
  margin-right: 20px;
}
.mr25 {
  margin-right: 25px;
}
.mr40 {
  margin-right: 40px;
}
.mr50 {
  margin-right: 50px;
}
.mb20 {
  margin-bottom: 20px;
}
.mt20 {
  margin-top: 20px;
}
.mt25 {
  margin-top: 25px;
}
.mt35 {
  margin-top: 35px;
}
.mt80 {
  margin-top: 80px;
}
.mb40 {
  margin-bottom: 40px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb50 {
  margin-bottom: 50px;
}
.mt60 {
  margin-top: 60px;
}
.mb80 {
  margin-bottom: 80px;
}
.mb120 {
  margin-bottom: 120px;
}
.mt120 {
  margin-top: 120px;
}
@media (max-width: 1199px) {
  .mt60-des {
    margin-top: 60px;
  }
  .mt15-des {
    margin-top: 15px;
  }
  .mb15-des {
    margin-bottom: 15px;
  }
  .mb25-des {
    margin-bottom: 20px;
  }
  .mt5-des {
    margin-top: 5px;
  }
  .mt10-des {
    margin-top: 10px;
  }
  .mr15-des {
    margin-right: 15px;
  }
}
@media (min-width: 991px) {
  .m20-des {
    margin: 20px;
  }
  .mt200-des {
    margin-top: 200px;
  }
  .mt40-des {
    margin-top: 40px;
  }
  .mt10-des {
    margin-top: 10px;
  }
  .mr40-desk {
    margin-right: 40px;
  }
  .mr25-desk {
    margin-right: 25px;
  }
  .mr20-desk {
    margin-right: 20px;
  }
  .mr10-desk {
    margin-right: 10px;
  }
  .ml25-desk {
    margin-left: 25px;
  }
}
@media (max-width: 991px) {
  /* Margin Class */
  .m0-tab {
    margin: 0;
  }
  .mt0-sm,
  .mt0-tab {
    margin-top: 0;
  }
  .mt5-tab {
    margin-top: 5px;
  }
  .mt10-tab {
    margin-top: 10px;
  }
  .mt15-tab {
    margin-top: 15px;
  }
  .mt20-tab,
  .mt20-mob {
    margin-top: 20px;
  }
  .mt30-sm,
  .mt30-tab {
    margin-top: 30px;
  }
  .mt90-tab {
    margin-top: 90px;
  }
  .mt60-tab {
    margin-top: 60px;
  }
  .mr0-tab {
    margin-right: 0;
  }
  .mr15-tab {
    margin-right: 15px;
  }
  .ml0-tab {
    margin-left: 0;
  }
  .ml5-tab {
    margin-left: 5px;
  }
  .ml10-tab {
    margin-left: 10px;
  }
  .ml15-tab {
    margin-left: 15px;
  }
  .ml20-tab {
    margin-left: 20px;
  }
  .ml25-tab {
    margin-left: 25px;
  }
  .ml34-tab {
    margin-left: 34px;
  }
  .mr10-tab {
    margin-right: 10px;
  }
  .mr25-tab {
    margin-right: 25px;
  }
  .mb0-sm,
  .mb0-tab {
    margin-bottom: 0;
  }
  .mb5-tab {
    margin-bottom: 5px;
  }
  .mb10-tab {
    margin-bottom: 10px;
  }
  .mb15-sm,
  .mb15-tab {
    margin-bottom: 15px;
  }
  .mb20-tab {
    margin-bottom: 20px;
  }
  .mb30-tab {
    margin-bottom: 30px;
  }
  .mb40-tab {
    margin-bottom: 40px;
  }
  .mb120-tab {
    margin-bottom: 120px;
  }
}
@media (max-width: 767px) {
  /* Margin Class */
  .m0-mob {
    margin: 0;
  }
  .mb0-mob {
    margin-bottom: 0;
  }
  .mr0-mob {
    margin-right: 0;
  }
  .mt10-mob {
    margin-top: 10px;
  }
  .ml20-mob {
    margin-left: 20px;
  }
  .ml25-mob {
    margin-left: 25px;
  }
  .ml30-mob {
    margin-left: 30px;
  }
  .ml0 {
    margin-left: 0;
  }
  .ml5-mob {
    margin-left: 5px;
  }
  .mr5-mob {
    margin-right: 5px;
  }
  .mr10-mob {
    margin-right: 10px;
  }
  .mr25-mob {
    margin-right: 25px;
  }
  .mb5-mob {
    margin-bottom: 5px;
  }
  .mb10-mob {
    margin-bottom: 10px;
  }
  .mb15-xs,
  .mb15-mob {
    margin-bottom: 15px;
  }
  .mb30-mob {
    margin-bottom: 30px;
  }
  .mt30-xs {
    margin-top: 15px;
  }
  .mt15-mob {
    margin-top: 15px;
  }
  .mt5-mob {
    margin-top: 5px;
  }
  .mt40-mob {
    margin-top: 40px;
  }
  .mb25-mob {
    margin-bottom: 25px;
  }
  .mt25-mob {
    margin-top: 25px;
  }
  .mt15-mob {
    margin-top: 15px;
  }
  .mb20-mob {
    margin-bottom: 20px;
  }
  .mr20-mob {
    margin-right: 20px;
  }
  .mt30-mob {
    margin-top: 30px;
  }
  .ml0-mob {
    margin-left: 0;
  }
  .ml34-mob {
    margin-left: 34px;
  }
  .mt0-mob {
    margin-top: 0;
  }
  .mb150-mob {
    margin-bottom: 150px;
  }
  .mb50-mob {
    margin-bottom: 50px;
  }
  .mb100-mob {
    margin-bottom: 100px;
  }
}
@media (max-width: 340px) {
  .mt10-xxs {
    margin-top: 10px;
  }
  .mt0-xxs {
    margin-top: 0;
  }
  .mr15-xxs {
    margin-right: 15px;
  }
  .ml15-xxs {
    margin-left: 15px;
  }
}
/* margin_custom */
/* ==========================================================================
    PADDING
   ========================================================================== */
.pt0 {
  padding-top: 0!important;
}
.pt2 {
  padding-top: 2px;
}
.pt12 {
  padding-top: 12px;
}
.p20 {
  padding: 20px;
}
.pt25 {
  padding-top: 25px;
}
.pb30 {
  padding-bottom: 30px;
}
.pt35 {
  padding-top: 35px;
}
.pb35 {
  padding-bottom: 35px;
}
.pt40 {
  padding-top: 40px;
}
.pt60 {
  padding-top: 60px;
}
.pr30 {
  padding-right: 30px;
}
.pr40 {
  padding-right: 40px;
}
.pr90 {
  padding-right: 90px;
}
.pl30 {
  padding-left: 30px;
}
.pl12 {
  padding-left: 12px;
}
.pl35 {
  padding-left: 35px;
}
.pl40 {
  padding-left: 40px;
}
.pl45 {
  padding-left: 45px;
}
.pl60 {
  padding-left: 60px;
}
.pl90 {
  padding-left: 90px;
}
.no-padding,
.pd0 {
  padding: 0;
}
.pd23 {
  padding: 23px;
}
@media (min-width: 991px) {
  .pd0-des {
    padding: 0;
  }
  .pd25-des {
    padding: 25px;
  }
}
@media (max-width: 1199px) {
  .pb45-des {
    padding-bottom: 45px;
  }
  .pr10-des {
    padding-right: 10px;
  }
  .pl10-des {
    padding-left: 10px;
  }
}
@media (max-width: 991px) {
  .no-border-tab {
    border: none;
  }
  .text-center-tab {
    text-align: center;
  }
  .text-right-tab {
    text-align: right;
  }
  .no-clear-tab {
    clear: unset;
  }
  .block-tab {
    display: block;
  }
  .float-none-tab {
    float: none;
  }
  /* Padding Class */
  .pd0-tab {
    padding: 0;
  }
  .pd5-tab {
    padding: 5px;
  }
  .pd10-tab {
    padding: 10px;
  }
  .pd15-tab {
    padding: 15px;
  }
  .pd20-tab {
    padding: 20px;
  }
  .pd25-tab {
    padding: 25px;
  }
  .pd30-tab {
    padding: 30px;
  }
  .pr0-tab {
    padding-right: 0;
  }
  .pr5-tab {
    padding-right: 5px;
  }
  .pr10-tab {
    padding-right: 10px;
  }
  .pr15-tab {
    padding-right: 15px;
  }
  .pr20-tab {
    padding-right: 20px;
  }
  .pr25-tab {
    padding-right: 25px;
  }
  .pr30-tab {
    padding-right: 30px;
  }
  .pr35-tab {
    padding-right: 35px;
  }
  .pl0-tab {
    padding-left: 0;
  }
  .pl5-tab {
    padding-left: 5px;
  }
  .pl10-tab {
    padding-left: 10px;
  }
  .pl15-tab {
    padding-left: 15px;
  }
  .pl20-tab {
    padding-left: 20px;
  }
  .pl25-tab {
    padding-left: 25px;
  }
  .pl30-tab {
    padding-left: 30px;
  }
  .pl35-tab {
    padding-left: 35px;
  }
  .pb0-tab {
    padding-bottom: 0;
  }
  .pb5-tab {
    padding-bottom: 5px;
  }
  .pb10-tab {
    padding-bottom: 10px;
  }
  .pb15-tab {
    padding-bottom: 15px;
  }
  .pb20-tab {
    padding-bottom: 20px;
  }
  .pb25-tab {
    padding-bottom: 25px;
  }
  .pb30-tab {
    padding-bottom: 30px;
  }
  .pt0-tab {
    padding-top: 0;
  }
  .pt5-tab {
    padding-top: 5px;
  }
  .pt10-tab {
    padding-top: 10px;
  }
  .pt15-tab {
    padding-top: 15px;
  }
  .pt20-tab {
    padding-top: 20px;
  }
  .pt25-tab {
    padding-top: 25px;
  }
  .pt30-tab {
    padding-top: 30px;
  }
  .pt60-tab {
    padding-top: 60px;
  }
  .pr25-tab {
    padding-right: 25px;
  }
  .pl25-tab {
    padding-left: 25px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .pl25-only-tab {
    padding-left: 25px;
  }
}
@media (max-width: 767px) {
  /* Padding Class */
  .pd0-mob {
    padding: 0;
  }
  .pd5-mob {
    padding: 5px;
  }
  .pd10-mob {
    padding: 10px;
  }
  .pd20-mob {
    padding: 20px;
  }
  .pr5-mob {
    padding-right: 5px;
  }
  .pr10-mob {
    padding-right: 10px;
  }
  .pr15-mob {
    padding-right: 15px;
  }
  .pr25-mob {
    padding-right: 25px;
  }
  .pl15-mob {
    padding-left: 15px;
  }
  .pl25-mob {
    padding-left: 25px;
  }
  .pb5-mob {
    padding-bottom: 5px;
  }
  .pb0-mob {
    padding-bottom: 0;
  }
  .pb10-mob {
    padding-bottom: 10px;
  }
  .pb20-mob {
    padding-bottom: 20px;
  }
  .pt10-mob {
    padding-top: 10px;
  }
  .pb40-sm {
    padding-bottom: 40px;
  }
  .pl10-xs,
  .pl10-mob {
    padding-left: 10px;
  }
  .pl0-mob {
    padding-left: 0;
  }
  .pr0-mob {
    padding-right: 0;
  }
  .pt20-mob {
    padding-top: 20px;
  }
  .pt40-mob {
    padding-top: 40px;
  }
  .pl25-mob {
    padding-left: 25px;
  }
  .pr25-mob {
    padding-right: 25px;
  }
  .pl30-mob {
    padding-left: 30px;
  }
  .pr30-mob {
    padding-right: 30px;
  }
  .pb50-mob {
    padding-bottom: 50px;
  }
  .pb40-sm {
    padding-bottom: 40px;
  }
}
@media (max-width: 340px) {
  .pl10-xxs {
    padding-left: 10px;
  }
}
/* padding_custom */
/* ==========================================================================
    BORDER
   ========================================================================== */
.no-border {
  border: none;
}
.border-radius {
  border-radius: 10px;
}
@media (max-width: 991px) {
  .no-border-tab {
    border: none;
  }
}
/* border_custom */
/* ==========================================================================
    BUTTONS
   ========================================================================== */
.eon-new-button {
  border: 0;
  outline: none;
  padding: 5px;
  color: #ffffff;
  position: relative;
  height: 52px;
  border-radius: 16px;
  font-weight: bold;
  background-color: #ea1c0a;
  font-size: 18px;
}
.eon-new-button.disabled {
  background-color: #e8e8e8;
}
.eon-new-button span {
  position: relative;
  margin: 10px;
}
.eon-new-button.disabled span {
  color: black;
}
.eon-new-button::after {
  content: "";
  z-index: -1;
  position: absolute;
  border-radius: 50% 5%;
  background-color: #ea1c0a;
  top: -2px;
  bottom: -2px;
  right: 11px;
  left: 11px;
}
.eon-new-button.disabled::after {
  background-color: #e8e8e8;
}
.eon-new-button::before {
  content: "";
  z-index: -1;
  position: absolute;
  border-radius: 8px 61%;
  background-color: #ea1c0a;
  top: 7px;
  bottom: 7px;
  right: -2px;
  left: -2px;
}
.eon-new-button.disabled::before {
  background-color: #e8e8e8;
}
/* buttons_custom */
/* ==========================================================================
    ICONS
   ========================================================================== */
.eon-icon-info-turquoise {
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 22 22'%3E %3Cg fill='none' fill-rule='evenodd' transform='translate(1)'%3E %3Ccircle cx='10' cy='11' r='10' stroke='%2300A5B4' stroke-width='2'/%3E %3Ctext fill='%2300A5B4' font-family='EONBrixSansBold, EON Brix Sans' font-size='18' font-style='italic' font-weight='bold' transform='translate(8)'%3E %3Ctspan x='-1' y='18'%3Ei%3C/tspan%3E %3C/text%3E %3C/g%3E %3C/svg%3E") no-repeat center;
}
.eon-icon-phone-red {
  width: 30px;
  height: 30px;
  background-size: contain;
  background: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E %3Csvg width='32px' height='32px' viewBox='0 0 32 32' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E %3Ctitle%3Eicona_chiamata%3C/title%3E %3Cdesc%3ECreated with Sketch.%3C/desc%3E %3Cdefs%3E %3Cpath d='M22.5265986,22.577055 C23.2265986,23.277055 23.2265986,24.377055 22.5265986,25.177055 L18.8265986,28.777055 C18.5265986,28.977055 18.2265986,29.077055 17.8265986,29.077055 C16.9265986,29.077055 16.1265986,28.877055 15.3265986,28.577055 C14.2265986,28.177055 13.1265986,27.677055 12.1265986,27.177055 C9.92659863,26.077055 7.82659863,24.677055 6.02659863,22.977055 C3.62659863,20.377055 1.72659863,17.177055 0.526598632,13.777055 C0.226598632,12.977055 0.126598632,12.077055 0.0265986324,11.277055 C-0.0734013676,10.877055 0.126598632,10.577055 0.326598632,10.277055 L3.92659863,6.67705502 C4.62659863,5.97705502 5.72659863,5.97705502 6.42659863,6.67705502 L8.92659863,9.17705502 C9.62659863,9.87705502 9.62659863,10.977055 8.92659863,11.677055 L7.12659863,13.477055 L7.22659863,13.777055 C7.32659863,14.177055 7.62659863,14.677055 7.92659863,15.277055 C8.52659863,16.577055 9.32659863,17.677055 10.3265986,18.777055 C11.3265986,19.577055 12.3265986,20.277055 13.4265986,20.877055 C14.4265986,21.377055 15.3265986,21.777055 15.7265986,21.977055 L17.5265986,20.177055 C18.2265986,19.477055 19.3265986,19.477055 20.0265986,20.177055 L22.5265986,22.577055 Z M20.3883496,14.06918 C20.2387016,13.92124 20.1536616,13.720249 20.1520166,13.510608 C20.1508696,12.46109 19.7313896,11.452167 18.9864576,10.707235 C18.2415256,9.96230302 17.2326036,9.54282302 16.1830846,9.54167702 C15.8961906,9.54457902 15.6283846,9.39418802 15.4805486,9.14715502 C15.3327126,8.90012202 15.3273056,8.59397702 15.4663646,8.34404202 C15.6054236,8.09410602 15.8678216,7.93835202 16.1547166,7.93545002 C17.6248136,7.93646002 19.0382196,8.52377902 20.0816756,9.56723402 C21.1251306,10.610689 21.7124496,12.024096 21.7134596,13.494193 C21.7159906,13.814618 21.5244146,14.103264 21.2287416,14.224516 C20.9330676,14.345769 20.5920696,14.275526 20.3659586,14.046789 L20.3883496,14.06918 Z M24.6327916,14.014461 L24.6495856,14.031255 C24.4392966,14.031323 24.2370536,13.947404 24.0877926,13.798143 C23.9385306,13.648881 23.8546116,13.446638 23.8546796,13.236349 C23.8225716,8.87222502 20.2753426,5.32499702 15.9112196,5.29288802 C15.4754006,5.29278402 15.1195186,4.93938902 15.1163346,4.50355902 C15.1131496,4.06772902 15.4638686,3.71450402 15.8996866,3.71460902 C21.1252146,3.75986702 25.3709076,8.00555902 25.4161656,13.231088 C25.4165116,13.664831 25.0665356,14.014807 24.6327916,14.014461 Z M28.5769416,13.888125 C28.3666516,13.888193 28.1644096,13.804274 28.0151476,13.655012 C27.8658856,13.505751 27.7819666,13.303508 27.7820356,13.093219 C27.7430556,6.76380702 22.5965076,1.61725902 16.2670956,1.57827902 C15.9851716,1.57821202 15.7235626,1.42774002 15.5808166,1.18354602 C15.4380696,0.939351022 15.4358716,0.638533022 15.5750496,0.394406022 C15.7142286,0.150279022 15.9736386,-6.6977616e-05 16.2555636,2.2383972e-08 C23.4593776,0.0430720224 29.3172426,5.90093702 29.3603146,13.104751 C29.3606606,13.538495 29.0106846,13.888471 28.5769416,13.888125 Z' id='path-1'%3E%3C/path%3E %3C/defs%3E %3Cg id='icona_chiamata' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E %3Cg id='icon-/-48-/-talk-to-us' transform='translate(1.000000, 2.000000)'%3E %3Cg id='Icon/Color/Red'%3E %3Cmask id='mask-2' fill='white'%3E %3Cuse xlink:href='%23path-1'%3E%3C/use%3E %3C/mask%3E %3Cuse id='Mask' fill='%23ea1c0a' fill-rule='nonzero' xlink:href='%23path-1'%3E%3C/use%3E %3C/g%3E %3C/g%3E %3C/g%3E %3C/svg%3E") no-repeat center;
}
.left-red-arrow {
  width: 52px;
  height: 52px;
  background-size: contain;
  background: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E %3Csvg width='52px' height='52px' viewBox='0 0 52 52' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E %3Ctitle%3EFreccia SX rossa%3C/title%3E %3Cdesc%3ECreated with Sketch.%3C/desc%3E %3Cg id='Freccia-SX-rossa' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E %3Cg id='EON_Icon_button-Copy-6'%3E %3Cpath d='M8.41491242,1.67250109 C4.99456854,2.32324671 2.32318817,4.99462047 1.67244094,8.4149559 C-0.557480315,20.1384043 -0.557480315,31.8615957 1.67244094,43.5850441 C2.32318817,47.0053795 4.99456854,49.6767533 8.41491242,50.3274989 C14.2765226,51.4423282 20.1383898,52 26,52 C31.8616102,52 37.7234774,51.4423282 43.5850876,50.3274989 C47.0054315,49.6767533 49.6768118,47.0053795 50.3275591,43.5850441 C52.5574803,31.8615957 52.5574803,20.1384043 50.3275591,8.4149559 C49.6768118,4.99462047 47.0054315,2.32324671 43.5850876,1.67250109 C37.7234774,0.557414659 31.8616102,0 26,0 C20.1383898,0 14.2765226,0.557414659 8.41491242,1.67250109 Z' id='Fill-281-Copy-4' fill='%23EA1C0A'%3E%3C/path%3E %3Cpath d='M28.6366252,33 C26.0006252,31.256 23.4906252,29.107 21.2056252,26.576 C20.9316252,26.274 20.9316252,25.767 21.2046252,25.465 C23.4996252,22.915 25.9856252,20.754 28.6366252,19' id='icn_left_small' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E %3C/g%3E %3C/g%3E %3C/svg%3E") no-repeat center;
}
.left-red-arrow.disabled {
  width: 52px;
  height: 52px;
  background-size: contain;
  background: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E %3Csvg width='52px' height='52px' viewBox='0 0 52 52' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E %3Ctitle%3EFreccia SX grigia%3C/title%3E %3Cdesc%3ECreated with Sketch.%3C/desc%3E %3Cg id='Freccia-SX-grigia' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E %3Cg id='EON_Icon_button-Copy-6'%3E %3Cpath d='M8.41491242,1.67250109 C4.99456854,2.32324671 2.32318817,4.99462047 1.67244094,8.4149559 C-0.557480315,20.1384043 -0.557480315,31.8615957 1.67244094,43.5850441 C2.32318817,47.0053795 4.99456854,49.6767533 8.41491242,50.3274989 C14.2765226,51.4423282 20.1383898,52 26,52 C31.8616102,52 37.7234774,51.4423282 43.5850876,50.3274989 C47.0054315,49.6767533 49.6768118,47.0053795 50.3275591,43.5850441 C52.5574803,31.8615957 52.5574803,20.1384043 50.3275591,8.4149559 C49.6768118,4.99462047 47.0054315,2.32324671 43.5850876,1.67250109 C37.7234774,0.557414659 31.8616102,0 26,0 C20.1383898,0 14.2765226,0.557414659 8.41491242,1.67250109 Z' id='Fill-281-Copy-4' fill='%23E8E8E8'%3E%3C/path%3E %3Cpath d='M28.6366252,33 C26.0006252,31.256 23.4906252,29.107 21.2056252,26.576 C20.9316252,26.274 20.9316252,25.767 21.2046252,25.465 C23.4996252,22.915 25.9856252,20.754 28.6366252,19' id='icn_left_small' stroke='%23BFBFBF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E %3C/g%3E %3C/g%3E %3C/svg%3E") no-repeat center;
}
.right-red-arrow {
  width: 52px;
  height: 52px;
  background-size: contain;
  background: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E %3Csvg width='52px' height='52px' viewBox='0 0 52 52' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E %3Ctitle%3EFreccia DX rossa%3C/title%3E %3Cdesc%3ECreated with Sketch.%3C/desc%3E %3Cg id='Freccia-DX-rossa' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E %3Cg id='EON_Icon_button-Copy-8'%3E %3Cpath d='M8.41491242,1.67250109 C4.99456854,2.32324671 2.32318817,4.99462047 1.67244094,8.4149559 C-0.557480315,20.1384043 -0.557480315,31.8615957 1.67244094,43.5850441 C2.32318817,47.0053795 4.99456854,49.6767533 8.41491242,50.3274989 C14.2765226,51.4423282 20.1383898,52 26,52 C31.8616102,52 37.7234774,51.4423282 43.5850876,50.3274989 C47.0054315,49.6767533 49.6768118,47.0053795 50.3275591,43.5850441 C52.5574803,31.8615957 52.5574803,20.1384043 50.3275591,8.4149559 C49.6768118,4.99462047 47.0054315,2.32324671 43.5850876,1.67250109 C37.7234774,0.557414659 31.8616102,0 26,0 C20.1383898,0 14.2765226,0.557414659 8.41491242,1.67250109 Z' id='Fill-281-Copy-4' fill='%23EA1B0A'%3E%3C/path%3E %3Cpath d='M23,19 C25.635,20.745 28.146,22.893 30.431,25.425 C30.705,25.727 30.705,26.234 30.432,26.536 C28.136,29.085 25.651,31.247 23,33' id='icn_right_small' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E %3C/g%3E %3C/g%3E %3C/svg%3E") no-repeat center;
}
.right-red-arrow.disabled {
  width: 52px;
  height: 52px;
  background-size: contain;
  background: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E %3Csvg width='52px' height='52px' viewBox='0 0 52 52' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E %3Ctitle%3EFreccia DX grigia%3C/title%3E %3Cdesc%3ECreated with Sketch.%3C/desc%3E %3Cg id='Freccia-DX-grigia' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E %3Cg id='EON_Icon_button-Copy-8'%3E %3Cpath d='M8.41491242,1.67250109 C4.99456854,2.32324671 2.32318817,4.99462047 1.67244094,8.4149559 C-0.557480315,20.1384043 -0.557480315,31.8615957 1.67244094,43.5850441 C2.32318817,47.0053795 4.99456854,49.6767533 8.41491242,50.3274989 C14.2765226,51.4423282 20.1383898,52 26,52 C31.8616102,52 37.7234774,51.4423282 43.5850876,50.3274989 C47.0054315,49.6767533 49.6768118,47.0053795 50.3275591,43.5850441 C52.5574803,31.8615957 52.5574803,20.1384043 50.3275591,8.4149559 C49.6768118,4.99462047 47.0054315,2.32324671 43.5850876,1.67250109 C37.7234774,0.557414659 31.8616102,0 26,0 C20.1383898,0 14.2765226,0.557414659 8.41491242,1.67250109 Z' id='Fill-281-Copy-4' fill='%23E8E8E8'%3E%3C/path%3E %3Cpath d='M23,19 C25.635,20.745 28.146,22.893 30.431,25.425 C30.705,25.727 30.705,26.234 30.432,26.536 C28.136,29.085 25.651,31.247 23,33' id='icn_right_small' stroke='%23BFBFBF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E %3C/g%3E %3C/g%3E %3C/svg%3E") no-repeat center;
}
.eon-left-red-icon {
  width: 30px;
  height: 30px;
  background-size: contain;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='14' height='14' version='1.1'%3E%3Crect id='backgroundrect' width='100%25' height='100%25' x='0' y='0' fill='none' stroke='none'/%3E %3Ctitle%3EArrow%3C/title%3E %3Cdesc%3ECreated with Sketch.%3C/desc%3E %3Cdefs/%3E %3Cg class='currentLayer' style=''%3E%3Ctitle%3ELayer 1%3C/title%3E%3Cg id='Form-manutenzione' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' stroke-linecap='round' class='' transform='rotate(-180 7,7) '%3E %3Cg id='Manutenzione-caldaia-Copy' stroke='%23FD0000' stroke-width='2'%3E %3Cg id='Accettazione-contratto'%3E %3Cg id='Arrow'%3E %3Cpath d='M1,7 L13,7 ' id='Stroke-84'/%3E %3Cpath d='M7.352941179999988,1 C9.30752941,2.502999999999929 11.1392941,4.355499999999893 12.831999999999994,6.54099999999994 C13.033176499999996,6.798999999999978 13.033176499999996,7.234750000000076 12.831294100000008,7.49350000000004 C11.147058799999996,9.663250000000062 9.29552941,11.504500000000007 7.352941179999988,13 ' id='Stroke-85' stroke-linejoin='round'/%3E %3C/g%3E %3C/g%3E %3C/g%3E %3C/g%3E%3C/g%3E%3C/svg%3E") no-repeat center;
}
.eon-left-white-icon {
  width: 30px;
  height: 30px;
  background-size: contain;
  background: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M14.8201 7.21098C15.0295 7.04826 15.295 6.97533 15.5582 7.00821C15.8214 7.0411 16.0608 7.17712 16.2236 7.38634C16.3864 7.59557 16.4594 7.86086 16.4265 8.12386C16.3936 8.38686 16.2575 8.62602 16.0481 8.78874C13.2501 10.966 11.0081 13.0484 9.3661 14.9989H24.5001C24.755 14.9991 25.0001 15.0967 25.1855 15.2715C25.3708 15.4463 25.4823 15.6853 25.4973 15.9395C25.5122 16.1938 25.4294 16.4441 25.2658 16.6394C25.1022 16.8347 24.8702 16.9602 24.6171 16.9903L24.5001 16.9973H9.3721C11.0151 18.9458 13.2541 21.0261 16.0491 23.1994C16.156 23.2788 16.2459 23.3787 16.3136 23.4933C16.3813 23.6079 16.4254 23.7349 16.4433 23.8667C16.4613 23.9986 16.4527 24.1327 16.418 24.2612C16.3834 24.3896 16.3234 24.5099 16.2416 24.6149C16.1598 24.72 16.0579 24.8076 15.9417 24.8727C15.8256 24.9378 15.6976 24.9791 15.5653 24.9941C15.433 25.0091 15.299 24.9976 15.1712 24.9602C15.0434 24.9227 14.9244 24.8602 14.8211 24.7762C11.3161 22.0513 8.6301 19.4394 6.8381 17.0153C6.61829 16.7201 6.49958 16.362 6.49958 15.9941C6.49958 15.6262 6.61829 15.268 6.8381 14.9729C8.6281 12.5498 11.3141 9.93684 14.8201 7.21198V7.21098Z' fill='white'/%3E%3C/svg%3E") no-repeat center;
}
.eon-left-turquoise-icon {
  width: 30px;
  height: 30px;
  background-size: contain;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='14' height='14' version='1.1'%3E%3Crect id='backgroundrect' width='100%25' height='100%25' x='0' y='0' fill='none' stroke='none'/%3E %3Ctitle%3EArrow%3C/title%3E %3Cdesc%3ECreated with Sketch.%3C/desc%3E %3Cdefs/%3E %3Cg class='currentLayer' style=''%3E%3Ctitle%3ELayer 1%3C/title%3E%3Cg id='Form-manutenzione' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' stroke-linecap='round' class='' transform='rotate(-180 7,7) '%3E %3Cg id='Manutenzione-caldaia-Copy' stroke='%231EA2B1' stroke-width='2'%3E %3Cg id='Accettazione-contratto'%3E %3Cg id='Arrow'%3E %3Cpath d='M1,7 L13,7 ' id='Stroke-84'/%3E %3Cpath d='M7.352941179999988,1 C9.30752941,2.502999999999929 11.1392941,4.355499999999893 12.831999999999994,6.54099999999994 C13.033176499999996,6.798999999999978 13.033176499999996,7.234750000000076 12.831294100000008,7.49350000000004 C11.147058799999996,9.663250000000062 9.29552941,11.504500000000007 7.352941179999988,13 ' id='Stroke-85' stroke-linejoin='round'/%3E %3C/g%3E %3C/g%3E %3C/g%3E %3C/g%3E%3C/g%3E%3C/svg%3E") no-repeat center;
}
.eon-left-limeyellow-icon {
  width: 30px;
  height: 30px;
  background-size: contain;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='14' height='14' version='1.1'%3E%3Crect id='backgroundrect' width='100%25' height='100%25' x='0' y='0' fill='none' stroke='none'/%3E %3Ctitle%3EArrow%3C/title%3E %3Cdesc%3ECreated with Sketch.%3C/desc%3E %3Cdefs/%3E %3Cg class='currentLayer' style=''%3E%3Ctitle%3ELayer 1%3C/title%3E%3Cg id='Form-manutenzione' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' stroke-linecap='round' class='' transform='rotate(-180 7,7) '%3E %3Cg id='Manutenzione-caldaia-Copy' stroke='%23E3E000' stroke-width='2'%3E %3Cg id='Accettazione-contratto'%3E %3Cg id='Arrow'%3E %3Cpath d='M1,7 L13,7 ' id='Stroke-84'/%3E %3Cpath d='M7.352941179999988,1 C9.30752941,2.502999999999929 11.1392941,4.355499999999893 12.831999999999994,6.54099999999994 C13.033176499999996,6.798999999999978 13.033176499999996,7.234750000000076 12.831294100000008,7.49350000000004 C11.147058799999996,9.663250000000062 9.29552941,11.504500000000007 7.352941179999988,13 ' id='Stroke-85' stroke-linejoin='round'/%3E %3C/g%3E %3C/g%3E %3C/g%3E %3C/g%3E%3C/g%3E%3C/svg%3E") no-repeat center;
}
.eon-right-red-icon {
  width: 15px;
  height: 15px;
  background-size: contain;
  background: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E %3Csvg width='14px' height='14px' viewBox='0 0 14 14' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E %3Ctitle%3EArrow%3C/title%3E %3Cdesc%3ECreated with Sketch.%3C/desc%3E %3Cdefs%3E%3C/defs%3E %3Cg id='Form-manutenzione' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' stroke-linecap='round'%3E %3Cg id='Manutenzione-caldaia-Copy' transform='translate(-150.000000, -1687.000000)' stroke='%23FD0000' stroke-width='2'%3E %3Cg id='Accettazione-contratto' transform='translate(150.000000, 1555.000000)'%3E %3Cg id='Arrow' transform='translate(1.000000, 133.000000)'%3E %3Cpath d='M0,6 L12,6' id='Stroke-84'%3E%3C/path%3E %3Cpath d='M6.35294118,0 C8.30752941,1.503 10.1392941,3.3555 11.832,5.541 C12.0331765,5.799 12.0331765,6.23475 11.8312941,6.4935 C10.1470588,8.66325 8.29552941,10.5045 6.35294118,12' id='Stroke-85' stroke-linejoin='round'%3E%3C/path%3E %3C/g%3E %3C/g%3E %3C/g%3E %3C/g%3E %3C/svg%3E") no-repeat center;
}
.eon-right-black-icon {
  width: 15px;
  height: 15px;
  background-size: contain;
  background: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E %3Csvg width='14px' height='14px' viewBox='0 0 14 14' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E %3Ctitle%3EArrow%3C/title%3E %3Cdesc%3ECreated with Sketch.%3C/desc%3E %3Cdefs%3E%3C/defs%3E %3Cg id='Form-manutenzione' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' stroke-linecap='round'%3E %3Cg id='Manutenzione-caldaia-Copy' transform='translate(-150.000000, -1687.000000)' stroke='%23000000' stroke-width='2'%3E %3Cg id='Accettazione-contratto' transform='translate(150.000000, 1555.000000)'%3E %3Cg id='Arrow' transform='translate(1.000000, 133.000000)'%3E %3Cpath d='M0,6 L12,6' id='Stroke-84'%3E%3C/path%3E %3Cpath d='M6.35294118,0 C8.30752941,1.503 10.1392941,3.3555 11.832,5.541 C12.0331765,5.799 12.0331765,6.23475 11.8312941,6.4935 C10.1470588,8.66325 8.29552941,10.5045 6.35294118,12' id='Stroke-85' stroke-linejoin='round'%3E%3C/path%3E %3C/g%3E %3C/g%3E %3C/g%3E %3C/g%3E %3C/svg%3E") no-repeat center;
}
.eon-check-circle-turquoise-icon {
  min-width: 30px;
  height: 30px;
  background-size: contain;
  background: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E %3Csvg width='26px' height='26px' viewBox='0 0 26 26' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E %3Ctitle%3ECheck%3C/title%3E %3Cdesc%3ECreated with Sketch.%3C/desc%3E %3Cdefs%3E %3Cpath d='M13,0 C15.079,0 17.066,0.477 18.906,1.416 C19.397,1.667 19.592,2.27 19.341,2.762 C19.09,3.253 18.489,3.449 17.996,3.197 C16.44,2.403 14.76,2 13,2 C6.935,2 2,6.935 2,13 C2,19.065 6.935,24 13,24 C19.065,24 24,19.065 24,13 C24,11.386 23.659,9.831 22.985,8.378 C22.753,7.877 22.971,7.282 23.472,7.05 C23.974,6.818 24.568,7.037 24.8,7.537 C25.596,9.256 26,11.094 26,13 C26,20.168 20.168,26 13,26 C5.832,26 0,20.168 0,13 C0,5.832 5.832,0 13,0 Z M22.7718,2.9931 C23.2218,3.3131 23.3268,3.9371 23.0068,4.3871 L13.5518,17.6801 C13.3568,17.9541 13.0488,18.1001 12.7358,18.1001 C12.5358,18.1001 12.3328,18.0401 12.1568,17.9151 L7.2518,14.4271 C6.8018,14.1071 6.6958,13.4821 7.0168,13.0321 C7.3358,12.5821 7.9608,12.4761 8.4108,12.7971 L12.5018,15.7051 L21.3778,3.2281 C21.6978,2.7781 22.3218,2.6721 22.7718,2.9931 Z' id='path-1'%3E%3C/path%3E %3C/defs%3E %3Cg id='Check' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E %3Cg id='Icon/Color/Red'%3E %3Cmask id='mask-2' fill='white'%3E %3Cuse xlink:href='%23path-1'%3E%3C/use%3E %3C/mask%3E %3Cuse id='Mask' fill='%232B91A3' xlink:href='%23path-1'%3E%3C/use%3E %3C/g%3E %3C/g%3E %3C/svg%3E") no-repeat center;
}
.eon-check-circle-white-icon {
  min-width: 30px;
  height: 30px;
  background-size: contain;
  background: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E %3Csvg width='26px' height='26px' viewBox='0 0 26 26' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E %3Ctitle%3ECheck%3C/title%3E %3Cdesc%3ECreated with Sketch.%3C/desc%3E %3Cdefs%3E %3Cpath d='M13,0 C15.079,0 17.066,0.477 18.906,1.416 C19.397,1.667 19.592,2.27 19.341,2.762 C19.09,3.253 18.489,3.449 17.996,3.197 C16.44,2.403 14.76,2 13,2 C6.935,2 2,6.935 2,13 C2,19.065 6.935,24 13,24 C19.065,24 24,19.065 24,13 C24,11.386 23.659,9.831 22.985,8.378 C22.753,7.877 22.971,7.282 23.472,7.05 C23.974,6.818 24.568,7.037 24.8,7.537 C25.596,9.256 26,11.094 26,13 C26,20.168 20.168,26 13,26 C5.832,26 0,20.168 0,13 C0,5.832 5.832,0 13,0 Z M22.7718,2.9931 C23.2218,3.3131 23.3268,3.9371 23.0068,4.3871 L13.5518,17.6801 C13.3568,17.9541 13.0488,18.1001 12.7358,18.1001 C12.5358,18.1001 12.3328,18.0401 12.1568,17.9151 L7.2518,14.4271 C6.8018,14.1071 6.6958,13.4821 7.0168,13.0321 C7.3358,12.5821 7.9608,12.4761 8.4108,12.7971 L12.5018,15.7051 L21.3778,3.2281 C21.6978,2.7781 22.3218,2.6721 22.7718,2.9931 Z' id='path-1'%3E%3C/path%3E %3C/defs%3E %3Cg id='Check' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E %3Cg id='Icon/Color/Red'%3E %3Cmask id='mask-2' fill='white'%3E %3Cuse xlink:href='%23path-1'%3E%3C/use%3E %3C/mask%3E %3Cuse id='Mask' fill='white' xlink:href='%23path-1'%3E%3C/use%3E %3C/g%3E %3C/g%3E %3C/svg%3E") no-repeat center;
}
.eon-check-turquoise-icon {
  background: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E %3Csvg width='19px' height='16px' viewBox='0 0 19 16' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E %3C!-- Generator: Sketch 55.2 (78181) - https://sketchapp.com --%3E %3Ctitle%3ECheck%3C/title%3E %3Cdesc%3ECreated with Sketch.%3C/desc%3E %3Cdefs%3E %3Cpath d='M8.34939163,15.3032329 C8.14939163,15.3032329 7.94639163,15.243232 7.77039163,15.118232 L0.420391628,9.89123198 C-0.0297204427,9.57090683 -0.134933526,8.94634405 0.185391628,8.49623198 C0.505716783,8.04611991 1.13027956,7.94090683 1.58039163,8.26123198 L8.11539163,12.908232 L16.9913916,0.431231981 C17.1964642,0.134684273 17.545294,-0.0285099857 17.9043636,0.00411308409 C18.2634333,0.0367361539 18.5771403,0.260124812 18.7254108,0.588775304 C18.8736814,0.917425796 18.8335555,1.30044602 18.6203916,1.59123198 L9.16539163,14.883232 C8.97748565,15.1471487 8.67336768,15.30368 8.34939163,15.3032329 L8.34939163,15.3032329 Z' id='path-1'%3E%3C/path%3E %3C/defs%3E %3Cg id='Check' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E %3Cmask id='mask-2' fill='white'%3E %3Cuse xlink:href='%23path-1'%3E%3C/use%3E %3C/mask%3E %3Cuse id='Mask' fill='%232B91A3' fill-rule='nonzero' xlink:href='%23path-1'%3E%3C/use%3E %3C/g%3E %3C/svg%3E") no-repeat center;
  width: 20px;
  height: 20px;
  background-size: contain;
}
.eon-alert-icon {
  width: 30px;
  height: 30px;
  background-size: contain;
  background: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E %3Csvg width='23px' height='22px' viewBox='0 0 23 22' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E %3Ctitle%3EAllert%3C/title%3E %3Cdesc%3ECreated with Sketch.%3C/desc%3E %3Cdefs%3E %3Cpath d='M22.8521483,18.3196243 L13.268196,1.00343857 C12.9072086,0.382632045 12.2387362,0 11.5151515,0 C10.7915669,0 10.1230944,0.382632045 9.76210699,1.00343857 L0.178154751,18.3196243 C-0.0982750904,18.91092 -0.0506376195,19.6010032 0.304478907,20.149574 C0.659595434,20.6981448 1.27303982,21.0292762 1.93119928,21.027668 L21.0991037,21.027668 C21.7572632,21.0292762 22.3707076,20.6981448 22.7258241,20.149574 C23.0809406,19.6010032 23.1285781,18.91092 22.8521483,18.3196243 Z M10.5519402,5.72120673 C10.5519402,5.19458419 10.9831846,4.76767227 11.5151515,4.76767227 C12.0471184,4.76767227 12.4783628,5.19458419 12.4783628,5.72120673 L12.4783628,12.3959479 C12.4783628,12.9225704 12.0471184,13.3494824 11.5151515,13.3494824 C10.9831846,13.3494824 10.5519402,12.9225704 10.5519402,12.3959479 L10.5519402,5.72120673 Z M11.5151515,18.1171546 C10.7172012,18.1171546 10.0703346,17.4767868 10.0703346,16.686853 C10.0703346,15.8969191 10.7172012,15.2565513 11.5151515,15.2565513 C12.3131019,15.2565513 12.9599684,15.8969191 12.9599684,16.686853 C12.9599684,17.4767868 12.3131019,18.1171546 11.5151515,18.1171546 Z' id='path-1'%3E%3C/path%3E %3C/defs%3E %3Cg id='Allert' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E %3Cg id='ButtonColor'%3E %3Cmask id='mask-2' fill='white'%3E %3Cuse xlink:href='%23path-1'%3E%3C/use%3E %3C/mask%3E %3Cuse id='Mask' fill='%23D51607' fill-rule='nonzero' xlink:href='%23path-1'%3E%3C/use%3E %3C/g%3E %3C/g%3E %3C/svg%3E") no-repeat center;
}
.eon-pencil-icon {
  width: 30px;
  height: 30px;
  background-size: contain;
  background: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E %3Csvg width='25px' height='28px' viewBox='0 0 25 28' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E %3Ctitle%3EMatita%3C/title%3E %3Cdesc%3ECreated with Sketch.%3C/desc%3E %3Cg id='Matita' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E %3Cg id='Group-4' fill='%23EA1C0A' fill-rule='nonzero'%3E %3Cpath d='M23.1,25.3852961 L0.9,25.3852961 C0.4,25.3852961 0,25.8852961 0,26.3852961 C0,26.8852961 0.4,27.3852961 0.9,27.3852961 L23.2,27.3852961 C23.7,27.3852961 24.1,26.8852961 24.1,26.3852961 C24,25.8852961 23.6,25.3852961 23.1,25.3852961 Z M18.6,1.78529615 L16,0.285296149 C15,-0.314703851 13.8,0.0852961486 13.3,0.985296149 L4.3,16.5852961 C4.1,16.8852961 4,17.2852961 4,17.5852961 L4,22.0852961 C4,22.5852961 4.3,22.9852961 4.7,23.1852961 C4.9,23.2852961 5.1,23.2852961 5.3,23.3852961 C5.5,23.3852961 5.8,23.2852961 6,23.1852961 L9.7,20.7852961 C9.9,20.5852961 10.2,20.3852961 10.3,20.1852961 L19.3,4.58529615 C19.9,3.58529615 19.5,2.28529615 18.6,1.78529615 Z M8.6,19.0852961 L6,17.5852961 L13,5.48529615 L15.6,6.98529615 L8.6,19.0852961 Z M16.6,5.28529615 L14,3.78529615 L15,1.98529615 L17.6,3.48529615 L16.6,5.28529615 L16.6,5.28529615 Z' id='Shape'%3E%3C/path%3E %3C/g%3E %3C/g%3E %3C/svg%3E") no-repeat center;
}
.eon-document-red-icon {
  width: 30px;
  height: 30px;
  background-size: contain;
  background: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E %3Csvg width='30px' height='30px' viewBox='0 0 30 30' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E %3Ctitle%3EArtboard%3C/title%3E %3Cdesc%3ECreated with Sketch.%3C/desc%3E %3Cg id='Artboard' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E %3Cimage id='bolletta-pdf-luce-rosso' x='6' y='5' width='19' height='20' xlink:href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFIAAABaCAYAAAArfwH2AAAAAXNSR0IArs4c6QAAFHNJREFUeAHtXQmUXFWZvve+V8ur7q7udCedTlVlAwIeoojBRGRRISjLSAZPZHFggkeE4TAzhmFk0RmdCKIwOoDjgUEHHAITUZQBBmZY3MJBYSASJYgihCR0V3WSTnqp6ura373z/a/rvX5dvVVXdVcvcs95/V7d9b/f/e9///vfpTkbx6VCxlIl1FkFJjZypdYwzhciOh8nSc2DNJQomYoVJD93QWfqNzUnoFjgqKB0A0Bd8SuEpi7VGF9qIrKaKQrLKJfALCj2glepi4zOdHsZSaY8ygggE6HAeeC8Ww2hjs4DvcKUFzk9GfpRk7RSP+NSvyjY2X94ekoZO1fhDoqH/X/JhbrfBxDTcwhEqkMW9Po5X6944bbOEAu461WLb4cjwYnnAsRtgvMGs6QfE9oaYjqRa0HZGGUQDUTfWD3Fiwhggjt/Ek1tvgBRx8hmyr0tbA5HjLBHsZ/7BT+aWtbtfIgBPyJoL54+PDUjzk2H860scb0Erbrc8XN9UKNTpfKMf6EpOnCLK2haP3XgJhKK/1VAMKs726URMSTEc0ptNyW/vaCxXy/sSO2HfwnUdoraveNLjM2axu+QoxRJfkS7h6kb4xEj3RhNf2uUaFPupafDRkhw9mkaWNyOQDSZ2tbHPJ9b2pnocYfN+DcRN46jqgBMj2D8q4nFvreCB7NPjBN9SoJEjquzQNdSt8zxIesCk9v7ZfrqpdFZBiJVW1lMNy4AVB+ds3rNI/61Z4n/1HEjT0Gg4FJsdAs9kjEgIluQ6rZQJ6u5GlFNnYhRqVvbjnqZxvlKj8bv6wsF1tj+0/EWGKmHFVAEMpYv6C9NR4HTkWcRvDSU8j8gf+UGMwcwoRYdAe68t3OJf/l0lE95Aje+iGSK7SAvybN3cddAl+03298WcJznmFA3mkr92FtCMOnEAPL4eo1v7W+rX1QSPCU/deTibkArU5RLg58b3zEL+wVoPL7NH+EesdArlSePdEKYSZb3Hmw4kDw0ZsIpDlBKoS6ir79/4ErRYIR8gp/sVuVyKA+c+eGULr8Lhf1iiK3UVJJAPbki9yZjvkTIf9kJ4cBjui6eAxfsMIR4vk6IF5TSdjBd/iwRDnynJ2ScUlEBFSTiaMilCdaTlOpigPgq6cBuR8DC77x6FrijI8IMd1i13xUBie6xui0SeMwjxD3QP88BfX7om7/ul+rxAaWeVIq1ow5HNWjsCq/gTyTCxr90LWL11RJbbvrQ/szbqpC/LCdZB810bEddDHKUaYJ9tkEF/uGhQVXZDq7qPWkge5b6T+W6+XC9YGcWlHp9QKprMMKf0BRNrw3GUhsao6lzno6lj5VCfSwu5T3U0+sEv8bvDfxH/5H1rVVRO4nEjQfyOzg3r4CM6oV8dByBiYf7BPv8mWHjc05AlR+TArInUnecV/GthuDHJArq+0Lw9Y2x9O3NJaYrmuMG29O/bIpmLs8ztQHC/jcNGv+kypp31dKgUB/NPoWyr4f8HHDr8NYAoJjPw/nN8ZBxUZUYWsnLBnLvCuYXTH4FMnDlgGRPmWn/VXUdqc6JiFgQzWxX+cKmASnbDc43oktdMlGaqQxviab+Hd35H8GFeRdj2kYPQxP8zr6lvo9VW2bZQC7I+08KcHY2BHknk+bVzb298XILbziY+12Ws+vyEJ6mUF+MB4PN5aadinjBWPpbsBjdRJV1VxgTD7JqNQulbY23BdZWU5Y73zHzIZnCGf+4DtFC8+9gZ/aPY0YeIyCl0v8N5fhZqCDLWX2+ag4Yo5hRvcGJ6vZY6maTy+943GyJ2DT7gcbRJnR2X2Kh7+hRMyjDsywg2WoYUzg/jdQH0PFwGfmOiLI0ytJojUcg5DH88PUjIkyzxxboxg1m5pqMVA+UqkWkY3oYOxbC6z9pnaoSUsoDspcmBmwllO0ECoxWUhCl4YLvkdQYSq2sNI9x0/HxJxEcSng/S/8dVLVf0NKE26FupLCvNbn4pmpiTe6wcr5pZjOhO2gyHuAcVimVGeAcUFTmNMkKJiqArNyDaGWZjZZKWSZUNp5+GImxnv4l5l+nNP0HYIrjbIMNVSqDP1hmuaA/4I+r+sxmjl40WjGj+ZUF5GKDmYm87MaK4jIMNMMU6942/wpNiOOZGrIVEFZS4+mC3/+rlt09Cbtg6JtNAfB2SsoptW8SCOhafsXVrZhNXQf5M2ZPI2JghcsLpppJDSp1JL68mrg8IY2UAveiLpT9hK4sINk+qA4RvhOyZYVknGx7b9g5g0HP1DV2N9gV1nRrjs4NjEygokeks6cj3isUdwvVlbN1EniDuNfIb6pcsaYwPfJjxkRwWGHKmuHY3DgsCD+s2Q/nm5MRY4+Kpr9dDphllYuMoLXIx6g/gvE+456nClP8DhaXbwPE/0Iw0daTkWwrk+q7GCUde+Z1ISOMweailJImIH0c8abc0QhMHFXOMxaIRBRxKgGDrC6xBlrynMCVx5HIJMv4zzFD2I0FspOUMv4Ga3XfoLwbutLP4/V8ImKsg/T8KARgFPx7fUNXqstuSRCkx5n6cqMQbQlTPRFcnPot66DUs9eBZnLj4T0Yo/i3LI6kuC2xdFRJ8TUUkPNyfn3fksAJ5E9gWYBx7ogcqQsaU4q0YKgPGefXaWITOLVTMvEl/jIW+apznHrHVD6gtypXNkdSKS93DjywJhz4UFBjn0Zf/zy8PuWU7h5sSBAWXXJFXZvKq2vRtN4MU/+8IAZurNqpw3nF/4BWdBqvqiwVI3v2coiegNP6k8xwUkCeBjl8WBVuTUj9z1Dweclw3XvrYwPWYDJWuWbWPKNOF++Dlej/DsfSd48VbzL+jbHMA4hPz5S4vbAjtOSNn0KPPJlUoEpc2V3bzrylM/cGdn89WK8JP6aLG21/yEaHBKUNdXOuiU9SHAR/bxWJ2lnofFikqJasSWcATpRCihcJNfSrNY7yKxWJLJKZTOQlbTzg1NIYoNZgRC+YSnuJwuerm1TXtkHQuHkwJXlB5+IUGEefjsOCCgAXILwe3LqKe9VDUIyzCwsKBnIexsjSzQumo5jb+cynd0VASqWimDi/jtlBCAL6A9iOAxw5ejo7zOGgbL4PXRlTagRw1ouPV5nHC7NbZj5hN6wuFQFJZrR42Lg8z/nZNAGnHK0/1K/JAb3BN+MFJTFYy0dgSZ/SaeFgAbPnb0VA2uRDKH4W35j7k0lvyJF8BJQS0+psnomOTMH3Q6ifQxHm4VfFQKLX1sHQG4J+eBjAvQBsHJ2OQASP1kG1PGkQUNM/D7EbVqWKgeQFnuTEi0xhLUS1AzSy3FsOEpNAbQbIxJmm4IWBYtC8fVUMZFamX+PMeAxK7J97uLhiNIRSUpkwaPywaX+mfbTw+eRXMZCth1iy54j0pQM543QYAgOls3tSKvPcPBRrzG5fHRuad88n8Nx1qRhIyqR5D4NKk37EneGf6vekZzZ/qkBNVO93gJwIoTLD3wGyTKAmivYOkBMhVGb4O0ACqN4F1lYga5Zbgpti59vbhEpCSn5WNWqX5FX1Tzo4ZUi+GItY0ONr42g2ofUq7O/i9W4k6RvrnfU9/2as6wvxHCwyh7DrLgrC3NEcImccyGRr3WLllRfCUvQpGIyOMAXz1rKbDBoJLKt0HeymjivOd4/1ePiT5O1TPJcMG9GEYj8A+A/SGpYTGR8zCmTfMt9HuZQ3YZ/iB0ihJ+JrxopuFIplu3C0Q7G5t7h9BYTB0tWqC7ZGU2xTPOy7oTGW/R87Yi0b3y7TeveEA1dqUntUB4i0Dk0TdQJypp5hxLl+uOmhxiZasRXw3TrXfoQjeliWHnQzAmRimXEydm3cDDNbgAiba45EAIAzfJzfdDjsP53or3nXfvMoiJsM+zpt8HTLJOrStHeRcIW8nFWOTFhEH+3ksEmzdq+h22ON/596m5p21hzI1qRvvdD4B907BIhIenJSvYIl8ZdwBUQSBJPXjDsQgR1N2Iwn2FrQtIaIssGkpVvYZD8kA9kzaw4k1/gGHFvV3dxI8gUnJB7iLH1VUyfrnnH0RiGgdwVrEjnjRl3wvyVZaYNpDZBCfaamMhKFY4FHHGmt2xaJpRYGYX2qoG4IxmYniETqgn2sL6fxW9CT2t30E5CQmCfWFMjfW2JQ+e3WJBKs/qtY9JmDs9/4uwinOEBvF+1vcTuAGKxp1z52NWP9fcNlH9GEpYnMoiKmdELM5w18WEjlc9YuilRjA0deU1pnV9r71sq+ProWwnJ0IsGjqeVZaWlPtje9FU7/xpXJ9nQeyHSieGcFjga9tqT/g9jU3VKgheRRHPZ9csicnvoDmedAp03OiLjkUVMgR6HV9nLa2O/1hUD+Vly10GIHDr01C6nWutwrfXXGzVji/TESKgxOf49zkBeaQ7tmhpIgM6Wr9PKI8Ui/qX21YX+SjiKztmR9UOryG1DD3j+4YdqVpPhJm/azGt/ZcxQ7je1m425wqGnXHknqmD6WBmQ3PfRN6zQAySar9QV7L05P3Z+I+M6mHCCnnPgUTvEoDVWOfmPObGBt6S+kZj7evcwLxnTcsHR2Oe43YrpFopOw9GO2cGQpXc5vLPvmoL+1w4P2bTRCPrWSEg9l2M+VuBafTyfBdE4CxEMfPEDH5gBgCw51LiD9D1uxGQ4UHJmW2lfweWG/GMG+Egeq9iEfGpQth7bA9J/vNeMjRIYdxXnPaiCJFXBia6+Xy49LJTI5jS0GC92CRfIzSH2CxWZdfBkL4rQEfg0KWYSbUKC36JI9mZdqCbrmVfi9iUAhQNEYpySX1R+TT/ZH9UCAkoFjwdVKpYRpbhA+3dkRkjSV8OdShUWHJj7bPauBHKwlz/ij2d3WN8749EX87Rq0Y8IEAOi0/MYaiqHFFwavrkBnugM/O/auYLua88Yx0P9OpIuXMKNanCvIVc0Bttct9MDputT1C7B+PGDLO9yFlHt7Ebtrddcc58giWItgHNgMUNC12bsA38bBGYWlxO9pXMRSiYzFVA6a2LTlyLWV+1gmEWHPgVNPpPxwnhIsK5v26TgfUhyHyR/5+jFF/bJ15oJ+4cENNNll3WwbPg/hGdfNao4kZRfcEQoKcQfVApsNrENFpMeRHRHK8d18N8vGw6g31Xxs58g9O8oKAJmwFRp4UnJr40gxAv2GKECsCXIuxp/VQBKNxC10qtbGCWd4aNtvX1qpB7LZ+nuxrm6NzsX6jHghvZ5Q4v1kuqU8MFBJiL54NMNE0BUb8fIppX6EFrH2HuKoH0Qrz8A0Xtbpr1kNJFUcFTqEEfcefBdwSRHOEon9UrCdTR3plwnEUZ1kuoLCjS5fF2fGF7xcnWrJR0SGRt4t9cKbgWSzhwUG92ta5WBg79EXX7Zy376KNnHOaiAtPZCzg8HG1Bb+2tCsZFTw4GnJOs40qCy392cCXwNAzcijiQ6SUhiZ6XCg87nm9tzv94fyLSWV5y25bjoeOK+AJBOg7TgbGLf3UjwrfjENxnS2xE5MAJI/zVJwLcMunpXX41PhIhNcwuVK5zreYqedzJsafTY4i5lchEAqFjnMeblCR3468SkdjSzFR2HAov4fAyduk3n5icZDjipFuTjpAGkpDRRetivh7rLTVRbRP9j7ShODQ/wfGVyuYQ0eoyueT+MOChGADgM+UYfZWgzQ+0pTDf2WXN4PS/BOIOEYJYqhJpCE6mK+EuzMvT6UAqcG9GQywY3b8pKFkI7GlmxCNGIfZ7872ohvxB3BfMTxPBEZftiJ7snBrGFHMJpaNyKX6j14PBx4BncFnYFuZjkiAgp0IifEiQvfHjQoVF/M9OTQi7vVdE38Eg0ccWlOVIPuEehODwlOrriFQb3uJoLwxKGcoMeU3yRCnZiz7KM7bESEEFtg0Ii4lVILQMWer23XBjhQqh+FnL+SpmRFprTkGZThc/Ia/wlurfot5JV79jbzkCpFKud7sKb9Lmu+XkqRkvfUHEicI3wWFyP/FNspzrKXYglQ4lJYdFZhLryKZjSzyeHQldXY7nUmom/wym72TFembnvNgYRMLPQy9kUAdxxUkpANJhFWSij5zVZHOim4Ewf71ZdW9fQkai0jLVzoXwFklboWwHXTlG+uOeJETFv7C6a8GpchW2csZwRIAq45mv6+NM2LcaPei2QsoIeImYlnvLZ000PdlxR7cOIurHVf0rg/sw1elqt517YLpnfj/uzT2KXwIqvLn4vVmPMxBcGtBJzudRyvbu4spuqbZkZ1yMwZAIsZm5DXSXzjpSCF+C78c40Hccbof4MHk13uwkmPJNnuEE56JBB/uSGaWgt/e2B1p5mub64izJ9OG7DDSgO6ZW3KhiUknxPNPo3dh7q/25bTZNDE4uIO2Io2YcNUsg9nKTHvTAOeUekCR6pDMBe12qE0wQeyCw621rXint2D04XaKPmqwQuL0rFRwqbVqysS1JQqNNoYUGFk8wQWHQ0lM6KxCMEtNHynO5DYE+iGPXphOmY27qJmzbdPmusg+4bNVogjMT/9Y7lECiXkw5TIdkUgfVjjuAaXZi60/efrGxsS2jDbugH1Hma1oNlLgZm/KrfeAjeUPoVEHe5RBxZocKX4SIMwcKlvbe96LJfwqYiXCDe0+H2Bu7Cp6z3uaas1Mkv1puSi7BthhBFLd0IW3EcKpttRi2DHxsVNLP9wbyiw4dDSQAgypCSWO8Xc+EYdBG6iXtYXMTZyXqA7yz9ROu2zbGucPbowWr68toCZU/+Gpfr2IklG22FWEue5Z1aUNf2fClimXtVMsX4y96g7HDZX/jEQVbZaR+MAreG4R2nKk3qllKwrx+UFuBv42cmU4wBJiehfVWGCfie28zaUttRkMp1rcQkE0p+xstaN59LGWMo5rVBuXYZNEemGJ6hDm7KSv0FzYPcAVG6Gcy0e1bHYxXfhmrALKwGR6jyMI20Q5tq/87PpnsybKl6cvbwFG+n3snnt3momIKMCaRM0F/7BpE3rJN4kHQ9gAXEn5OGjOaGenMzoPFY5/w/m1cX2xjlGNgAAAABJRU5ErkJggg=='%3E%3C/image%3E %3C/g%3E %3C/svg%3E") no-repeat center;
}
.eon-black-cross-icon {
  width: 30px;
  height: 30px;
  background-size: contain;
  background: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E %3Csvg width='28px' height='28px' viewBox='0 0 28 28' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E %3Ctitle%3EIcon*24/Close Copy%3C/title%3E %3Cdesc%3ECreated with Sketch.%3C/desc%3E %3Cdefs%3E %3Cpath d='M20.7034024,19.1967358 L15.4154024,13.9887358 L20.6234024,8.70173578 C21.0108301,8.30795675 21.0056814,7.67466355 20.6119024,7.2872358 C20.2181234,6.89980806 19.5848302,6.90495678 19.1974024,7.29873578 L13.9894024,12.5857358 L8.70140241,7.37773578 C8.44685067,7.12711397 8.07793003,7.03133159 7.7336093,7.12646896 C7.38928858,7.22160632 7.12187829,7.49320978 7.0321093,7.83896896 C6.94234032,8.18472813 7.04385067,8.55211397 7.29840241,8.80273578 L12.5854024,14.0117358 L7.37740241,19.2987358 C7.12018489,19.5519911 7.01941801,19.9242121 7.11374967,20.2726381 C7.20808133,20.621064 7.48286848,20.8916088 7.83271983,20.9805083 C8.18257118,21.0694079 8.55317949,20.9628622 8.80240241,20.7017358 L14.0114024,15.4137358 L19.2984024,20.6227358 C19.4874265,20.8090621 19.7427708,20.9125982 20.0081825,20.910535 C20.2735942,20.9084717 20.5272979,20.8009783 20.7134024,20.6117358 C20.89986,20.4228437 21.0035751,20.1675743 21.0017244,19.902163 C20.9998237,19.6367517 20.8925111,19.3829737 20.7034024,19.1967358 L20.7034024,19.1967358 Z' id='path-1'%3E%3C/path%3E %3C/defs%3E %3Cg id='Icon*24/Close-Copy' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E %3Cmask id='mask-2' fill='white'%3E %3Cuse xlink:href='%23path-1'%3E%3C/use%3E %3C/mask%3E %3Cuse id='Mask' fill='%2339393A' fill-rule='nonzero' xlink:href='%23path-1'%3E%3C/use%3E %3C/g%3E %3C/svg%3E") no-repeat center;
}
.eon-red-cross-icon {
  width: 30px;
  height: 30px;
  background-size: contain;
  background: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E %3Csvg width='28px' height='28px' viewBox='0 0 28 28' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E %3Ctitle%3EIcon*24/Close Copy%3C/title%3E %3Cdesc%3ECreated with Sketch.%3C/desc%3E %3Cdefs%3E %3Cpath d='M20.7034024,19.1967358 L15.4154024,13.9887358 L20.6234024,8.70173578 C21.0108301,8.30795675 21.0056814,7.67466355 20.6119024,7.2872358 C20.2181234,6.89980806 19.5848302,6.90495678 19.1974024,7.29873578 L13.9894024,12.5857358 L8.70140241,7.37773578 C8.44685067,7.12711397 8.07793003,7.03133159 7.7336093,7.12646896 C7.38928858,7.22160632 7.12187829,7.49320978 7.0321093,7.83896896 C6.94234032,8.18472813 7.04385067,8.55211397 7.29840241,8.80273578 L12.5854024,14.0117358 L7.37740241,19.2987358 C7.12018489,19.5519911 7.01941801,19.9242121 7.11374967,20.2726381 C7.20808133,20.621064 7.48286848,20.8916088 7.83271983,20.9805083 C8.18257118,21.0694079 8.55317949,20.9628622 8.80240241,20.7017358 L14.0114024,15.4137358 L19.2984024,20.6227358 C19.4874265,20.8090621 19.7427708,20.9125982 20.0081825,20.910535 C20.2735942,20.9084717 20.5272979,20.8009783 20.7134024,20.6117358 C20.89986,20.4228437 21.0035751,20.1675743 21.0017244,19.902163 C20.9998237,19.6367517 20.8925111,19.3829737 20.7034024,19.1967358 L20.7034024,19.1967358 Z' id='path-1'%3E%3C/path%3E %3C/defs%3E %3Cg id='Icon*24/Close-Copy' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E %3Cmask id='mask-2' fill='white'%3E %3Cuse xlink:href='%23path-1'%3E%3C/use%3E %3C/mask%3E %3Cuse id='Mask' fill='%23ea1c0a' fill-rule='nonzero' xlink:href='%23path-1'%3E%3C/use%3E %3C/g%3E %3C/svg%3E") no-repeat center;
}
.eon-grey-cross-icon {
  width: 30px;
  height: 30px;
  background-size: contain;
  background: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E %3Csvg width='28px' height='28px' viewBox='0 0 28 28' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E %3Ctitle%3EIcon*24/Close Copy%3C/title%3E %3Cdesc%3ECreated with Sketch.%3C/desc%3E %3Cdefs%3E %3Cpath d='M20.7034024,19.1967358 L15.4154024,13.9887358 L20.6234024,8.70173578 C21.0108301,8.30795675 21.0056814,7.67466355 20.6119024,7.2872358 C20.2181234,6.89980806 19.5848302,6.90495678 19.1974024,7.29873578 L13.9894024,12.5857358 L8.70140241,7.37773578 C8.44685067,7.12711397 8.07793003,7.03133159 7.7336093,7.12646896 C7.38928858,7.22160632 7.12187829,7.49320978 7.0321093,7.83896896 C6.94234032,8.18472813 7.04385067,8.55211397 7.29840241,8.80273578 L12.5854024,14.0117358 L7.37740241,19.2987358 C7.12018489,19.5519911 7.01941801,19.9242121 7.11374967,20.2726381 C7.20808133,20.621064 7.48286848,20.8916088 7.83271983,20.9805083 C8.18257118,21.0694079 8.55317949,20.9628622 8.80240241,20.7017358 L14.0114024,15.4137358 L19.2984024,20.6227358 C19.4874265,20.8090621 19.7427708,20.9125982 20.0081825,20.910535 C20.2735942,20.9084717 20.5272979,20.8009783 20.7134024,20.6117358 C20.89986,20.4228437 21.0035751,20.1675743 21.0017244,19.902163 C20.9998237,19.6367517 20.8925111,19.3829737 20.7034024,19.1967358 L20.7034024,19.1967358 Z' id='path-1'%3E%3C/path%3E %3C/defs%3E %3Cg id='Icon*24/Close-Copy' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E %3Cmask id='mask-2' fill='white'%3E %3Cuse xlink:href='%23path-1'%3E%3C/use%3E %3C/mask%3E %3Cuse id='Mask' fill='%238F9192' fill-rule='nonzero' xlink:href='%23path-1'%3E%3C/use%3E %3C/g%3E %3C/svg%3E") no-repeat center;
}
.chat-button-icon {
  width: 30px;
  height: 30px;
  background-size: contain;
  background: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='15px' height='15px' viewBox='0 0 15 15' version='1.1'%3E%3Cg id='surface1'%3E%3Cpath style=' stroke:none;fill-rule:evenodd;fill:rgb(91.764706%25,10.588235%25,3.921569%25);fill-opacity:1;' d='M 7.296875 0.609375 C 5.066406 0.609375 3.320312 1.785156 2.617188 3.769531 C 1.65625 3.527344 1.417969 5.050781 1.417969 5.960938 C 1.417969 6.898438 1.832031 7.90625 2.378906 7.90625 C 2.570312 7.90625 2.917969 7.539062 3.070312 7.382812 C 3.0625 7.367188 3.0625 7.351562 3.054688 7.335938 C 2.796875 6.53125 2.726562 5.515625 3.070312 4.472656 C 3.671875 2.707031 5.3125 1.4375 7.296875 1.4375 C 9.28125 1.4375 10.976562 2.707031 11.578125 4.472656 C 11.921875 5.515625 11.851562 6.53125 11.59375 7.335938 C 11.585938 7.351562 11.585938 7.367188 11.578125 7.382812 C 11.730469 7.539062 12.070312 7.589844 12.21875 7.664062 C 12.695312 7.90625 13.175781 6.414062 13.175781 5.472656 C 13.175781 4.5625 12.9375 3.28125 11.976562 3.527344 C 11.273438 1.542969 9.527344 0.609375 7.296875 0.609375 Z M 10.390625 10.132812 C 11.46875 10.132812 12.367188 11.097656 12.367188 12.25 L 12.367188 14.59375 L 1.824219 14.59375 L 1.824219 12.25 C 1.824219 11.097656 2.722656 10.132812 3.800781 10.132812 Z M 7.175781 2.636719 C 7.234375 2.632812 7.300781 2.636719 7.363281 2.636719 C 9.34375 2.636719 10.945312 4.273438 10.945312 6.289062 C 10.945312 8.304688 9.34375 9.929688 7.363281 9.929688 C 5.785156 9.929688 4.453125 8.898438 3.96875 7.457031 C 4.625 8.25 5.472656 8.617188 6.335938 8.953125 C 6.421875 9.261719 6.6875 9.574219 7.203125 9.574219 C 7.71875 9.574219 8.234375 9.1875 8.234375 8.78125 C 8.234375 8.371094 7.71875 7.71875 7.203125 7.71875 C 6.6875 7.71875 6.546875 7.992188 6.429688 8.25 C 5.863281 8.011719 4.882812 7.71875 3.851562 6.390625 L 3.851562 6.125 C 3.851562 4.171875 5.28125 2.734375 7.175781 2.636719 Z M 7.175781 2.636719 '/%3E%3C/g%3E%3C/svg%3E%0A") no-repeat center;
}
.eon-modify-icon {
  width: 30px;
  height: 30px;
  background-size: contain;
  background: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='Icon'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M20.1466 1.85415C18.9276 0.635202 16.9513 0.635198 15.7324 1.85415L8.37749 9.20901C8.18597 9.40053 8.03534 9.62896 7.93475 9.88044L6.87756 12.5234C6.22451 14.156 7.84467 15.7762 9.47729 15.1232L12.1203 14.066C12.3717 13.9654 12.6002 13.8147 12.7917 13.6232L20.1466 6.26837C21.3655 5.04941 21.3655 3.0731 20.1466 1.85415ZM17.1466 3.26836C17.5845 2.83046 18.2944 2.83046 18.7323 3.26837C19.1702 3.70627 19.1702 4.41625 18.7323 4.85415L11.3775 12.209L8.73451 13.2662L9.7917 10.6232L17.1466 3.26836Z' fill='%23EA1B0A'/%3E%3Cpath d='M9.82835 3.06126L9.75736 3.06126C7.98605 3.06123 6.55823 3.06121 5.43244 3.20853C4.26451 3.36137 3.27732 3.68798 2.48189 4.44944C2.42936 4.49973 2.37793 4.55116 2.32763 4.60369C1.56478 5.40059 1.23903 6.39405 1.08658 7.56913C0.93941 8.70356 0.939429 10.1447 0.939454 11.9346V12.0782C0.939428 13.9205 0.939407 15.4038 1.09467 16.5685C1.25562 17.7759 1.59991 18.7928 2.40392 19.5968C3.20794 20.4008 4.22484 20.7451 5.43222 20.906C6.59693 21.0613 8.08014 21.0613 9.92249 21.0613H10.0661C11.856 21.0613 13.2972 21.0613 14.4316 20.9141C15.6067 20.7617 16.6001 20.4359 17.397 19.6731C17.4496 19.6228 17.501 19.5714 17.5513 19.5188C18.3127 18.7234 18.6393 17.7362 18.7922 16.5683C18.9395 15.4425 18.9395 14.0147 18.9395 12.2433V12.1724C18.9395 11.6201 18.4917 11.1724 17.9395 11.1724C17.3872 11.1724 16.9395 11.6201 16.9395 12.1724C16.9395 14.0314 16.9374 15.3279 16.8091 16.3088C16.6843 17.2625 16.4556 17.7711 16.1065 18.1358C16.0764 18.1673 16.0455 18.1982 16.014 18.2284C15.6508 18.576 15.1392 18.8056 14.1743 18.9308C13.1836 19.0593 11.8727 19.0613 9.9954 19.0613C8.06304 19.0613 6.71361 19.0592 5.69649 18.9236C4.70671 18.7916 4.18569 18.5501 3.81814 18.1826C3.45058 17.815 3.20908 17.294 3.07713 16.3042C2.94155 15.2871 2.93946 13.9377 2.93946 12.0053C2.93946 10.1281 2.94143 8.81715 3.06996 7.82645C3.19515 6.8615 3.42468 6.34992 3.77236 5.98672C3.80254 5.9552 3.8334 5.92434 3.86492 5.89417C4.22957 5.54508 4.73824 5.31642 5.69195 5.19162C6.6728 5.06327 7.96931 5.06126 9.82835 5.06126C10.3806 5.06126 10.8283 4.61354 10.8283 4.06126C10.8283 3.50897 10.3806 3.06126 9.82835 3.06126Z' fill='%23EA1B0A'/%3E%3C/g%3E%3C/svg%3E%0A") no-repeat center;
}
/* icons_custom */
/* ==========================================================================
  IMAGE POSITIONING
========================================================================== */
.anchor-image img,
img.anchor-image-scuole {
  position: absolute;
  min-width: 100%;
  /*min-height: 100%;*/
  width: auto;
  height: auto;
}
.center-center.anchor-image img,
img.center-center.anchor-image-scuole {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 767px) {
  .center-center.anchor-image-mob img,
  img.center-center.anchor-image-scuole {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
.top-left.anchor-image img,
img.top-left.anchor-image-scuole {
  top: 0;
  left: 0;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
.top-center.anchor-image img,
img.top-center.anchor-image-scuole {
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.top-right.anchor-image img,
img.top-right.anchor-image-scuole {
  top: 0;
  left: auto;
  /* override default */
  right: 0;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
.center-left.anchor-image img,
img.center-left.anchor-image-scuole {
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.center-right.anchor-image img,
img.center-right.anchor-image-scuole {
  top: 50%;
  left: auto;
  /* override default */
  right: 0;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.bottom-left.anchor-image img,
img.bottom-left.anchor-image-scuole {
  top: auto;
  /* override default */
  bottom: 0;
  left: 0;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
.bottom-center.anchor-image img,
img.bottom-center.anchor-image-scuole {
  top: auto;
  /* override default */
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.bottom-right.anchor-image img,
img.bottom-right.anchor-image-scuole {
  top: auto;
  /* override default */
  left: auto;
  /* override default */
  bottom: 0;
  right: 0;
  -webkit-transform: translate(0%, 0);
  -moz-transform: translate(0%, 0);
  -ms-transform: translate(0%, 0);
  -o-transform: translate(0%, 0);
  transform: translate(0%, 0);
}
/* image_custom */
/* =========================================
   TOOLTIP
   ========================================= */
/*

html

<div class="eon-icon-info-turquoise is-success" ></div>


js

$(document).ready(function(){

        var trigger = document.getElementsByClassName("is-success")[0];
        var instance = new Tooltip(trigger,{
            reference:trigger,
            html:true,
            title: "<span>sdfghgfdsfgh</span>",
            trigger: "hover",
        });
});

css
*/
.tooltip .tooltip-inner {
  text-align: left;
}
.popper,
.tooltip {
  position: absolute;
  background: black;
  color: black;
  min-width: 150px;
  border-radius: 3px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  padding: 10px;
  opacity: 1;
  text-align: left;
}
.popper .popper__arrow,
.tooltip .tooltip-arrow {
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  margin: 5px;
}
.tooltip .tooltip-arrow,
.popper .popper__arrow {
  border-color: black;
}
.popper[x-placement^="top"],
.tooltip[x-placement^="top"] {
  margin-bottom: 6px;
}
.popper[x-placement^="top"] .popper__arrow,
.tooltip[x-placement^="top"] .tooltip-arrow {
  border-width: 5px 5px 0 5px;
  border-left-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  bottom: -5px;
  left: calc(45%);
  margin-top: 0;
  margin-bottom: 0;
}
.popper[x-placement^="bottom"],
.tooltip[x-placement^="bottom"] {
  margin-top: 6px;
}
.tooltip[x-placement^="bottom"] .tooltip-arrow,
.popper[x-placement^="bottom"] .popper__arrow {
  border-width: 0 5px 5px 5px;
  border-left-color: transparent;
  border-right-color: transparent;
  border-top-color: transparent;
  top: -5px;
  left: calc(45%);
  margin-top: 0;
  margin-bottom: 0;
}
.tooltip[x-placement^="right"],
.popper[x-placement^="right"] {
  margin-left: 6px;
}
.popper[x-placement^="right"] .popper__arrow,
.tooltip[x-placement^="right"] .tooltip-arrow {
  border-width: 5px 5px 5px 0;
  border-left-color: transparent;
  border-top-color: transparent;
  border-bottom-color: transparent;
  left: -5px;
  top: calc(45%);
  margin-left: 0;
  margin-right: 0;
}
.popper[x-placement^="left"],
.tooltip[x-placement^="left"] {
  margin-right: 6px;
}
.popper[x-placement^="left"] .popper__arrow,
.tooltip[x-placement^="left"] .tooltip-arrow {
  border-width: 5px 0 5px 5px;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  right: -6px;
  top: calc(45%);
  margin-left: 0;
  margin-right: 0;
}
/* tooltip_custom */
/* ==========================================================================
    ICONS COLOR (filter)
    must be a SVG black icon
   ========================================================================== */
.bg-eon-red-filter {
  filter: invert(18%) sepia(92%) saturate(3857%) hue-rotate(10deg) brightness(94%) contrast(113%);
}
.bg-eon-white-filter {
  filter: invert(87%) sepia(100%) saturate(0%) hue-rotate(154deg) brightness(99%) contrast(105%);
}
.bg-eon-turquoise-filter {
  filter: invert(50%) sepia(61%) saturate(526%) hue-rotate(138deg) brightness(94%) contrast(96%);
}
.bg-eon-bordeaux-filter {
  filter: invert(14%) sepia(48%) saturate(4955%) hue-rotate(350deg) brightness(102%) contrast(117%);
}
.bg-eon-limeyellow-filter {
  filter: invert(88%) sepia(35%) saturate(1715%) hue-rotate(5deg) brightness(96%) contrast(103%);
}
.bg-eon-black-filter {
  filter: invert(0%) sepia(0%) saturate(14%) hue-rotate(267deg) brightness(98%) contrast(103%);
}
.bg-eon-darkgrey-filter {
  filter: invert(20%) sepia(6%) saturate(156%) hue-rotate(202deg) brightness(94%) contrast(90%);
}
.bg-eon-red-active-filter {
  filter: invert(9%) sepia(100%) saturate(6616%) hue-rotate(12deg) brightness(94%) contrast(95%);
}
.bg-eon-bordeaux-active-filter {
  filter: invert(13%) sepia(74%) saturate(3714%) hue-rotate(343deg) brightness(93%) contrast(114%);
}
.bg-eon-limeyellow-active-filter {
  filter: invert(90%) sepia(34%) saturate(2500%) hue-rotate(3deg) brightness(88%) contrast(103%);
}
.bg-eon-turquoise-active-filter {
  filter: invert(53%) sepia(15%) saturate(1852%) hue-rotate(141deg) brightness(89%) contrast(85%);
}
/* icons_filter */
.lh_100 p,
.lh_100 span {
  line-height: 100%;
}
/* various */

.home-service .casa .elettricista-icon {
  background-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E %3Csvg width='70px' height='70px' viewBox='0 0 70 70' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E %3C!-- Generator: Sketch 58 (84663) - https://sketch.com --%3E %3Ctitle%3EElettricista%3C/title%3E %3Cdesc%3ECreated with Sketch.%3C/desc%3E %3Cg id='Elettricista' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E %3Cpath d='M27.1226869,67 C26.7466733,66.995391 26.3759975,66.920782 26.0349028,66.7810526 C24.8611649,66.3153848 24.2459354,65.1651725 24.5845242,64.0694737 L31.5692425,41.7368421 L16.6456093,41.7368421 C15.7140665,41.7643841 14.8383083,41.3457401 14.3555377,40.6421053 C13.8814874,39.9540415 13.8814874,39.090169 14.3555377,38.4021053 L38.1531984,3.90947368 C38.3283198,3.70539086 38.5412369,3.52887376 38.7829681,3.38736842 C39.1359669,3.17552497 39.5420258,3.04258556 39.9661717,3 L40.3096825,3 C41.7386759,3.02758668 42.877704,4.06281779 42.8669291,5.32421053 L42.8669291,5.93052632 L38.1531984,28.2631579 L53.4203423,28.2631579 C54.3715744,28.2359468 55.2612341,28.6771879 55.7294979,29.4084211 C56.1443037,30.1201559 56.0781741,30.9761196 55.5577425,31.6315789 L29.2791709,65.9894737 C28.7913825,66.6178055 27.9857096,66.9953431 27.1226869,67 L27.1226869,67 Z' id='Meter_Electricity-path' fill='%23FFFFFF' fill-rule='nonzero'%3E%3C/path%3E %3C/g%3E %3C/svg%3E");
}
.home-service .casa .fabbro-icon {
  background-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E %3Csvg width='70px' height='70px' viewBox='0 0 70 70' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E %3C!-- Generator: Sketch 58 (84663) - https://sketch.com --%3E %3Ctitle%3EFabbro%3C/title%3E %3Cdesc%3ECreated with Sketch.%3C/desc%3E %3Cg id='Fabbro' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E %3Cpath d='M59.2660857,10.7346089 C51.620736,3.0884637 39.2251363,3.0884637 31.5797867,10.7346089 C26.342452,15.9719521 24.6948216,23.4372023 26.6321969,30.0778528 L5,51.7108681 L6.10729534,63.8927029 L18.2898934,65 L21.550698,61.7399731 L19.3971887,56.1408397 L20.5634465,54.9188193 L26.1617876,57.0723321 L28.4920312,54.7420833 L26.8253646,50.5754167 L27.6586979,49.7420833 L30.1586979,51.8254167 L31.9638377,50.111529 L31.4086979,47.2420833 L34.7460716,48.2822111 L39.9205241,43.369334 C46.5619468,45.3074955 54.0279679,43.6598624 59.2653026,38.4225192 C66.9114353,30.7755909 66.9114353,18.3791879 59.2660857,10.7346089 Z M28.7222222,33 L30,34.2352941 L8.7037037,54 L7.42592593,61 L7,53.1764706 L28.7222222,33 Z M56.097224,13.9031673 C58.6348003,16.4415363 58.6339877,20.5586668 56.0964115,23.0962232 C53.5572101,25.6354047 49.4424851,25.6337797 46.9040963,23.0962232 C44.3657075,20.5570417 44.364895,16.4423488 46.9040963,13.9031673 C49.4416726,11.3656109 53.5580227,11.3656109 56.097224,13.9031673 Z' id='Shape' fill='%23FFFFFF' fill-rule='nonzero'%3E%3C/path%3E %3C/g%3E %3C/svg%3E");
}
.home-service .casa .geometra-icon {
  background-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E %3Csvg width='70px' height='70px' viewBox='0 0 70 70' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E %3C!-- Generator: Sketch 58 (84663) - https://sketch.com --%3E %3Ctitle%3EGeometra%3C/title%3E %3Cdesc%3ECreated with Sketch.%3C/desc%3E %3Cg id='Geometra' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' stroke-linecap='round' stroke-linejoin='round'%3E %3Cpath d='M6,61.9978547 L63,62 L63,5 L6,61.9978547 Z M53,51 L36,51 L53,34 L53,51 Z M45,23 L48,26 M53,16 L56,19 M38,30 L41,33 M31,37 L34,40 M24,44 L27,47 M17,52 L20,55' id='Shape' stroke='%23FFFFFF' stroke-width='4'%3E%3C/path%3E %3C/g%3E %3C/svg%3E");
}
.home-service .casa .idraulico-icon {
  background-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E %3Csvg width='70px' height='70px' viewBox='0 0 70 70' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E %3C!-- Generator: Sketch 58 (84663) - https://sketch.com --%3E %3Ctitle%3EIdraulico%3C/title%3E %3Cdesc%3ECreated with Sketch.%3C/desc%3E %3Cg id='Idraulico' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E %3Cg id='Shape-2' transform='translate(3.000000, 5.000000)' fill='%23FFFFFF' fill-rule='nonzero'%3E %3Cpath d='M58.6238979,17.8333723 L52.8928806,17.810219 L52.8928806,14.2408759 C52.8928806,12.0317369 51.1020196,10.2408759 48.8928806,10.2408759 C47.8750274,10.2408759 46.8571742,10.2408759 45.839321,10.2408759 L45.839321,6.23357664 L52.0111857,3.5620438 C52.9845769,3.5620438 53.7745756,2.76414599 53.7745756,1.7810219 C53.7745756,0.79789781 52.9845769,0 52.0111857,0 L36.1406764,0 C35.1672852,0 34.3772865,0.79789781 34.3772865,1.7810219 C34.3772865,2.76414599 35.1672852,3.5620438 36.1406764,3.5620438 L42.3125411,6.23357664 L42.3125411,10.2408759 L39.2589814,10.2408759 C37.0498424,10.2408759 35.2589814,12.0317369 35.2589814,14.2408759 L35.2589814,17.810219 L35.2589814,17.810219 L29.6223056,17.8618686 L29.6090801,17.8618686 C26.0302803,17.8618686 22.5793262,18.6009927 19.4545993,19.9376496 C14.7586919,21.9457518 12.3349125,23.1532847 7.97404922,29.483927 C5.36827947,33.2667093 3.90242879,37.6869129 3.57649718,42.7445379 C3.55135825,43.1346298 3.53184682,45.6577401 3.51796289,50.3138686 C1.58176076,50.3192117 0,51.9194599 0,53.8759124 L0,57.4379562 C0,59.3961898 1.58705093,61 3.52677984,61 L8.80725095,61 L13.9872088,61 L19.3972891,61 C21.337018,61 22.924069,59.3961898 22.924069,57.4379562 L22.924069,53.8759124 C22.924069,51.9158978 21.2135807,50.3138686 19.2729701,50.3138686 L19.2844322,50.0253431 C19.2844322,49.5647986 19.3041994,43.3341526 19.3595594,42.9054264 C19.4802873,41.9704691 19.728356,41.1001838 20.0850112,40.2466423 C20.8653112,38.3810219 22.1878537,36.7709781 23.8427951,35.6409197 C25.5047901,34.5126423 27.4524543,33.8643504 29.6223056,33.8625693 L67,33.8625693 L58.6238979,33.8394161 C61.5449533,33.8394161 63.9140676,31.4483942 63.9140676,28.4963504 L63.9140676,23.176438 C63.9140676,20.2252847 61.5449533,17.8333723 58.6238979,17.8333723 Z M59.9464403,28.4723066 C59.9464403,29.4554307 59.1564416,30.2533285 58.1830504,30.2533285 L58.0728385,30.256 L29.6178971,30.299635 C26.8467298,30.3031971 24.1690222,31.1278102 21.8686801,32.6897664 C19.6247664,34.2196642 17.8851823,36.354219 16.8359653,38.8618978 C16.2270074,40.3188279 15.8718717,41.7965792 15.7766157,43.3585556 C15.7604333,43.623909 15.7614497,50.1252698 15.7602974,50.3957956 C15.8343598,51.5285255 16.1652893,52.3917275 16.7530859,52.9854015 C17.6347809,53.8759124 18.3154494,54.3220584 19.2747335,54.3220584 L19.3981708,54.3870657 L19.3981708,57.8832117 L13.9880905,57.8832117 L8.80813265,57.8832117 L3.52766153,57.8832117 L3.52766153,54.3211679 C5.87884809,53.7274939 7.05120849,52.4433771 7.04474273,50.4688175 C7.04457595,50.1804385 7.04002797,43.6591343 7.05045983,43.3721769 C7.20547625,39.1080162 8.52666942,35.0139211 10.8951046,31.479562 C13.3567969,27.8017518 16.7918805,24.9449927 20.8300434,23.2191825 C23.6126727,22.0285693 26.5663508,21.4248029 29.6223056,21.4248029 L32.5839189,21.4248029 C32.5918542,21.4248029 32.5989078,21.4230219 32.606843,21.4230219 C32.6147783,21.4230219 32.6235952,21.428365 32.6324122,21.428365 L37.9040663,21.3722628 C37.9128563,21.3505803 37.914596,19.5321004 37.9092853,15.9168232 C37.9068439,14.2599665 39.2480186,12.9148458 40.9048753,12.912412 C40.9063442,12.9124098 40.9078131,12.9124088 40.9092821,12.9124088 L47.2477958,12.9124088 C48.90465,12.9124088 50.2477958,14.2555545 50.2477958,15.9124088 C50.2477958,17.7323601 50.2477958,19.5523114 50.2477958,21.3722628 L58.1830504,21.3722628 C59.1564416,21.3722628 59.9464403,22.1710511 59.9464403,23.1532847 L59.9464403,28.4723066 Z' id='Shape'%3E%3C/path%3E %3C/g%3E %3C/g%3E %3C/svg%3E");
}
.home-service .casa .imbianchino-icon {
  background-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E %3Csvg width='70px' height='70px' viewBox='0 0 70 70' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E %3C!-- Generator: Sketch 58 (84663) - https://sketch.com --%3E %3Ctitle%3EImbianchino%3C/title%3E %3Cdesc%3ECreated with Sketch.%3C/desc%3E %3Cg id='Imbianchino' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E %3Cg id='Group-3' transform='translate(8.000000, 6.000000)'%3E %3Crect id='Rectangle' stroke='%23FFFFFF' stroke-width='4' x='4' y='0' width='42' height='22' rx='3'%3E%3C/rect%3E %3Crect id='Rectangle' fill='%23FFFFFF' transform='translate(2.500000, 11.000000) scale(-1, 1) translate(-2.500000, -11.000000) ' x='0' y='7' width='5' height='8' rx='2.5'%3E%3C/rect%3E %3Crect id='Rectangle' fill='%23FFFFFF' transform='translate(25.000000, 51.000000) scale(-1, 1) translate(-25.000000, -51.000000) ' x='19' y='40' width='12' height='22' rx='3'%3E%3C/rect%3E %3Cpath d='M45.1176471,10 L48,10 C50.209139,10 52,11.790861 52,14 L52,25.5 C52,27.709139 50.209139,29.5 48,29.5 L29,29.5 C26.790861,29.5 25,31.290861 25,33.5 L25,49 L25,49' id='Path-2' stroke='%23FFFFFF' stroke-width='4'%3E%3C/path%3E %3C/g%3E %3C/g%3E %3C/svg%3E");
}
.home-service .casa .muratore-icon {
  background-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E %3Csvg width='70px' height='70px' viewBox='0 0 70 70' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E %3C!-- Generator: Sketch 58 (84663) - https://sketch.com --%3E %3Ctitle%3EMuratore%3C/title%3E %3Cdesc%3ECreated with Sketch.%3C/desc%3E %3Cg id='Muratore' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E %3Cg id='Group-2' transform='translate(6.000000, 3.000000)' fill='%23FFFFFF' fill-rule='nonzero'%3E %3Cg id='Group'%3E %3Cpath d='M48.3791372,8.0517668 C48.7906011,7.5689503 49.3487477,7.32754206 49.9174254,7.32674533 C50.4138901,7.32754206 50.9020803,7.50999251 51.3000043,7.88923451 C51.6858927,8.25732233 52.2801458,8.22465653 52.6284233,7.81593564 C52.9759486,7.40721474 52.9451076,6.7778005 52.5592192,6.40891596 C51.807,5.69026831 50.856195,5.33253793 49.9174254,5.33333333 C48.8402476,5.33253793 47.7593086,5.8026068 46.9822662,6.71724926 C46.6339888,7.12676688 46.665582,7.75618112 47.0514704,8.12426894 C47.4373588,8.49315349 48.031612,8.46048769 48.3791372,8.0517668 Z' id='Path'%3E%3C/path%3E %3Cpath d='M58.2674146,5.39199469 L57.7470571,4.4724683 C56.9750513,3.11131321 55.1715718,1.48631877 53.7370343,0.861211497 L52.7681173,0.4380729 C52.0956334,0.144364933 51.2262383,0 50.3483127,0 C49.3559369,0 48.3521872,0.1849009 47.6071945,0.548302283 L16.8890408,15.5430541 C15.4829382,16.2293209 15.2846052,17.6466574 16.4468791,18.6941921 L27.5400197,28.6873746 L17.8715859,39.6463178 C17.1756433,39.2054002 16.3858657,38.9806745 15.5939555,38.9806745 C14.4245729,38.9813857 13.2594555,39.4557276 12.4206278,40.3880548 L1.69477683,52.5778199 C0.125173864,54.3215776 0.267348045,57.0339315 2.01040351,58.6041669 L6.23582019,62.4117031 C7.04763476,63.1427728 8.06844539,63.5026184 9.08641253,63.5026184 C10.2557952,63.5026184 11.4202017,63.0275653 12.2597403,62.0952381 L22.987013,49.9047619 C24.3938265,48.3423493 24.4151526,46.0076199 23.1505133,44.4082271 L32.8232122,33.4443058 L43.9170636,43.4374882 C44.3705993,43.8464037 44.8589676,44.0433943 45.3174793,44.0433943 C46.0340372,44.0433943 46.6766645,43.5640742 47.0029542,42.668016 L58.6974915,10.5393513 C59.2320665,9.06938912 59.0394204,6.75314978 58.2674146,5.39199469 Z M19.6326684,41.714427 L35.8301962,23.7249189 L35.8408592,23.7234966 L36.8936591,24.6714693 L20.6883117,42.6666667 L19.6326684,41.714427 Z M55.6345473,10.0674941 L44.6505085,39.6255825 L34.7913075,30.9275365 L38.9797115,26.3689179 C40.0036827,25.2544828 39.9111635,23.5211445 38.7738042,22.5184938 L37.7407898,21.6064974 C37.2114134,21.1389118 36.5449973,20.9098903 35.8806682,20.9098903 C35.1175592,20.9098903 34.3586241,21.2125259 33.8104656,21.8082544 L29.621366,26.366873 L19.7628607,17.6695086 L48.61631,3.87505237 C48.8569988,3.75986001 49.3842884,3.62558252 50.0785297,3.62558252 C50.6725999,3.62558252 51.1164135,3.72509781 51.3348422,3.817797 L52.2836851,4.22403753 C53.1407044,4.59006298 54.4359723,5.73312569 54.898568,6.53129291 L55.4084667,7.41261675 C55.7597612,8.02061433 55.8780187,9.41042044 55.6345473,10.0674941 Z' id='Shape'%3E%3C/path%3E %3C/g%3E %3C/g%3E %3C/g%3E %3C/svg%3E");
}
.home-service .benessere .baby-sitter-icon {
  background-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E %3Csvg width='70px' height='70px' viewBox='0 0 70 70' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E %3C!-- Generator: Sketch 58 (84663) - https://sketch.com --%3E %3Ctitle%3EBabySitter%3C/title%3E %3Cdesc%3ECreated with Sketch.%3C/desc%3E %3Cdefs%3E %3Cpath d='M16.3060878,15.8045846 C17.1740978,15.8045846 17.8777589,15.077072 17.8777589,14.1796397 C17.8777589,13.2822074 17.1740978,12.5546947 16.3060878,12.5546947 C15.4380778,12.5546947 14.7344167,13.2822074 14.7344167,14.1796397 C14.7344167,15.077072 15.4380778,15.8045846 16.3060878,15.8045846 Z M28.7048266,15.8045846 C29.5728366,15.8045846 30.2764977,15.077072 30.2764977,14.1796397 C30.2764977,13.2822074 29.5728366,12.5546947 28.7048266,12.5546947 C27.8368166,12.5546947 27.1331555,13.2822074 27.1331555,14.1796397 C27.1331555,15.077072 27.8368166,15.8045846 28.7048266,15.8045846 Z M24.7974776,22.3833547 C24.1753577,22.3833547 23.6623818,21.8868438 23.6078098,21.2662051 L23.6078098,20.6455664 L25.2013097,18.2532863 C25.4305118,17.9034718 25.4523405,17.4633826 25.266796,17.0909993 C25.0812515,16.7186161 24.7101625,16.4929293 24.295416,16.4929293 L20.7264128,16.4929293 C20.3225806,16.4929293 19.9514916,16.7299005 19.7659471,17.0909993 C19.5804026,17.4633826 19.6022314,17.9147561 19.8314334,18.2532863 L21.4140189,20.6568507 L21.4140189,21.1420773 C21.4140189,21.1533617 21.4140189,21.164646 21.4140189,21.164646 C21.4031045,21.8304221 20.8682998,22.3833547 20.2243512,22.3833547 C19.5585739,22.3833547 19.0237691,21.8304221 19.0237691,21.1420773 L16.8408926,21.1420773 C16.8408926,23.0716994 18.3579918,24.6402227 20.2243512,24.6402227 C21.1084162,24.6402227 21.9160805,24.2791238 22.5163716,23.7036225 C23.1166626,24.2791238 23.9134126,24.6402227 24.7974776,24.6402227 C26.663837,24.6402227 28.1809362,23.0716994 28.1809362,21.1420773 L25.9980597,21.1420773 C25.9980597,21.8304221 25.4523405,22.3833547 24.7974776,22.3833547 Z M45,40.7316913 C45,35.1459431 39.4336648,29.7520286 34.2275042,26.5134231 C36.2575794,23.8277502 37.4254184,20.49887 37.4254184,17.0232933 C37.4254184,14.7325723 36.901528,12.4869887 35.9628911,10.4332388 C36.7814698,9.71104109 37.6109629,8.58260711 37.92748,7.11564293 C38.1785108,5.97592461 38.2003396,4.22685194 36.8796992,2.33108284 C35.930148,0.976962066 34.533107,0.153205258 32.9396071,0.0177931803 C31.4225079,-0.106334558 29.9272374,0.424029414 28.9340286,1.45090434 C28.573854,1.82328755 28.29008,2.26337681 28.0717924,2.73731908 C26.3145768,2.00383699 24.4263886,1.6088851 22.4945428,1.6088851 L22.4945428,1.6088851 C22.4945428,1.6088851 22.4945428,1.6088851 22.4945428,1.6088851 C22.4945428,1.6088851 22.4945428,1.6088851 22.4945428,1.6088851 L22.4945428,1.6088851 C20.5626971,1.6088851 18.6745089,2.00383699 16.9172932,2.73731908 C16.70992,2.26337681 16.426146,1.82328755 16.0659714,1.45090434 C15.0727626,0.424029414 13.5884065,-0.106334558 12.0603929,0.0177931803 C10.466893,0.153205258 9.06985205,0.965677726 8.12030075,2.33108284 C6.79966044,4.22685194 6.82148921,5.97592461 7.07252001,7.11564293 C7.39995149,8.58260711 8.2185302,9.71104109 9.0371089,10.4332388 C8.09847199,12.4869887 7.57458162,14.7325723 7.57458162,17.0232933 C7.57458162,20.49887 8.74242057,23.8277502 10.7724958,26.5134231 C5.56633519,29.7520286 0,35.1459431 0,40.7316913 C0,43.9702968 2.53213679,46.8026661 5.0533592,47.5812856 C5.07518797,48.2244929 5.1188455,48.856416 5.1843318,49.4657703 C5.02061606,49.7591631 4.8678147,50.0638403 4.73684211,50.3798018 C3.89643463,52.4222673 3.79820519,54.803263 4.44215377,57.1052684 C5.08610235,59.4072737 6.41765705,61.3707488 8.18578705,62.6233105 C9.46276983,63.5373421 10.8598108,64 12.2568518,64 C12.8571429,64 13.4574339,63.9097253 14.0468106,63.7404602 C14.9090468,63.4809204 15.683968,63.0408311 16.3715741,62.4427611 C17.452098,62.6458792 18.6090226,62.7587226 19.820519,62.7587226 L25.179481,62.7587226 C26.4018918,62.7587226 27.547902,62.6458792 28.6284259,62.4427611 C29.3051176,63.0295468 30.0909532,63.4809204 30.9531894,63.7404602 C31.5425661,63.9210096 32.1428571,64 32.7431482,64 C34.1292748,64 35.5372302,63.5373421 36.814213,62.6233105 C38.582343,61.3707488 39.9029833,59.4072737 40.5578462,57.1052684 C41.2017948,54.803263 41.1035654,52.410983 40.2631579,50.3798018 C40.1321853,50.052556 39.9793839,49.7591631 39.8156682,49.4657703 C39.8811545,48.856416 39.924812,48.2244929 39.9466408,47.5812856 C42.4678632,46.8026661 45,43.9702968 45,40.7316913 Z M16.0856074,58.2488343 C15.891983,58.6884124 15.6372141,59.068048 15.3620637,59.4177124 C14.8117629,60.0970604 14.1289822,60.5865905 13.3239125,60.81637 C13.3137218,60.81637 13.303531,60.81637 13.2933403,60.8263604 C12.0806403,61.156044 10.7660328,60.9062837 9.58390513,60.1070508 C8.3202514,59.2578658 7.37251111,57.9091603 6.89354558,56.3106945 C6.67953971,55.5813944 6.58782291,54.8321136 6.59801366,54.112804 C6.60820442,53.263619 6.76106576,52.4344149 7.08716994,51.6951244 C7.26041279,51.295508 7.48460942,50.9458436 7.73937832,50.61616 C8.29986989,49.88686 9.0132228,49.3573682 9.85905553,49.1175983 C10.215732,49.0176942 10.5825992,48.9677421 10.9494664,48.9677421 C11.0106109,48.9677421 11.0717555,48.9777325 11.1329,48.9777325 C11.7851084,49.0077038 12.4475075,49.1875312 13.0895251,49.5272051 C13.262768,49.6171189 13.4360108,49.717023 13.6092537,49.8269175 C14.8729074,50.6761025 15.8206477,52.024808 16.2996132,53.6232738 C16.7581972,55.23173 16.6868619,56.8701575 16.0856074,58.2488343 Z M25.179481,60.5018547 L19.820519,60.5018547 C19.1874848,60.5018547 18.5871938,60.4680016 17.9978171,60.4002956 C18.1506185,60.1294714 18.2815911,59.8473629 18.4016493,59.5539701 C19.2420568,57.5115046 19.3402862,55.1305089 18.6963376,52.8285036 C18.052389,50.5264982 16.7208343,48.5630231 14.9527043,47.3104614 C14.6034441,47.0622059 14.2432695,46.8590878 13.8721805,46.6785384 C15.400194,43.3383738 18.6745089,41.0025154 22.4836284,41.0025154 C26.292748,41.0025154 29.5779772,43.3270894 31.0950764,46.6785384 C30.7349018,46.8590878 30.3747271,47.0622059 30.0254669,47.3104614 C28.2573369,48.5630231 26.9366966,50.5264982 26.2818336,52.8285036 C25.637885,55.1305089 25.7361145,57.5227889 26.576522,59.5539701 C26.6965802,59.8473629 26.8384671,60.1294714 26.9803541,60.4002956 C26.4128062,60.4680016 25.8125152,60.5018547 25.179481,60.5018547 Z M38.1260405,56.3106945 C37.6473511,57.9091603 36.7001571,59.2578658 35.4372317,60.1070508 C34.2557854,60.9062837 32.9317507,61.156044 31.7299347,60.8263604 C31.7197498,60.8263604 31.7095649,60.8263604 31.69938,60.81637 C30.8947744,60.5865905 30.2022024,60.08707 29.6624037,59.4177124 C29.377227,59.068048 29.1226049,58.6884124 28.939277,58.2488343 C28.338369,56.8701575 28.2670748,55.23173 28.7457643,53.6332642 C29.2244537,52.0347984 30.1716477,50.6860929 31.4345731,49.8369079 C31.5975312,49.7270134 31.7706742,49.6271093 31.9438172,49.5371956 C32.5854648,49.1975216 33.2474821,49.0176942 33.8993145,48.9877229 C33.9604238,48.9877229 34.0215331,48.9677421 34.0826424,48.9677421 C34.4492982,48.9677421 34.8159539,49.0176942 35.1724248,49.1175983 C36.01777,49.3573682 36.7307117,49.88686 37.2908802,50.61616 C37.5353174,50.9358532 37.7593848,51.2855175 37.9427126,51.6951244 C38.2686289,52.4444053 38.4214021,53.263619 38.431587,54.112804 C38.431587,54.842104 38.339923,55.5813944 38.1260405,56.3106945 Z M34.4301884,32.0574737 C34.0430916,31.5949125 33.3656722,31.5398456 32.9140593,31.9473401 C32.4624464,32.3438212 32.4194357,33.0376631 32.8065325,33.5002244 C37.5592206,39.1390667 37.5592206,43.0928643 37.5592206,46.2647131 C37.5592206,46.35282 37.5484679,46.4189002 37.5484679,46.5070071 C36.9893282,46.110526 36.3656722,45.7911384 35.6990056,45.5928979 C34.8387905,45.3395905 33.9463174,45.2845237 33.064597,45.4056707 C31.2796507,41.2426192 27.2258873,38.3130644 22.5054572,38.3130644 C17.7850271,38.3130644 13.720511,41.2316058 11.9463174,45.4056707 C11.064597,45.2845237 10.1828765,45.3395905 9.32266149,45.5928979 C8.65599483,45.7911384 8.0430916,46.0995126 7.47319913,46.5070071 C7.47319913,46.4299135 7.46244644,46.35282 7.46244644,46.2647131 C7.46244644,43.0928643 7.46244644,39.1390667 12.2151346,33.5002244 C12.6022314,33.0376631 12.5484679,32.3438212 12.1076077,31.9473401 C11.6667475,31.550859 10.9785755,31.6059258 10.5914787,32.0574737 C6.36567225,37.0795677 5.50545719,40.934245 5.34416687,44.6016951 C3.93556472,43.8968399 2.50545719,42.2117952 2.50545719,40.2514164 C2.50545719,35.8680976 7.38717762,31.0552576 12.4301884,28.0375959 C12.9140593,28.5001572 13.4194357,28.9517051 13.9570701,29.3481862 C14.1506185,29.49136 14.3656722,29.5574402 14.580726,29.5574402 C14.9140593,29.5574402 15.2473927,29.3922397 15.4516938,29.0948789 C15.7957798,28.5992775 15.6882529,27.9164489 15.2043819,27.5530079 C11.9140593,25.1410813 9.95707009,21.2313371 9.95707009,17.1013257 C9.95707009,14.9096663 10.5054572,12.7400336 11.5377153,10.845735 C11.8280378,10.3170935 11.6452421,9.64527835 11.1183604,9.34791753 C11.1183604,9.34791753 11.1076077,9.34791753 11.1076077,9.34791753 L11.1076077,9.34791753 C10.4624464,8.99548988 9.65599483,8.08138069 9.39793031,6.94700421 C9.18287655,5.9778282 9.408683,4.99763881 10.0753497,4.05048952 C10.6344894,3.25752733 11.4516938,2.78395268 12.3871776,2.70685914 C13.23664,2.64077895 14.1076077,2.92712641 14.6344894,3.46678124 C14.8172851,3.65400843 14.9570701,3.88528907 15.064597,4.13859644 C14.23664,4.63419781 13.4409411,5.21790609 12.7097583,5.88972128 C12.2688981,6.29721575 12.2258873,6.99105767 12.6237368,7.44260558 C12.8387905,7.68489959 13.1291131,7.80604659 13.4301884,7.80604659 C13.6882529,7.80604659 13.9463174,7.71793968 14.1506185,7.5307125 C16.4516938,5.42716 19.4194357,4.25974344 22.5054572,4.25974344 C25.5914787,4.25974344 28.5592206,5.41614664 30.8602959,7.5307125 C31.064597,7.71793968 31.3226615,7.80604659 31.580726,7.80604659 C31.8710486,7.80604659 32.1721239,7.68489959 32.3871776,7.44260558 C32.7850271,6.99105767 32.7420163,6.29721575 32.3011561,5.88972128 C31.5699733,5.21790609 30.7850271,4.64521117 29.9463174,4.13859644 C30.0538443,3.88528907 30.1936292,3.65400843 30.3764249,3.46678124 C30.9033067,2.92712641 31.7635217,2.64077895 32.6237368,2.70685914 C33.5484679,2.78395268 34.3764249,3.25752733 34.9355647,4.05048952 C35.6022314,4.99763881 35.8280378,5.96681483 35.6129841,6.94700421 C35.3549196,8.09239405 34.5484679,8.99548988 33.9033067,9.34791753 L33.9033067,9.34791753 C33.9033067,9.34791753 33.892554,9.34791753 33.892554,9.34791753 C33.3764249,9.64527835 33.1936292,10.3170935 33.4731991,10.845735 C34.5054572,12.751047 35.0538443,14.9096663 35.0538443,17.1013257 C35.0538443,21.2313371 33.096855,25.1410813 29.8065325,27.5530079 C29.3226615,27.9054356 29.2151346,28.5992775 29.5592206,29.0948789 C29.7742744,29.3922397 30.096855,29.5574402 30.4301884,29.5574402 C30.6452421,29.5574402 30.8710486,29.49136 31.0538443,29.3481862 C31.6022314,28.9517051 32.1076077,28.5001572 32.580726,28.0375959 C37.6344894,31.0552576 42.5054572,35.8680976 42.5054572,40.2514164 C42.5054572,42.2117952 41.0753497,43.8968399 39.6667475,44.6016951 C39.5162099,40.934245 38.6559948,37.0795677 34.4301884,32.0574737 Z' id='path-1'%3E%3C/path%3E %3C/defs%3E %3Cg id='BabySitter' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E %3Cg id='Color/EonLightGray' transform='translate(13.000000, 3.000000)'%3E %3Cmask id='mask-2' fill='white'%3E %3Cuse xlink:href='%23path-1'%3E%3C/use%3E %3C/mask%3E %3Cuse id='Mask' fill='%23EA1C0A' fill-rule='nonzero' xlink:href='%23path-1'%3E%3C/use%3E %3Cg id='Color/EonWhite/' mask='url(clientlib-italia-css/less/%23mask-2)' fill='%23FFFFFF'%3E %3Cg transform='translate(-29.000000, -23.000000)' id='Rectangle-3-Copy'%3E %3Crect x='0' y='0' width='105' height='107'%3E%3C/rect%3E %3C/g%3E %3C/g%3E %3C/g%3E %3C/g%3E %3C/svg%3E");
}
.home-service .benessere .chef-icon {
  background-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E %3Csvg width='70px' height='70px' viewBox='0 0 70 70' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E %3C!-- Generator: Sketch 58 (84663) - https://sketch.com --%3E %3Ctitle%3EChef%3C/title%3E %3Cdesc%3ECreated with Sketch.%3C/desc%3E %3Cg id='Chef' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E %3Cg id='Group-3' transform='translate(9.000000, 3.000000)'%3E %3Cg id='Group-2'%3E %3Cpath d='M46.3907967,58.3127715 C44.8129297,58.1078825 43.1693182,56.9468447 41.9201735,55.9906958 C38.8301839,53.6686202 31.4062401,47.7866966 27.0619257,52.9856567 C22.7395734,47.7866966 15.0306896,53.6686202 11.9407,55.9906958 C10.7572997,56.8785483 8.98219934,58.1078825 7.40433231,58.3127715 C5.69497637,58.5176606 3.52540921,57.3566227 2.34200895,54.624769 C2.34200895,54.7613617 2.34200895,54.8979543 2.34200895,55.034547 C2.34200895,56.810252 3.065198,58.5176606 4.18285381,59.8835874 C7.14135448,63.5032937 12.2694223,64.5277388 16.5428122,63.2984046 C18.7781238,62.6837375 20.816202,61.5226997 22.5913024,60.0884765 C23.1172581,59.6786984 27.0619257,55.7175105 27.0619257,55.1711397 C27.0619257,55.7175105 30.8093598,59.6786984 31.3353155,60.0884765 C33.1761604,61.5226997 34.9512608,62.6837375 37.1865724,63.2984046 C41.4599622,64.5277388 46.5880301,63.5032937 49.6122752,59.8835874 C50.729931,58.5176606 51.4531201,56.810252 51.4531201,55.034547 C51.4531201,54.8979543 51.4531201,54.7613617 51.4531201,54.624769 C50.2039753,57.3566227 48.0344082,58.4493642 46.3907967,58.3127715 Z' id='Path' fill='%23FFFFFF' fill-rule='nonzero'%3E%3C/path%3E %3Cellipse id='Oval' fill='%23FFFFFF' cx='20.7586756' cy='46.1739216' rx='2.52777778' ry='2.54545455'%3E%3C/ellipse%3E %3Cellipse id='Oval-Copy' fill='%23FFFFFF' cx='32.3142312' cy='46.1739216' rx='2.52777778' ry='2.54545455'%3E%3C/ellipse%3E %3Cpath d='M13.1343958,29.1121472 C13.1343958,33.5965827 13.0024875,38.2148819 13.2003499,43.6363636 C20.5212596,38.8172688 32.7227757,38.7503369 40.5053644,43.1009087 L40.5053644,29.8483978 C55.4769545,28.3758966 52.7728347,6.89076533 38.6586485,9.56804025 C35.0971248,-2.4796969 18.6085895,-3.34981125 13.7939372,8.09553904 C-1.44146947,2.94178482 -7.2454339,28.1081691 13.1343958,29.1121472 Z' id='Path' stroke='%23FFFFFF' stroke-width='4' fill-rule='nonzero'%3E%3C/path%3E %3Cpath d='M11.3697867,12.3557398 C9.56423117,12.3557398 5.23089784,14.1739216 5.23089784,19.6284671' id='Path-5' stroke='%23FFFFFF' stroke-width='3'%3E%3C/path%3E %3Cpath d='M21.1197867,39.6284671 L21.1197867,29.8102853' id='Path-6' stroke='%23FFFFFF' stroke-width='4'%3E%3C/path%3E %3Cpath d='M26.8975645,39.6284671 L26.8975645,29.8102853' id='Path-6-Copy' stroke='%23FFFFFF' stroke-width='4'%3E%3C/path%3E %3Cpath d='M32.6753423,39.6284671 L32.6753423,29.8102853' id='Path-6-Copy-2' stroke='%23FFFFFF' stroke-width='4'%3E%3C/path%3E %3C/g%3E %3C/g%3E %3C/g%3E %3C/svg%3E");
}
.home-service .benessere .istruzione-icon {
  background-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E %3Csvg width='70px' height='70px' viewBox='0 0 70 70' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E %3C!-- Generator: Sketch 58 (84663) - https://sketch.com --%3E %3Ctitle%3EIstruzione%3C/title%3E %3Cdesc%3ECreated with Sketch.%3C/desc%3E %3Cg id='Istruzione' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E %3Cg id='Group-6' transform='translate(7.000000, 4.000000)' fill='%23FFFFFF'%3E %3Cg id='path-2' fill-rule='nonzero'%3E %3Cpath d='M36.6666667,0 L3.33333333,0 C1.5,0 0,1.76785714 0,3.92857143 L0,49.7619048 C0,52.8174603 1.77777778,55 4.88888889,55 L36.6666667,55 C38.5,55 40,53.2321429 40,51.0714286 L40,3.92857143 C40,1.76785714 38.5,0 36.6666667,0 Z M36.4444444,45.3968254 L36.4444444,52.3809524 L7.11111111,52.3809524 C4.74074074,52.3809524 3.55555556,51.2169312 3.55555556,48.8888889 C3.55555556,46.5608466 4.74074074,45.3968254 7.11111111,45.3968254 L7.11111111,45.3968254 L36.4444444,45.3968254 Z M36.4444444,3.49206349 L36.4444444,42.7777778 L8.88888889,42.7777778 L8.88888889,3.49206349 L36.4444444,3.49206349 Z M13.3333333,11.3492063 L32,11.3492063 L32,14.8412698 L13.3333333,14.8412698 L13.3333333,11.3492063 Z M13.3333333,20.952381 L32,20.952381 L32,24.4444444 L13.3333333,24.4444444 L13.3333333,20.952381 Z' id='path'%3E%3C/path%3E %3C/g%3E %3Cg id='Group-5' transform='translate(28.000000, 19.000000)'%3E %3Cpolygon id='Path-7' points='2.63636364 31.5918367 19.3333333 2.19387755 26.8030303 6.58163265 10.5454545 36.4183673'%3E%3C/polygon%3E %3Cpath d='M19.5297051,4.3877551 L24.6060606,7.23959222 L22.6521131,10.5306122 L17.5757576,7.67877513 L19.5297051,4.3877551 Z M9.1618804,35.1020408 L4.39393939,32.3162737 L16.3229681,11.4081633 L21.0909091,14.1939303 L9.1618804,35.1020408 Z M1.21918045,42.7513046 C1.50129638,42.9164829 1.81821881,43 2.13514124,43 C2.43008062,43 2.72501999,42.9276185 2.99431247,42.7828555 L10.6242658,38.6738132 C10.9283648,38.5104908 11.1793381,38.2636513 11.3515387,37.9629897 L28.7547937,7.42541856 C28.9984393,6.99855328 29.0625566,6.49188275 28.9379859,6.01676313 C28.8115833,5.54164351 28.5038205,5.13519352 28.0843104,4.89020997 L20.15209,0.250369946 C19.2764315,-0.263724329 18.1534635,0.0387932404 17.6496851,0.929642525 L0.246430094,31.4672136 C0.0742294651,31.7678753 -0.0100389276,32.1130794 0.000952601842,32.4601394 L0.303219663,41.2090218 C0.327034643,41.8493197 0.6714359,42.4302276 1.21918045,42.7513046 L1.21918045,42.7513046 Z' id='path'%3E%3C/path%3E %3C/g%3E %3C/g%3E %3C/g%3E %3C/svg%3E");
}
.home-service .benessere .personal-trainer-icon {
  background-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E %3Csvg width='70px' height='70px' viewBox='0 0 70 70' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E %3C!-- Generator: Sketch 58 (84663) - https://sketch.com --%3E %3Ctitle%3EPersonalTrainer%3C/title%3E %3Cdesc%3ECreated with Sketch.%3C/desc%3E %3Cg id='PersonalTrainer' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E %3Cg id='Combined-Shape-2' transform='translate(-6.296806, -1.983340)' fill='%23FFFFFF' fill-rule='nonzero'%3E %3Cpath d='M16.5940044,50.3083479 C14.8451923,50.3242048 13.3936267,48.8819594 13.377629,47.1485307 L13.3993116,39.1808493 L8.59613564,39.2020482 C6.84732352,39.2179051 5.39575794,37.7756597 5.3797603,36.042231 C5.36376266,34.3088024 6.81880744,32.8700055 8.56761957,32.8541486 L13.3707955,32.8329497 L13.3924781,24.8652682 C13.3764805,23.1318395 14.8315252,21.6930427 16.5803374,21.6771858 C18.3291495,21.6613288 19.7807151,23.1035743 19.7967127,24.8370029 L19.7753256,20.0760782 C19.7900498,17.8704813 21.580192,16.0883888 23.8053626,16.1029834 C26.0305333,16.1175781 27.6517645,17.7588829 27.6370403,19.9644798 L27.8134215,32.8261763 L55.4388888,32.9550346 L55.4391843,20.2264284 C55.4539084,18.0208315 56.9601044,16.0705931 59.1852751,16.0851878 C61.4104457,16.0997824 63.2083536,17.8741775 63.1936295,20.0797744 L63.2146296,24.8121064 L63.2185608,24.6624762 C63.2997161,23.0097351 64.7143676,21.6679268 66.4028758,21.6526167 C68.1516879,21.6367598 69.6032535,23.0790053 69.6192512,24.8124339 L69.5975686,32.7801154 L74.4007445,32.7589165 C76.1495567,32.7430595 77.6011222,34.185305 77.6171199,35.9187336 C77.6993138,37.7658091 76.2111709,39.1477825 74.4623588,39.1636394 L69.6591828,39.1848384 L69.6375002,47.1525199 C69.6534979,48.8859485 68.1984531,50.3247454 66.449641,50.3406023 C64.7008288,50.3564592 63.2492633,48.9142137 63.2332656,47.1807851 L63.2546527,51.9417098 C63.2399285,54.1473067 61.4497864,55.9293993 59.2246157,55.9148046 C56.999445,55.90021 55.4854833,54.2939607 55.5002075,52.0883638 L55.4674048,39.3029342 L27.8419376,39.1740759 L27.6649653,51.7695918 C27.6502412,53.9751887 26.0367758,55.8903715 23.8116051,55.8757769 C21.6195326,55.9180056 19.7885265,54.0867871 19.8032507,51.8811902 L19.7816296,47.1301064 L19.7783194,47.2984884 C19.6971641,48.9512296 18.2825126,50.2930378 16.5940044,50.3083479 Z M59.4503273,19.6251018 C58.6486053,19.6251018 57.990248,20.238919 57.9195716,21.0222371 L57.9132902,21.1621388 L57.9132902,51.0242349 C57.9132902,51.8731171 58.6014452,52.561272 59.4503273,52.561272 C60.2520493,52.561272 60.9104066,51.9474548 60.981083,51.1641366 L60.9873643,51.0242349 L60.9873643,21.1621388 C60.9873643,20.3132567 60.2992094,19.6251018 59.4503273,19.6251018 Z M23.7088046,19.4071029 C22.9070826,19.4071029 22.2487253,20.02092 22.1780489,20.8042382 L22.1717676,20.9441399 L22.1717676,50.806236 C22.1717676,51.6551181 22.8599225,52.3432731 23.7088046,52.3432731 C24.5105266,52.3432731 25.1688839,51.7294559 25.2395603,50.9461377 L25.2458416,50.806236 L25.2458416,20.9441399 C25.2458416,20.0952578 24.5576867,19.4071029 23.7088046,19.4071029 Z M66.5554274,24.7165085 C66.1309864,24.7165085 65.7869089,25.0605859 65.7869089,25.485027 L65.7869089,25.485027 L65.7869089,46.9267134 C65.7869089,47.3511544 66.1309864,47.6952319 66.5554274,47.6952319 C66.9798685,47.6952319 67.3239459,47.3511544 67.3239459,46.9267134 L67.3239459,46.9267134 L67.3239459,25.485027 C67.3239459,25.0605859 66.9798685,24.7165085 66.5554274,24.7165085 Z M16.6037045,25.0391004 C16.2146335,25.0391004 15.8930903,25.328221 15.8422016,25.7033355 L15.835186,25.8076189 L15.835186,45.7173904 C15.835186,46.1418314 16.1792634,46.4859089 16.6037045,46.4859089 C16.9927754,46.4859089 17.3143187,46.1967883 17.3652073,45.8216738 L17.372223,45.7173904 L17.372223,25.8076189 C17.372223,25.3831779 17.0281455,25.0391004 16.6037045,25.0391004 Z' id='Combined-Shape' transform='translate(41.500000, 36.000000) rotate(-330.000000) translate(-41.500000, -36.000000) '%3E%3C/path%3E %3C/g%3E %3C/g%3E %3C/svg%3E");
}
.home-service .benessere .pet-sitter-icon {
  background-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E %3Csvg width='70px' height='70px' viewBox='0 0 70 70' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E %3C!-- Generator: Sketch 58 (84663) - https://sketch.com --%3E %3Ctitle%3EPetSitter%3C/title%3E %3Cdesc%3ECreated with Sketch.%3C/desc%3E %3Cg id='PetSitter' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E %3Cg id='Group' transform='translate(2.000000, 2.000000)' fill='%23FFFFFF' fill-rule='nonzero'%3E %3Cg id='Group-4'%3E %3Cpath d='M12.1762288,33.6284971 C12.0396294,33.6190701 11.9026565,33.6114859 11.7660526,33.5991096 C11.0006156,33.5275158 10.2985005,33.282008 9.674722,32.8390144 C8.59855314,32.074583 7.90955405,31.0593156 7.63367082,29.7825607 C7.53058932,29.3027643 7.50124953,28.8186575 7.53172954,28.3302187 C7.56621828,27.7569923 7.68200749,27.2012184 7.86704868,26.6577172 C8.1625912,25.7903265 8.60914059,25.0035379 9.17468518,24.2785002 C9.600909,23.7320522 10.0836523,23.2373047 10.6157574,22.7887168 C11.1136658,22.3684638 11.5656021,21.9042684 11.9889001,21.4127475 C12.5214951,20.7930982 13.0032367,20.1361351 13.4789512,19.4747387 C13.8994721,18.8899404 14.3128383,18.3014444 14.7593517,17.7362255 C15.0950795,17.3098242 15.4492688,16.899304 15.8441494,16.5242386 C16.3382209,16.055684 16.8835753,15.6590988 17.5265976,15.4023892 C18.0090521,15.2095808 18.5104598,15.1078627 19.0323269,15.0979745 C19.6222946,15.0856105 20.2052213,15.1436513 20.7792411,15.2820481 C21.6577748,15.4946474 22.4192311,15.914258 23.0752489,16.5243081 C23.5240266,16.9434375 23.9040317,17.4173927 24.2573557,17.9134269 C24.6321728,18.4393564 24.9765417,18.9844098 25.3318127,19.5232125 C25.7323401,20.12992 26.1456458,20.7270617 26.6074403,21.2918352 C27.0673506,21.8547625 27.5746038,22.3742598 28.1284463,22.8495885 C28.7983322,23.4246364 29.3930642,24.0644542 29.8998701,24.7826631 C30.3320181,25.3986359 30.6844574,26.0535649 30.93087,26.7610503 C31.12286,27.3121365 31.2437546,27.875648 31.2751264,28.4578238 C31.3235176,29.3419653 31.169041,30.1870843 30.7608828,30.981674 C30.3831129,31.7180609 29.8354231,32.3089308 29.1471985,32.7779239 C28.6412724,33.1225875 28.0953346,33.3842392 27.4939064,33.5293063 C27.2810192,33.5813295 27.0647229,33.6186008 26.8461429,33.6389098 C26.8156698,33.6418123 26.7863294,33.6472971 26.7569873,33.651676 C26.7284153,33.6674848 26.6967906,33.6556387 26.6666949,33.6592791 C26.6418663,33.6625589 26.6155105,33.6514582 26.5918294,33.6669059 C26.4052006,33.6666186 26.2178192,33.6663302 26.0311903,33.666043 C26.0089661,33.650156 25.9837732,33.6611773 25.9600637,33.6581915 C25.9382402,33.6581579 25.9175455,33.658126 25.8960982,33.658093 C25.8784136,33.6580658 25.859224,33.6580363 25.8419156,33.6580096 C25.3636559,33.6421581 24.8991913,33.5437461 24.4362204,33.437963 C23.6518029,33.2575828 22.8827258,33.02082 22.1024235,32.824962 C21.4704285,32.6669365 20.833211,32.5383965 20.1847899,32.4647708 C19.7354484,32.4135716 19.2850473,32.4073484 18.8358066,32.4217723 C18.4764889,32.4330167 18.1198702,32.4866621 17.7666537,32.5506354 C17.0692506,32.6782273 16.3858544,32.8611411 15.7020802,33.0429482 C14.978816,33.236492 14.25555,33.4289297 13.5148609,33.546501 C13.2135433,33.5935954 12.9118393,33.6340533 12.6055527,33.6306325 C12.5427148,33.6297985 12.4802685,33.6389191 12.416677,33.6373465 C12.3357726,33.632798 12.2560253,33.6466846 12.1762288,33.6284971 Z' id='Path' transform='translate(19.402001, 24.381629) rotate(-17.000000) translate(-19.402001, -24.381629) '%3E%3C/path%3E %3Cpath d='M21.5487432,1.41400474 C22.5664618,1.53125325 23.3444171,2.02176443 23.9394209,2.79437336 C24.34725,3.32419287 24.6040654,3.91808771 24.7637458,4.55278883 C24.9001306,5.09943509 24.9522392,5.65421465 24.9337374,6.21535223 C24.8996311,7.2463795 24.6452313,8.22533409 24.1735775,9.15365772 C23.8469029,9.79695107 23.4248317,10.3768676 22.886456,10.8768492 C22.4068452,11.3212357 21.8640701,11.6760689 21.2303459,11.8967577 C20.7852209,12.0516327 20.3274455,12.12781 19.8528054,12.1004942 C19.0311101,12.0543218 18.3331645,11.7442829 17.7461107,11.203769 C17.2457452,10.742426 16.9043175,10.1850455 16.6675898,9.5681889 C16.5021468,9.13682078 16.3985712,8.69225521 16.3443384,8.23770627 C16.3066514,7.92616877 16.291365,7.61430648 16.3015171,7.30248335 C16.324686,6.56639273 16.4633073,5.84987991 16.7151051,5.15437843 C16.9824007,4.41399315 17.3617906,3.73162146 17.8802541,3.12167533 C18.3164761,2.60860316 18.8264779,2.17504128 19.4387877,1.85516341 C19.8887251,1.61982128 20.3680257,1.46787296 20.8812679,1.41369593 C20.896822,1.40545686 20.9139131,1.40907578 20.929858,1.40802254 C20.9461842,1.40804767 20.9625104,1.4080728 20.978457,1.40809734 C21.0019927,1.40525947 21.0270681,1.4160759 21.0479262,1.40030051 C21.1599316,1.4004729 21.2700386,1.40064237 21.3812847,1.40081359 C21.4029513,1.4170137 21.4272342,1.40627323 21.4507782,1.4088243 C21.4674841,1.40885001 21.4830509,1.40887397 21.4997568,1.40889968 C21.5153242,1.40928291 21.5327834,1.4053579 21.5487432,1.41400474 Z' id='Path' transform='translate(20.617899, 6.753130) rotate(-17.000000) translate(-20.617899, -6.753130) '%3E%3C/path%3E %3Cpath d='M1.75317053,18.4148288 C1.7685448,18.1158838 1.82351105,17.8224822 1.90411966,17.5338713 C2.06008434,16.9730883 2.31602674,16.4621655 2.71533675,16.0249264 C3.16169204,15.5369569 3.71386843,15.2216602 4.3756605,15.0951237 C4.91308469,14.9928835 5.44357235,15.0379239 5.96518355,15.1944244 C6.5648674,15.3748016 7.09537886,15.6808 7.5672219,16.0788109 C8.30027403,16.6950543 8.82620147,17.4527879 9.1909466,18.3195542 C9.3816443,18.7734174 9.51393382,19.2432722 9.58743593,19.7276559 C9.62323357,19.9627194 9.64056113,20.1992163 9.64582681,20.4367911 C9.65519017,20.8878169 9.6091253,21.3314475 9.49443771,21.7676628 C9.34152147,22.3496487 9.08334579,22.8792079 8.67124237,23.3321434 C8.1981699,23.8518691 7.60792967,24.1747824 6.90012058,24.2851666 C6.38075917,24.3662364 5.86985796,24.3102615 5.36973386,24.1530632 C4.69724226,23.940411 4.12064922,23.5762292 3.61250322,23.105065 C3.11681742,22.6467119 2.72280453,22.114687 2.415407,21.5232209 C2.11405866,20.9430943 1.90577766,20.331679 1.80488893,19.6886316 C1.78737298,19.5749381 1.77287293,19.4612492 1.7568655,19.3479235 C1.74434524,19.296005 1.74916467,19.2430168 1.73626799,19.1914632 C1.73020309,19.1698902 1.73356454,19.149428 1.73239934,19.1271315 C1.72821039,19.0997135 1.74098302,19.0704942 1.72359955,19.0430559 C1.72338625,18.9041704 1.72317351,18.7656504 1.72295964,18.6263994 C1.7496673,18.5884298 1.73640766,18.5460129 1.73936125,18.5054484 C1.74157657,18.4751163 1.73361047,18.4429412 1.75317053,18.4148288 Z' id='Path' transform='translate(5.684982, 19.681206) rotate(-17.000000) translate(-5.684982, -19.681206) '%3E%3C/path%3E %3Cpath d='M5.93808088,9.8961907 C5.94034697,9.06269814 6.06606687,8.31116144 6.36322901,7.58824884 C6.58737438,7.04164658 6.89551785,6.54194956 7.32512636,6.11205096 C7.78777994,5.64794995 8.33771388,5.31547161 9.0013965,5.15959106 C9.665078,5.00297388 10.317644,5.04891265 10.9594417,5.26683779 C11.5247604,5.4592315 12.0181432,5.76200889 12.4564848,6.14388921 C13.1564095,6.75268565 13.6579416,7.48714035 14.0157928,8.31013773 C14.2431575,8.83349447 14.4000198,9.3744218 14.4899242,9.93182024 C14.540844,10.2479126 14.5704908,10.5665504 14.5780759,10.8873641 C14.5861822,11.2910494 14.5596125,11.6932081 14.488907,12.0916158 C14.3420344,12.9241491 14.0410124,13.6993565 13.5030464,14.3843303 C13.1683888,14.8092187 12.7619064,15.1603335 12.2626783,15.4129656 C11.7047865,15.6949726 11.1072398,15.8122819 10.4747676,15.7656375 C9.90298193,15.7238745 9.37551513,15.5484815 8.88335965,15.2751712 C8.24134989,14.9191277 7.72129625,14.4395183 7.28819091,13.8753302 C6.77454316,13.205312 6.42115292,12.4648239 6.19691637,11.6692875 C6.07410214,11.2341188 5.99540684,10.7916518 5.95925607,10.342989 C5.94481284,10.1746469 5.93233802,10.005203 5.93808088,9.8961907 Z' id='Path' transform='translate(10.258067, 10.421254) rotate(-17.000000) translate(-10.258067, -10.421254) '%3E%3C/path%3E %3Cpath d='M34.0442317,11.524857 C34.0442807,11.5567416 34.0443797,11.5889926 34.0443797,11.6212436 C34.0059524,12.420861 33.7755206,13.1732725 33.4026723,13.8906484 C33.1092928,14.4527557 32.734543,14.9648955 32.2704789,15.4186262 C31.674958,16.0018914 30.9836699,16.4563718 30.161239,16.728506 C29.6685732,16.8915678 29.1611071,16.9714141 28.6364243,16.9438529 C27.8618913,16.9023471 27.1853672,16.6418324 26.6159581,16.1527942 C26.1458178,15.7485674 25.8353465,15.251865 25.6393839,14.6930358 C25.4629413,14.1921418 25.3911656,13.6760164 25.4082034,13.150499 C25.4448945,11.9950191 25.8386463,10.9452709 26.5220197,9.98502492 C26.7527112,9.65993873 27.0175447,9.35982628 27.3145385,9.08541747 C27.9255571,8.52306602 28.6244142,8.09095296 29.4524396,7.84668051 C29.9233337,7.70887285 30.4046536,7.64621126 30.8980221,7.68251994 C31.6515586,7.73755345 32.3090543,8.00207021 32.8610031,8.48338535 C33.3589484,8.91770692 33.6734454,9.45362978 33.8639216,10.0549631 C33.969122,10.387163 34.0307132,10.7269921 34.0435383,11.0733429 C34.0435878,11.1055939 34.0436379,11.1382114 34.0436874,11.1704624 C34.0399031,11.2884657 34.0404809,11.4064757 34.0442317,11.524857 Z' id='Path' transform='translate(29.725073, 12.310793) rotate(-17.000000) translate(-29.725073, -12.310793) '%3E%3C/path%3E %3C/g%3E %3Cg id='Group-4-Copy' transform='translate(31.000000, 30.000000)'%3E %3Cpath d='M11.7546172,33.6719196 C11.6215611,33.6635759 11.4881267,33.6570736 11.3550891,33.6457876 C10.6096527,33.5803086 9.92728044,33.3408367 9.32278849,32.9037397 C8.27989487,32.1494815 7.61628379,31.141976 7.3573249,29.8703954 C7.26058838,29.3925389 7.23575377,28.9098094 7.26925298,28.4222936 C7.30731759,27.8501605 7.42448183,27.294807 7.6090435,26.7511592 C7.90381492,25.8835328 8.34513112,25.0951443 8.90194007,24.3674357 C9.32158043,23.818975 9.79590291,23.321653 10.3179748,22.8699977 C10.8064986,22.4468755 11.2505594,21.9802723 11.6669217,21.486631 C12.1907996,20.8643166 12.6654057,20.2051719 13.1341723,19.5416513 C13.5485524,18.9549756 13.9559883,18.3646666 14.3955486,17.7973219 C14.7260595,17.3693256 15.0744396,16.9570293 15.4622019,16.5797876 C15.9473614,16.1085084 16.4819421,15.7086293 17.1106233,15.4475352 C17.5823193,15.2514376 18.0717796,15.1460668 18.5804664,15.132149 C19.1555429,15.1152323 19.7232106,15.168608 20.2815735,15.302218 C21.1361384,15.5074892 21.8749923,15.9201897 22.5096071,16.5236961 C22.9437292,16.9383449 23.3103998,17.4082234 23.6508957,17.9003357 C24.0121066,18.4221053 24.3434942,18.9631899 24.6855555,19.497954 C25.0711961,20.1001101 25.4693648,20.692624 25.9150418,21.2524699 C26.3588968,21.8104886 26.8492295,22.3248127 27.3853109,22.7947114 C28.0337133,23.3631911 28.608368,23.9968706 29.0967213,24.709438 C29.5131073,25.3205919 29.8515069,25.9712285 30.0861651,26.6751202 C30.2689979,27.2234068 30.3824448,27.7846413 30.4084981,28.3651911 C30.4487933,29.2468574 30.2916773,30.0911695 29.8877164,30.8870424 C29.5138239,31.6246147 28.9754582,32.2183353 28.3010743,32.6915599 C27.8053235,33.0393345 27.2712222,33.3046049 26.6839456,33.4539985 C26.4760624,33.5075517 26.2649713,33.5464143 26.0517862,33.5683727 C26.0220646,33.571505 25.993427,33.5772047 25.9647963,33.581801 C25.9368273,33.5977942 25.906098,33.5862219 25.8767385,33.5900873 C25.8525152,33.5935522 25.8269152,33.5826826 25.8037157,33.5982775 C25.62183,33.5994404 25.439211,33.600608 25.2573253,33.6017709 C25.2357891,33.5860942 25.2111505,33.597285 25.1880666,33.5944904 C25.1667977,33.5946264 25.146629,33.5947553 25.1257268,33.594889 C25.1084917,33.5949992 25.0897897,33.5951187 25.0729213,33.5952266 C24.606934,33.5831272 24.1550327,33.4885561 23.7046443,33.3866199 C22.9415546,33.2127603 22.1938534,32.9825327 21.4348945,32.7932001 C20.8201816,32.6404582 20.2001498,32.5171724 19.5687726,32.4487575 C19.1312435,32.4011698 18.6923324,32.3984594 18.2543919,32.4163381 C17.9041147,32.4303465 17.5561386,32.4866342 17.2113981,32.5531989 C16.5307204,32.6859043 15.8632641,32.8736913 15.195448,33.0603774 C14.4890539,33.2590788 13.7826668,33.4566769 13.0598804,33.5797216 C12.7658516,33.6290445 12.4714976,33.6717494 12.1730183,33.6707156 C12.1117832,33.6703716 12.0508524,33.6799555 11.9888885,33.6788806 C11.9100746,33.6749712 11.8322454,33.6894442 11.7546172,33.6719196 Z' id='Path' transform='translate(18.834873, 24.404964) rotate(-17.000000) translate(-18.834873, -24.404964) '%3E%3C/path%3E %3Cpath d='M20.9937163,1.41944959 C21.9846708,1.52851552 22.7390539,2.01181995 23.3129421,2.7779732 C23.7062961,3.30336723 23.9519751,3.89385731 24.1026696,4.52581117 C24.2313442,5.07010019 24.2778204,5.62315773 24.2554305,6.1831066 C24.214183,7.2119506 23.9586427,8.1905565 23.4917606,9.12033898 C23.1683884,9.76464199 22.7525352,10.3464596 22.2239529,10.8494353 C21.7530744,11.2964915 21.2213318,11.6546977 20.6019923,11.8797843 C20.166972,12.0377487 19.7202341,12.1173005 19.2578635,12.0937358 C18.4574006,12.0540549 17.7795931,11.7501728 17.2116503,11.2155017 C16.7275788,10.7591402 16.3991534,10.205735 16.1732302,9.59218164 C16.0153403,9.16312271 15.9178485,8.72041718 15.8685237,8.26736875 C15.8342137,7.95686369 15.8217377,7.64586064 15.8340537,7.33469908 C15.862351,6.60017634 16.0030157,5.88428826 16.2538186,5.18848263 C16.5200743,4.44777941 16.8951261,3.76408144 17.4051561,3.15155693 C17.8342815,2.63631509 18.3346948,2.19982172 18.9339343,1.87594785 C19.3742696,1.63767007 19.8425745,1.48236003 20.3431994,1.42432551 C20.3584224,1.4159852 20.3750512,1.41946279 20.3905992,1.41828821 C20.4065105,1.41818648 20.4224218,1.41808475 20.4379631,1.41798539 C20.4609229,1.41497147 20.4852773,1.42556746 20.5057281,1.40966754 C20.6148869,1.40896962 20.7221955,1.40828353 20.8306142,1.40759035 C20.8516046,1.42358371 20.875354,1.41268015 20.8982801,1.41504231 C20.9145614,1.41493821 20.9297326,1.41484121 20.946014,1.41473711 C20.9611829,1.41499852 20.9782291,1.41094724 20.9937163,1.41944959 Z' id='Path' transform='translate(20.045126, 6.752701) rotate(-17.000000) translate(-20.045126, -6.752701) '%3E%3C/path%3E %3Cpath d='M1.70498032,18.4485204 C1.7222858,18.1501659 1.77813445,17.857034 1.85893686,17.5684823 C2.01529488,17.0078196 2.26870361,16.4961222 2.66126568,16.05682 C3.10007192,15.5665425 3.64066998,15.247706 4.2866331,15.1163302 C4.811199,15.0101587 5.32786072,15.0509722 5.8350058,15.2030498 C6.41805478,15.3783413 6.93271295,15.6794929 7.38947844,16.0728941 C8.09912253,16.6819809 8.60580469,17.4338307 8.95455229,18.295706 C9.13688068,18.7470105 9.26216045,19.2147221 9.33003337,19.6973849 C9.36309599,19.9316121 9.3781466,20.167413 9.38143338,20.4043828 C9.38705595,20.8542648 9.3387158,21.2971999 9.22355375,21.7332701 C9.07000206,22.3150617 8.81427203,22.8453686 8.40911965,23.3004292 C7.94402829,23.8225951 7.36627419,24.1493257 6.67558847,24.2649451 C6.16879092,24.349856 5.67130302,24.297982 5.18510462,24.1450412 C4.5313481,23.9381169 3.97223087,23.579278 3.48065278,23.1131791 C3.00111886,22.6597642 2.62124722,22.1320626 2.32625226,21.5443884 C2.03706475,20.9679797 1.83882337,20.3596338 1.74549182,19.7188969 C1.72930385,19.6056094 1.71605512,19.4923031 1.70133448,19.3793708 C1.68953551,19.3276728 1.69464404,19.274773 1.68247538,19.223442 C1.67673209,19.2019673 1.68016707,19.1815276 1.67920463,19.1592931 C1.67533504,19.1319727 1.68801014,19.1027236 1.67128137,19.0754855 C1.67215215,18.9369314 1.67302064,18.798742 1.67389371,18.6598233 C1.70021779,18.6217364 1.68762443,18.5795232 1.69081803,18.539032 C1.69321266,18.5087548 1.68569881,18.476718 1.70498032,18.4485204 Z' id='Path' transform='translate(5.526576, 19.681312) rotate(-17.000000) translate(-5.526576, -19.681312) '%3E%3C/path%3E %3Cpath d='M5.76695736,9.9311282 C5.77563926,9.09959716 5.90400232,8.34886855 6.19923011,7.62536457 C6.42192668,7.07831936 6.72612321,6.57741564 7.14815709,6.14520124 C7.60266222,5.678609 8.14120823,5.34264903 8.78924178,5.18198408 C9.43727995,5.02058425 10.0729119,5.06134574 10.6967132,5.27376885 C11.2461767,5.46131514 11.7246744,5.7595417 12.1489148,6.13711085 C12.8263309,6.7390257 13.3094182,7.46784127 13.6517869,8.28610519 C13.8693111,8.80645339 14.0179875,9.34487802 14.1012789,9.90025467 C14.1484503,10.215201 14.1748692,10.5328519 14.17977,10.852845 C14.1845351,11.2555088 14.155517,11.656919 14.0835133,12.0549297 C13.9339059,12.8866269 13.6345102,13.6623315 13.1048904,14.349857 C12.7754342,14.7763356 12.3765509,15.1297738 11.8880427,15.3856833 C11.342133,15.6713535 10.7588549,15.7930252 10.1428119,15.7514036 C9.58587574,15.7141806 9.07317053,15.5433007 8.59564011,15.2744617 C7.97270476,14.9242499 7.46958711,14.4498183 7.05186589,13.8903337 C6.55647023,13.2258956 6.21780832,12.4899105 6.0054467,11.6980045 C5.88913213,11.2648231 5.81587239,10.8240179 5.78412454,10.3767011 C5.77135566,10.208871 5.76051373,10.0399263 5.76695736,9.9311282 Z' id='Path' transform='translate(9.972656, 10.421333) rotate(-17.000000) translate(-9.972656, -10.421333) '%3E%3C/path%3E %3Cpath d='M33.1148842,11.4930389 C33.1146843,11.5248474 33.1144821,11.5570214 33.1142799,11.5891955 C33.0706185,12.3872127 32.8401968,13.1396272 32.4712485,13.8581955 C32.1809561,14.4212467 31.8117486,14.9350809 31.3559494,15.3913385 C30.7710267,15.9778438 30.0937698,16.436614 29.2901178,16.7144895 C28.808701,16.8809904 28.3135061,16.9645884 27.802366,16.9411676 C27.047831,16.9057759 26.3905162,16.651134 25.8393701,16.1676793 C25.3843124,15.7680638 25.0855858,15.274952 24.8989414,14.7189718 C24.7308713,14.2206375 24.6649274,13.706295 24.6856139,13.1818931 C24.730347,12.028872 25.1222492,10.9785582 25.7957205,10.0152849 C26.0230764,9.68917894 26.2835131,9.38772224 26.5750935,9.11165839 C27.1749578,8.54589671 27.8594176,8.10938198 28.6683056,7.85925863 C29.1283078,7.71812096 29.5978872,7.65186995 30.0784406,7.68426064 C30.8124073,7.73331108 31.451146,7.99209327 31.9853353,8.46797879 C32.467258,8.89740174 32.7696035,9.4296095 32.9505707,10.0280356 C33.0505185,10.3586297 33.1079058,10.6971735 33.1177151,11.0426023 C33.1175129,11.0747763 33.1173084,11.107316 33.1171062,11.13949 C33.1125016,11.2572425 33.1121481,11.3749678 33.1148842,11.4930389 Z' id='Path' transform='translate(28.899825, 12.310610) rotate(-17.000000) translate(-28.899825, -12.310610) '%3E%3C/path%3E %3C/g%3E %3C/g%3E %3C/g%3E %3C/svg%3E");
}
.home-service .benessere .pulizie-icon {
  background-image: url("data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E %3Csvg width='70px' height='70px' viewBox='0 0 70 70' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E %3C!-- Generator: Sketch 58 (84663) - https://sketch.com --%3E %3Ctitle%3EPulizia%3C/title%3E %3Cdesc%3ECreated with Sketch.%3C/desc%3E %3Cg id='Pulizia' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E %3Cg id='Group' transform='translate(15.000000, 2.000000)' fill='%23FFFFFF' fill-rule='nonzero'%3E %3Cpath d='M1.18805828,66 L36.8124176,66 C37.20956,66 37.5804284,65.8186358 37.8006683,65.5166391 C38.0209083,65.2146424 38.0613602,64.8320277 37.9084603,64.4970878 L32.062503,51.6762162 L32.062503,46.4675676 C32.062504,46.0934234 31.8515848,45.7456694 31.504388,45.547373 L23.5370328,40.4396419 L23.5370328,4.1472973 C23.5370328,2.34938654 21.9230769,0 19.0002379,0 C16.0773989,0 14.463443,2.34938654 14.463443,4.1472973 L14.463443,40.4396419 L6.49608781,45.547373 C6.14889106,45.7456694 5.93797189,46.0934234 5.93797285,46.4675676 L5.93797285,51.8932432 C5.94561074,51.9639512 5.96112842,52.0337617 5.98428452,52.1015892 L0.0991403667,64.4808108 C-0.0611235445,64.8163732 -0.0254073516,65.2031615 0.194124229,65.509438 C0.413655811,65.8157146 0.787398669,66 1.18805828,66 Z M17,5.11393881 C17,4.43846664 17.2730373,3 18.870307,3 C20.4675768,3 21,4.3204456 21,4.99591777 L21,39.881979 L17,40 L17,5.11393881 Z M8.15302491,53 L30.0569395,53 L35,64 L31.7022539,64 L29.6002372,58.1524 C29.3932124,57.5752624 28.7208428,57.2630258 28.0984579,57.455 C27.4760729,57.6469742 27.1393571,58.2704624 27.346382,58.8476 L29.202847,64 L25.7710558,64 L23.6690391,58.1524 C23.5351175,57.7790574 23.1965777,57.5003269 22.7809442,57.4212034 C22.3653108,57.34208 21.9357284,57.4745843 21.6540165,57.7688034 C21.3723047,58.0630225 21.2812622,58.4742575 21.4151839,58.8476 L23.2716489,64 L14.6998814,64 L16.5516014,58.8476 C16.6855231,58.4742575 16.5944806,58.0630225 16.3127687,57.7688034 C16.0310569,57.4745843 15.6014745,57.34208 15.1858411,57.4212034 C14.7702076,57.5003269 14.4316678,57.7790574 14.2977461,58.1524 L12.2004745,64 L8.76868327,64 L10.6204033,58.8476 C10.754325,58.4742575 10.6632825,58.0630225 10.3815706,57.7688034 C10.0998588,57.4745843 9.67027642,57.34208 9.25464297,57.4212034 C8.83900953,57.5003269 8.50046965,57.7790574 8.36654804,58.1524 L6.26927639,64 L3,64 L8.15302491,53 Z' id='Shape'%3E%3C/path%3E %3Cpath d='M29.5,38 L31,38 L31,39.5 C31,40.3284271 31.6715729,41 32.5,41 C33.3284271,41 34,40.3284271 34,39.5 L34,38 L35.5,38 C36.3284271,38 37,37.3284271 37,36.5 C37,35.6715729 36.3284271,35 35.5,35 L34,35 L34,33.5 C34,32.6715729 33.3284271,32 32.5,32 C31.6715729,32 31,32.6715729 31,33.5 L31,35 L29.5,35 C28.6715729,35 28,35.6715729 28,36.5 C28,37.3284271 28.6715729,38 29.5,38 Z' id='Path'%3E%3C/path%3E %3Cpath d='M37.5,46 L39,46 L39,47.5 C39,48.3284271 39.6715729,49 40.5,49 C41.3284271,49 42,48.3284271 42,47.5 L42,46 L43.5,46 C44.3284271,46 45,45.3284271 45,44.5 C45,43.6715729 44.3284271,43 43.5,43 L42,43 L42,41.5 C42,40.6715729 41.3284271,40 40.5,40 C39.6715729,40 39,40.6715729 39,41.5 L39,43 L37.5,43 C36.6715729,43 36,43.6715729 36,44.5 C36,45.3284271 36.6715729,46 37.5,46 Z' id='Path'%3E%3C/path%3E %3C/g%3E %3C/g%3E %3C/svg%3E");
}

