.satisfi_loaderContainer {
    position: absolute;
    z-index: 99999;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.satisfi_loading {
    display: block;
    width: 200px;
    overflow: hidden;
    position: relative;
    height: 2px;
    background-color: #ddd;
    box-shadow: #bbb 0 1px 2px;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0, 1);
    transform-origin: left center;
    animation: fade-in .3s ease-in;
}

.satisfi_loading:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #666;
    transform: scale3d(0, 1, 1) translate3d(0, 0, 0);
    animation: movetoright 1s cubic-bezier(0.4, 0, 0, 1) infinite;
    transform-origin: left center;
}

@keyframes movetoright {
    0% {
        transform: scale3d(0, 1, 1) translate3d(0, 0, 0);
    }
    50% {
        transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    }
    100% {
        transform: scale3d(1, 1, 1) translate3d(100%, 0, 0);
    }
}

@keyframes fade-in {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}
.satisfi_chat.satisfi_standalone {
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
}

.satisfi_chat {
    font-family: var(--chatFontFamily), "Twemoji Country Flags", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 16px !important;
    font-weight: 400;
    line-height: var(--chatLineHeight);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    overflow: hidden;
    position: fixed;
    z-index: 2147483647;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    background-color: var(--chatContainerBgColor);
    width: 100%;
    height: 100%;
    border: var(--chatBorder);
    box-shadow: var(--chatShadow);
    border-radius: 5px;
}

.satisfi_chatContainer {
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.satisfi_chatContainer_iframe {
    height: 100%;
    width: 100%;
    border: 0px;
}

.satisfi_chatBody {
    flex-grow: 1;
    overflow: auto;
    background-color: var(--chatContainerBgColor);
    -webkit-overflow-scrolling: touch;
    position: relative;
}

.satisfi_chatBody .satisfi_messages {
    margin-bottom: 1rem;
    padding: 0.5rem;
    position: relative;
    z-index: 10;
}

.satisfi_chatBody section {
    margin: .4rem 0;
    overflow: hidden;
}

.satisfi_tagline {
    position: fixed;
    z-index: 5;
    bottom: 0;
    width: 100%;
    text-align: center;
    font-size: .6rem;
    color: #bbb;
}

.satisfi_chat .satisfi_tagline a {
    text-decoration: none;
}

.satisfi_chat .satisfi_tagline a,
.satisfi_chat .satisfi_tagline a:hover {
    font-size: .6rem;
    color: #bbb;
    text-underline-offset: initial;
    text-decoration-thickness: initial;
}

.satisfi_chat a {
    color: var(--anchorTxtColor);
    text-decoration: underline;
    background-color: transparent;
    font-weight: 500;
    text-decoration-thickness: 0.0625rem;
    text-underline-offset: 0.05em;
    touch-action: manipulation;
    transition: color 200ms ease-out;
}
.satisfi_chat a:focus {
    outline: 2px solid var(--buttonLinkFocusColor);
    outline-offset: 2px;
}

.satisfi_headerContainer {
    position: relative;
    height: var(--headerHeight);
    background: var(--headerBg);
    font-size: var(-headerTextFontSize);
    color: var(--headerTextColor);
    box-shadow: 0 0 10px var(--headerShadowColor);
    z-index: 15;
    width: 100%;
}

.satisfi_headerContainer h1 {
    margin: 0;
    vertical-align: middle;
    padding: 0 30px;
    line-height: var(--headerHeight);
    font-size: var(--headerTextFontSize);
    text-align: center;
    color: var(--headerTextColor);
    font-weight: bold;
    font-family: var(--chatFontFamily), "Twemoji Country Flags", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.satisfi_headerContainer .satisfi_logo {
    background-image: var(--headerLogoImage);
    background-position: center;
    background-size: auto calc(var(--headerHeight) - 15px);
    background-repeat: no-repeat;
    font-size: 0;
    color: transparent;
    padding: 0;
    margin-bottom: 0;
    height: var(--headerHeight);
}

.satisfi_headerContainer .satisfi_back {
    position: absolute;
    top: 0;
    border: 0;
    width: 30px;
    height: 30px;
    margin: 5px 0px;
    padding: 0;
    background-color: transparent;
    vertical-align: bottom;
    transition: color 0.3s;
    left: 0;
    z-index: 15;
    color: var(--headerIconColor);
}

.satisfi_headerContainer .satisfi_back:hover {
    color: var(--headerIconColorHover);
}

.satisfi_headerContainer .satisfi_back:focus {
  box-shadow: inset 0 0 1px 2px var(--headerIconFocusColor) !important;
  outline: none !important;
}

.satisfi_headerContainer svg path,
.satisfi_headerContainer svg rect {
    fill: currentcolor;
}

.satisfi_headerContainer .satisfi_logoUrl:hover{
    cursor: pointer;
  }

.satisfi_card {
    background: var(--cardBgColor);
    color: var(--cardTxtColor);
    clear: both;
    max-width: 80%;
    word-wrap: break-word;
    padding: .6rem 1rem;
    margin: 0 auto;
    position: relative;
    border: var(--cardBorder);
    border-radius: var(--cardRadius);
    overflow: hidden;
    text-align: center;
}

.satisfi_p_message {
    text-align: left;
}

.satisfi_message_image {
    max-width: 100%;
    max-height: 100%;
    margin: 0.4rem 0;
}

.satisfi_message_image_mobile {
    height: 150px;
    width: 100%;
}
.satisfi_btn{
    -webkit-appearance: button;
    cursor: pointer;
    background-image: none;
    text-shadow: none;
    text-transform: none;
    overflow: visible;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    box-shadow: none;
    width: 95%;
    background-color: var(--buttonPrimaryBgColor);
    color: var(--buttonPrimaryTxtColor);
    border: var(--buttonPrimaryBorder);
    border-radius: var(--buttonBorderRadius);
    padding: 9px 16px;
    margin: 3.5px 0;
    line-height: 1!important;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.satisfi_btn:hover {
    background-color: var(--buttonPrimaryBgColorHover);
    color: var(--buttonPrimaryTxtColorHover);
    border: var(--buttonPrimaryBorderHover);
}

.satisfi_btn:focus{
    box-shadow: inset 0 0 1px 2px var(--buttonPrimaryFocusColor) !important;
    outline: none !important;
}

@media only screen and (max-width: 600px) and (hover: none) {
    /* For mobile phones: */
    .satisfi_btn {
        padding: 14px 16px;
    }
	.satisfi_link_button {
        padding: 14px 16px !important;
    }
}
@font-face {
  font-family: GothamSSm-Medium_Web;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/GothamSSm-Medium_Web.otf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/GothamSSm-Medium_Web.otf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/GothamSSm-Medium_Web.otf") format("woff"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/GothamSSm-Medium_Web.otf") format("woff2"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/GothamSSm-Medium_Web.woff2") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/GothamSSm-Medium_Web.woff2") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/GothamSSm-Medium_Web.woff2") format("woff"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/GothamSSm-Medium_Web.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Whitney;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Whitney-Medium.otf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Whitney-Medium.otf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Whitney-Medium.otf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Chronicle Display Extra Light;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/ChronicleDisplay-XLight.otf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/ChronicleDisplay-XLight.otf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/ChronicleDisplay-XLight.otf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Circular Air Pro;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Circular Air Pro-Book.otf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Circular Air Pro-Book.otf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Circular Air Pro-Book.otf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Circular Air Pro-Black Italic;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Circular Air Pro-Black Italic.otf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Circular Air Pro-Black Italic.otf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Circular Air Pro-Black Italic.otf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Circular Air Pro-Black;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Circular Air Pro-Black.otf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Circular Air Pro-Black.otf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Circular Air Pro-Black.otf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Circular Air Pro-Bold Italic;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Circular Air Pro-Bold Italic.otf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Circular Air Pro-Bold Italic.otf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Circular Air Pro-Bold Italic.otf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Circular Air Pro-Bold;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Circular Air Pro-Book.otf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Circular Air Pro-Book.otf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Circular Air Pro-Book.otf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Circular Air Pro-Book Italic;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Circular Air Pro-Book Italic.otf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Circular Air Pro-Book Italic.otf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Circular Air Pro-Book Italic.otf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Circular Air Pro-Book;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Circular Air Pro-Book.otf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Circular Air Pro-Book.otf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Circular Air Pro-Book.otf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Circular Air Pro-Cond Bold;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Circular Air Pro-Cond Bold.otf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Circular Air Pro-Cond Bold.otf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Circular Air Pro-Cond Bold.otf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Circular Air Pro-Cond Book;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Circular Air Pro-Cond Book.otf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Circular Air Pro-Cond Book.otf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Circular Air Pro-Cond Book.otf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Circular Air Pro-ExtraBlack Italic;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Circular Air Pro-ExtraBlack Italic.otf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Circular Air Pro-ExtraBlack Italic.otf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Circular Air Pro-ExtraBlack Italic.otf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Circular Air Pro-ExtraBlack;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Circular Air Pro-ExtraBlack.otf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Circular Air Pro-ExtraBlack.otf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Circular Air Pro-ExtraBlack.otf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Circular Air Pro-Light Italic;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Circular Air Pro-Light Italic.otf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Circular Air Pro-Light Italic.otf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Circular Air Pro-Light Italic.otf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Circular Air Pro-Light;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Circular Air Pro-Light.otf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Circular Air Pro-Light.otf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Circular Air Pro-Light.otf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Circular Air Pro-Medium Italic;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Circular Air Pro-Medium Italic.otf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Circular Air Pro-Medium Italic.otf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Circular Air Pro-Medium Italic.otf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Circular Air Pro-Medium;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Circular Air Pro-Medium") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Circular Air Pro-Medium") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Circular Air Pro-Medium") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Tribe Type;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/TribeType.otf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/TribeType.otf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/TribeType.otf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Verlag Book;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/VERLAG-BOOK.OTF") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/VERLAG-BOOK.OTF") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/VERLAG-BOOK.OTF") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Verlag Book Italic;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/VERLAG-BOOK-ITALIC.OTF") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/VERLAG-BOOK-ITALIC.OTF") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/VERLAG-BOOK-ITALIC.OTF") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Gotham-Bold;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Gotham-Bold.ttf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Gotham-Bold.ttf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Gotham-Bold.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Gotham-Bold Italic;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Gotham-BoldItalic.ttf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Gotham-BoldItalic.ttf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Gotham-BoldItalic.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Gotham-Book;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Gotham-Book.ttf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Gotham-Book.ttf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Gotham-Book.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Gotham-Book Italic;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Gotham-BookItalic.ttf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Gotham-BookItalic.ttf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Gotham-BookItalic.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Gotham-Light;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Gotham-Light.ttf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Gotham-Light.ttf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Gotham-Light.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Gotham-Thin;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Gotham-Thin.ttf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Gotham-Thin.ttf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Gotham-Thin.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Gotham-XLight Italic;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Gotham-XLightItalic.ttf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Gotham-XLightItalic.ttf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Gotham-XLightItalic.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Industria Solid;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Industria Solid.ttf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Industria Solid.ttf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Industria Solid.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Industria-SolidA;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Industria-SolidA.otf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Industria-SolidA.otf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Industria-SolidA.otf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: OKC Industria;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/OKC Industria.ttf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/OKC Industria.ttf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/OKC Industria.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Lato-Regular;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Lato-Regular.ttf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Lato-Regular.ttf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Lato-Regular.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Lato-Italic;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Lato-Italic.ttf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Lato-Italic.ttf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Lato-Italic.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Lato-Bold;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Lato-Bold.ttf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Lato-Bold.ttf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Lato-Bold.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Gotham-Medium;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Gotham-Medium.ttf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Gotham-Medium.ttf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Gotham-Medium.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Gotham-Medium Italic;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Gotham-MediumItalic.ttf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Gotham-MediumItalic.ttf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Gotham-MediumItalic.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Juliet;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Juliet.TTF") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Juliet.TTF") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Juliet.TTF") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Whoopass;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Whoopass.TTF") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Whoopass.TTF") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Whoopass.TTF") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: MontserratRegular;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/MontserratRegular.ttf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/MontserratRegular.ttf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/MontserratRegular.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: MontserratBold;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/MontserratBold.ttf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/MontserratBold.ttf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/MontserratBold.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: HelveticaNeue;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Helvetica.otf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Helvetica.otf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Helvetica.otf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Oswald Light;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Oswald-Light.ttf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Oswald-Light.ttf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Oswald-Light.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Oswald Regular;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Oswald-Regular.ttf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Oswald-Regular.ttf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Oswald-Regular.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Oswald Bold;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Oswald-Bold.ttf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Oswald-Bold.ttf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Oswald-Bold.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: HelveticaNeueBold;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/helvetica-neue-bold.ttf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/helvetica-neue-bold.ttf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/helvetica-neue-bold.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Muli-Regular;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Muli-Regular.ttf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Muli-Regular.ttf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Muli-Regular.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Muli-Light;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Muli-Light.ttf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Muli-Light.ttf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Muli-Light.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Muli-Italic;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Muli-Italic.ttf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Muli-Italic.ttf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Muli-Italic.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Muli-LightItalic;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Muli-LightItalic.ttf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Muli-LightItalic.ttf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Muli-LightItalic.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Gesta Medium;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Gesta-W01-Medium.ttf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Gesta-W01-Medium.ttf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Gesta-W01-Medium.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Huggable;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Huggable.TTF") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Huggable.TTF") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Huggable.TTF") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Utopia-Bold;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Utopia-Bold.ttf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Utopia-Bold.ttf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Utopia-Bold.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Bucaneers;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Bucaneers.ttf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Bucaneers.ttf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Bucaneers.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Roboto-Italic;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Roboto-Italic.ttf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Roboto-Italic.ttf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Roboto-Italic.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Roboto-Light;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Roboto-Light.ttf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Roboto-Light.ttf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Roboto-Light.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Roboto-LightItalic;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Roboto-LightItalic.ttf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Roboto-LightItalic.ttf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Roboto-LightItalic.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Roboto-Medium;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Roboto-Medium.ttf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Roboto-Medium.ttf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Roboto-Medium.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Roboto-MediumItalic;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Roboto-MediumItalic.ttf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Roboto-MediumItalic.ttf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Roboto-MediumItalic.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Roboto-Regular;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Roboto-Regular.ttf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Roboto-Regular.ttf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Roboto-Regular.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Roboto-Bold;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Roboto-Bold.ttf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Roboto-Bold.ttf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Roboto-Bold.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Roboto-BoldItalic;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Roboto-BoldItalic.ttf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Roboto-BoldItalic.ttf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Roboto-BoldItalic.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: InterstateCond;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/InterstateCond.ttf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/InterstateCond.ttf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/InterstateCond.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Helvetica Neue LT Light;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Helvetica-Neue-LT-Light.ttf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Helvetica-Neue-LT-Light.ttf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Helvetica-Neue-LT-Light.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Helvetica Neue LT Roman;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Helvetica Neue LT Com 55 Roman.ttf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Helvetica Neue LT Com 55 Roman.ttf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Helvetica Neue LT Com 55 Roman.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Helvetica Neue LT Medium;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Helvetica Neue LT Com 65 Medium.ttf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Helvetica Neue LT Com 65 Medium.ttf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Helvetica Neue LT Com 65 Medium.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Bodoni Std Bold Italic;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/BodoniStd BoldItalic.otf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/BodoniStd BoldItalic.otf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/BodoniStd BoldItalic.otf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Nana Mi Pro Bold;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/nanamipro-bold-webfont.ttf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/nanamipro-bold-webfont.ttf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/nanamipro-bold-webfont.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Nana Mi Pro Medium;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/nanamipro-medium-webfont.ttf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/nanamipro-medium-webfont.ttf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/nanamipro-medium-webfont.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Nana Mi Pro Normal;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/nanamipro-normal-webfont.ttf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/nanamipro-normal-webfont.ttf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/nanamipro-normal-webfont.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Cera PRO Bold;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/CeraPRO Bold.otf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/CeraPRO Bold.otf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/CeraPRO Bold.otf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Cera PRO Light;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/CeraPRO light.otf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/CeraPRO light.otf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/CeraPRO light.otf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Cera PRO Light Italic;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/CeraPRO LightItalic.otf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/CeraPRO LightItalic.otf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/CeraPRO LightItalic.otf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: NotoSans-Italic;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/NotoSans-Italic.ttf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/NotoSans-Italic.ttf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/NotoSans-Italic.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: NotoSans-Regular;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/NotoSans-Regular.ttf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/NotoSans-Regular.ttf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/NotoSans-Regular.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: NotoSans-Bold;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/NotoSans-Bold.ttf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/NotoSans-Bold.ttf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/NotoSans-Bold.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: NotoSans-BoldItalic;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/NotoSans-BoldItalic.ttf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/NotoSans-BoldItalic.ttf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/NotoSans-BoldItalic.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Rockwell-ExtraBold;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Rockwell-ExtraBold.TTF") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Rockwell-ExtraBold.TTF") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Rockwell-ExtraBold.TTF") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Rockwell-Italic;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Rockwell-Italic.TTF") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Rockwell-Italic.TTF") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Rockwell-Italic.TTF") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: ATL-DIN-Black;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/DIN-Black.otf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/DIN-Black.otf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/DIN-Black.otf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: ATL-DIN-BlackAlternate;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/DIN-BlackAlternate.otf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/DIN-BlackAlternate.otf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/DIN-BlackAlternate.otf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: ATL-DIN-Bold;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/DIN-Bold.otf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/DIN-Bold.otf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/DIN-Bold.otf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: ATL-DIN-BoldAlternate;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/DIN-BoldAlternate.otf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/DIN-BoldAlternate.otf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/DIN-BoldAlternate.otf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: ATL-DINEngschriftStd;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/DINEngschriftStd.otf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/DINEngschriftStd.otf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/DINEngschriftStd.otf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: ATL-DIN-Light;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/DIN-Light.otf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/DIN-Light.otf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/DIN-Light.otf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: ATL-DIN-LightAlternate;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/DIN-LightAlternate.otf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/DIN-LightAlternate.otf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/DIN-LightAlternate.otf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: ATL-DIN-Medium;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/DIN-Medium.otf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/DIN-Medium.otf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/DIN-Medium.otf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: ATL-DIN-MediumAlternate;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/DIN-MediumAlternate.otf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/DIN-MediumAlternate.otf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/DIN-MediumAlternate.otf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: ATL-DIN-MittelschriftStd;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/DINMittelschriftStd.otf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/DINMittelschriftStd.otf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/DINMittelschriftStd.otf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: ATL-DIN-Regular;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/DIN-Regular.otf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/DIN-Regular.otf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/DIN-Regular.otf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: ATL-DIN-RegularAlternate;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/DIN-RegularAlternate.otf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/DIN-RegularAlternate.otf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/DIN-RegularAlternate.otf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: ATL-United-Headline;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/ATL_United-Headline.otf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/ATL_United-Headline.otf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/ATL_United-Headline.otf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: ATL-United-Letter;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/ATL_United-Letter.otf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/ATL_United-Letter.otf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/ATL_United-Letter.otf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: OpenSans-SemiboldItalic;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/OpenSans-SemiboldItalic.ttf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/OpenSans-SemiboldItalic.ttf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/OpenSans-SemiboldItalic.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: OpenSans-Bold;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/OpenSans-Bold.ttf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/OpenSans-Bold.ttf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/OpenSans-Bold.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: OpenSans-BoldItalic;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/OpenSans-BoldItalic.ttf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/OpenSans-BoldItalic.ttf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/OpenSans-BoldItalic.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: OpenSans-ExtraBold;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/OpenSans-ExtraBold.ttf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/OpenSans-ExtraBold.ttf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/OpenSans-ExtraBold.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: OpenSans-ExtraBoldItalic;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/OpenSans-ExtraBoldItalic.ttf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/OpenSans-ExtraBoldItalic.ttf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/OpenSans-ExtraBoldItalic.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: OpenSans-Italic;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/OpenSans-Italic.ttf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/OpenSans-Italic.ttf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/OpenSans-Italic.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: OpenSans-Light;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/OpenSans-Light.ttf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/OpenSans-Light.ttf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/OpenSans-Light.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: OpenSans-LightItalic;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/OpenSans-LightItalic.ttf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/OpenSans-LightItalic.ttf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/OpenSans-LightItalic.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: OpenSans-Regular;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/OpenSans-Regular.ttf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/OpenSans-Regular.ttf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/OpenSans-Regular.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: OpenSans-Semibold;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/OpenSans-Semibold.ttf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/OpenSans-Semibold.ttf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/OpenSans-Semibold.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Rockwell;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Rockwell.TTF") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Rockwell.TTF") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Rockwell.TTF") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Rockwell-Bold;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Rockwell-Bold.TTF") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Rockwell-Bold.TTF") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Rockwell-Bold.TTF") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Rockwell-Bold-Italic;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Rockwell-Bold-Italic.TTF") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Rockwell-Bold-Italic.TTF") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Rockwell-Bold-Italic.TTF") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Rockwell-Condensed;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Rockwell-Condensed.TTF") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Rockwell-Condensed.TTF") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/Rockwell-Condensed.TTF") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: HoeflerText-Black;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/HoeflerText-Black-02.ttf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/HoeflerText-Black-02.ttf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/HoeflerText-Black-02.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: HoeflerText-BlackItalic;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/HoeflerText-BlackItalic-04.ttf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/HoeflerText-BlackItalic-04.ttf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/HoeflerText-BlackItalic-04.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: HoeflerText-Italic;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/HoeflerText-Italic-03.ttf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/HoeflerText-Italic-03.ttf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/HoeflerText-Italic-03.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: HoeflerText-Regular;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/HoeflerText-Regular.ttf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/HoeflerText-Regular.ttf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/HoeflerText-Regular.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: CenturyGothic;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/CenturyGothic.otf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/CenturyGothic.otf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/CenturyGothic.otf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: CenturyGothicBold;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/CenturyGothicBold.otf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/CenturyGothicBold.otf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/CenturyGothicBold.otf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: CenturyGothicBoldItalic;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/CenturyGothicBoldItalic.otf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/CenturyGothicBoldItalic.otf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/CenturyGothicBoldItalic.otf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: CenturyGothicItalic;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/CenturyGothicItalic.otf") format("opentype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/CenturyGothicItalic.otf") format("truetype"), url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/CenturyGothicItalic.otf") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Twemoji Country Flags";
  unicode-range: U+1F1E6-1F1FF, U+1F3F4, U+E0062-E0063, U+E0065, U+E0067, U+E006C, U+E006E, U+E0073-E0074, U+E0077, U+E007F;
  src: url("https://prod-satisfilabs-resources-gcs.satis.fi/ClientAssets/Fonts/TwemojiCountryFlags.woff2") format("woff2");
  font-display: swap;
}


