/* Copyright FUZE Framework - Ebbers Media BV | Fuze - CSS */
html {
  margin:0;
  padding:0;
  border:0;
}

body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, code,
del, dfn, em, img, q, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
hgroup, nav, section {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
* { box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing: border-box;}

/* This helps to make newer HTML5 elements behave like DIVs in older browers */
article, aside, details, figcaption, figure, dialog,
footer, header, hgroup, menu, nav, section, main {
    display:block;
}

button { -webkit-appearance:none;}

/* Line-height should always be unitless! */
body {
  line-height: 130%; /*1.5*/
  background: white;
}

/* Tables still need 'cellspacing="0"' in the markup. */
table {
  border-collapse: separate;
  border-spacing: 0;
}
/* float:none prevents the span-x classes from breaking table-cell display */
caption, th, td {
  text-align: left;
  font-weight: normal;
  float:none !important;
}
table, th, td {
  vertical-align: middle;
}
input, button,select { border:none;border-radius:0px;}
textarea { resize:vertical;}
/* DELETE Remove possible quote marks (") from <q>, <blockquote>. */
blockquote:before, blockquote:after, q:before, q:after { content: ''; }
blockquote, q { quotes: ""; }

/* Remove annoying border on linked images. */
a img { border: none; }
img { display:block;}
/* Remember to define your own focus styles! */
:focus { outline: 0; }

@media handheld, screen and (max-width: 768px) {
	input[type=text],
	input[type=tel],
	input[type=number],
	input[type=password],
	input[type=email],
	textarea { font-size:16px !important;}
}/*
	© FUZE Framework - Ebbers Media BV
*/

/* Html en Body
----------------------------------------------------------*/

html {
    overflow-x: hidden;
}
body.body-local::before {
    /* content: ''; */
    background-image: url(../images/designs/contentpagina.png);
    position: absolute;
    top: 97px;
    left: 0px;
    z-index: 999;
    width: 100%;
    height: 4672px;
    background-position: top center;
    background-repeat: no-repeat;
    opacity: 0.5;
    pointer-events: none;
}

body.filter-open {
    overflow: hidden;
}

body {
    font-family: "Heebo", Arial, Helvetica, Sans-serif;
    min-height: 100%;
    line-height: 30px;
    font-size: 18px;
    background: #fff;
    color: #303e4d;
    width: 100vw;
    overflow-x: hidden;
}

body.is-mobile .quantity-container .quantity-nav{
    display: none;
}

body.is-mobile .quantity-container input[type="number"] {
    padding-right: 0;
}

* {
    font-variant-ligatures: none;
}

.colfull {
    max-width: 1320px;
    position: relative;
}

.colfull.small {
    max-width: 800px;
}

.colfull.wide {
    max-width: 1000px;
}

.auto {
    margin: auto;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.divide.full {
    width: 100%;
}

.divide.threequarter {
    width: 75%;
}

.divide.half {
    width: 50%;
}

.divide.third {
    width: 33.33%;
}

.divide.twoThird {
    width: 66.66%;
}

.divide.fourth {
    width: 25%;
}

.divide.fifth {
    width: 20%;
}

.clr {
    clear: both;
}

.clear::after {
    content: "";
    display: block;
    clear: both;
}

.table {
    display: table;
}

.row {
    display: table-row;
}

.cell {
    display: table-cell;
}

#container {
    overflow: hidden;
}

#wrapper {
    position: relative;
    transition: left 0.1s ease-in;
    left: 0px;
    width: 100%;
}

#wrapper.open {
    left: -325px;
}

.fancybox-bg {
    width: 100%;
    height: 100%;
}

/* Tekst standaarden
----------------------------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Dosis", sans-serif;
}

h1 {
    font-size: 48px;
    line-height: 56px;
}

h2 {
    font-size: 36px;
    line-height: 46px;
}

h3 {
    font-size: 28px;
    line-height: 38px;
}

h4 {
    font-size: 18px;
    line-height: 28px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 12px;
}

.page-loop {
    font-family: "Dosis", sans-serif;
    font-size: 16px;
    line-height: 26px;
    color: #000;
}

.page-loop a:not(.button):not(.btn) {
    color: #e71b23;
}

.page-loop a:not(.button):not(.btn):hover {
    text-decoration: none;
}

.page-loop .button:not(:last-child),
.page-loop h3:not(:last-child),
.page-loop p:not(:last-child),
.page-loop table:not(:last-child),
.page-loop blockquote:not(:last-child) {
    margin-bottom: 26px;
}

.page-loop p em{
    font-style: italic;
}

.page-loop ul {
    margin-bottom: 20px;
}

.page-loop ol {
    margin-bottom: 20px;
    counter-reset: my-awesome-counter;
}

.page-loop ul li{
    position: relative;
    padding-left: 20px;
    list-style: none;
}

.page-loop ol li{
    position: relative;
    padding-left: 20px;
    counter-increment: my-awesome-counter;
    list-style: none;
}

.page-loop ul li::before {
    position: absolute;
    content: "\f0da";
    font-family: "Font Awesome 5 Pro";
    font-weight: bold;
    left: 0px;
}

.page-loop ol li::before {
    position: absolute;
    content: counter(my-awesome-counter)".";
    /* font-weight: bold; */
    left: 0px;  
}

.page-loop table tr td{
    padding: 12px;
}

.page-loop table tr:nth-child(odd) td {
    background: #FBFAF5;
}

section:not(.quote) .page-loop blockquote{
    border-left: 2px solid #e71b23;
    padding-left: 20px;
}

/* Formulieren
----------------------------------------------------------*/

.button {
    display: inline-block;
    padding: 12px 40px;
    border: 3px solid #1a7933;
    text-align: center;
    font-family: "Dosis", sans-serif;
    font-size: 18px;
    line-height: 24px;
    text-decoration: none;
    -webkit-appearance: none;

    transition: all 0.1s ease;
    background: #1a7933;
    color: white;
    cursor: pointer;

    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

.button:hover {
    background: #53b56d;
    border: 3px solid #53b56d;
}

.button.alt-button {
    background: #e71b23;
    border: 3px solid #e71b23;
}

.button.alt-button:hover {
    background: #a50107;
    border: 3px solid #a50107;
}

.button.light-button {
    background: #f2eddd;
    border: 3px solid #f2eddd;
    color: #47412f;
}

.button.light-button:hover {
    background: #dad9d5;
    border: 3px solid #dad9d5;
    color: #47412f;
}

.button.ghost-button {
    background: transparent;
    border: 3px solid #a4a8ab;
    color: #a4a8ab;
}

.button.ghost-button:hover {
    background: transparent;
    border: 3px solid #596572;
    color: #596572;
}

.button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

form .text-input,
form .input-text,
form textarea {
    display: inline-block;
    padding: 12px 23px;
    border: 3px solid #f2f2f2;
    color: #596572;
    font-family: "Dosis", sans-serif;
    font-size: 16px;
    line-height: 24px;
    min-width: 50%;
    -webkit-appearance: none;

    transition: all 0.1s ease;

    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

form textarea {
    width: 100% !important;
    min-height: 160px;
}

form .text-input:hover,
form .input-text:hover,
form textarea:hover {
    border: 3px solid #a4a8ab;
}

form .text-input:active,
form .text-input:focus,
form .input-text:active,
form .input-text:focus,
form textarea:active,
form textarea:focus {
    border: 3px solid #a4a8ab;
}

form .text-input::placeholder,
form .input-text::placeholder,
form textarea::placeholder {
    color: #a4a8ab;
    opacity: 1;
}

form .text-input:-ms-input-placeholder,
form .input-text:-ms-input-placeholder,
form textarea:-ms-input-placeholder {
    color: #a4a8ab;
}

form .text-input::-ms-input-placeholder,
form .input-text::-ms-input-placeholder,
form textarea::-ms-input-placeholder {
    color: #a4a8ab;
}

form .text-input.error,
form .input-text.error,
form textarea.error {
    border: 3px solid #e71b23;
}

.select2-container--default .select2-selection--single {
    height: 54px;
    border: 3px solid #f2f2f2;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 24px;
    padding: 12px 23px;
    color: #596572;
}

.select2-dropdown {
    border: 3px solid #f2f2f2;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 14px;
    right: 14px;
}

form .updated,
form .settings-error {
    display: block;
    text-align: center;
    background-color: #a3f7a3;
    padding: 10px 0;
    margin-bottom: 12px;
}

form .settings-error.error {
    background-color: #f7a3a3;
}

form .settings-error a {
    color: red !important;
}

form .noscript-warning {
    color: red;
    font-style: italic;
    margin-top: 10px;
}

main .notification,
main .woocommerce-notices-wrapper .woocommerce-error,
main .woocommerce-NoticeGroup .woocommerce-error {
    position: relative;
    padding: 22px 40px 22px 80px;

    font-family: "Dosis", sans-serif;
    font-size: 16px;
    line-height: 24px;

    margin-bottom: 22px;
}

main .notification::before,
main .woocommerce-notices-wrapper .woocommerce-error::before,
main .woocommerce-NoticeGroup .woocommerce-error::before {
    position: absolute;
    left: 40px;
    font-family: "Font Awesome 5 Pro";
}

main .notification.error,
main .woocommerce-notices-wrapper .woocommerce-error,
main .woocommerce-NoticeGroup .woocommerce-error {
    background: #f89b96;
}

main .notification.error::before,
main .woocommerce-notices-wrapper .woocommerce-error::before,
main .woocommerce-NoticeGroup .woocommerce-error::before {
    content: "\f00d";
}

main .woocommerce-NoticeGroup .woocommerce-error li {
    padding-left: 0px;
}

main .woocommerce-NoticeGroup .woocommerce-error li::before {
    display: none;
}

main .notification.succes {
    background: #cef4d0;
}

main .notification.succes::before {
    content: "\f00c";
}

.notification span a {
   /* color: #fff !important; */
}

main .woocommerce-notices-wrapper ul li {
    padding-left: 0px;
}

main .woocommerce-notices-wrapper ul li::before {
    display: none;
}

main .form-field {
    padding-bottom: 10px;
}

main .form-field label {
    display: none;
}

main .form-field input.text-input {
    width: 100%;
}

/* Rating
----------------------------------------------------------*/

.rating {
    margin-top: 13px;
    margin-bottom: 20px;
}

.rating ul {
    display: flex;
}

.rating ul li {
    list-style: none;
    margin-right: 3px;
}

.rating ul li.count {
    margin-left: 17px;
    font-family: "Dosis", sans-serif;
    font-size: 16px;
}

.rating ul li.count span {
    text-decoration: underline;
    cursor: pointer;
}

.rating ul li.count span:hover {
    text-decoration: none;
}

.rating ul li i {
    color: #ffaf1a;
}

.rating ul li i.disabled {
    opacity: 0.3;
}

/* Popup
----------------------------------------------------------*/
.popup{
    position: fixed;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    width: 100%;
    height: 100vh;
    top: 0px;
    left: 0px;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.1s ease;
}

body.popup-open .popup{
    opacity: 1;
    visibility: visible;
}

.popup .popup-inner{
    position: absolute;
    top: 0%;
    left: 50%;

    transform: translate(-50%, -50%);

    background: #fff;
    border: 2px solid #E6E5E1;

    max-width: 710px;
    width: 100%;
    padding: 60px;

    transition: all 0.5s ease;

    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

body.popup-open .popup .popup-inner{
    top: 50%;
}

.popup .popup-inner .close{
    position: absolute;
    top: 20px;
    right: 20px;
    width: 24px;
    height: 24px;
    line-height: 24px;
    font-size: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.1s ease;
}

.popup .popup-inner .close:hover{
    color: #e71b23;
}

.popup .popup-inner h3{
    text-align: center;
}

.popup .popup-inner .popup-product{
    margin-top: 8px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    padding: 8px 0px;

    border-top: 1px solid #F2F2F2;
    border-bottom: 1px solid #F2F2F2;
}

.popup .popup-inner .popup-product img{
    margin-right: 8px;
}

.popup .popup-inner .popup-product .gewicht{
    font-size: 12px;
    font-family: "Dosis", sans-serif;
}

.popup .popup-inner .buttons{
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
}

.popup .popup-inner .button{
    display: block;
    width: calc(50% - 8px);
}

.popup .popup-inner .button i{
    margin-right: 10px;
}


/* Header
----------------------------------------------------------*/

#header {
    position: fixed;
    width: 100%;
    background: #f2eddd;
    top: 0px;
    z-index: 100;

    transition: all 0.2s ease;
}

#header .top-header {
    /* border-bottom: 1px solid #ec494f; */
    border-bottom: none;
}

#header .top-header #logo {
    background: #d5171f;
    padding: 53px 10px 20px;
    margin-top: 0px;
    bottom: -85px;

    position: absolute;

    transform: skewY(-5deg);
    z-index: 1;
    transition: all 0.2s ease;
}

#header .top-header #logo img {
    transform: skewY(5deg);
    transition: all 0.2s ease;
}

#header .top-header .inner-top-header {
    display: flex;
    justify-content: space-between;
}

#header .top-header .notification {
    margin-left: 240px;

    color: #000;
    line-height: 38px;
    font-size: 14px;
    text-decoration: none;
    font-family: "Dosis", sans-serif;
    text-align: center;
}
#header .top-header .notification a {
    color: #000;
}

#header .top-header .top-nav .resnav-opener {
    display: none;
}

#header .top-header ul#menu-top-menu {
    /* float: right; */
}

#header .top-header ul#menu-top-menu > li {
    float: left;
    list-style: none;
    margin-left: 50px;
}

#header .top-header ul#menu-top-menu > li > a {
    color: #000;
    line-height: 38px;
    font-size: 14px;
    text-decoration: none;
    font-family: "Dosis", sans-serif;
}

#header .top-header ul#menu-top-menu > li > a:hover,
#header .top-header ul#menu-top-menu > li.current_page_item a {
    text-decoration: underline;
}

#header .search-header {
    /* background: #d8d1bb; */
    /* background: #f2eddd; */
    /*background: #173300; */
    background: #2c4c24;
    max-height: 70px;
}

#header .search-header .inner-search-header {
    display: flex;
    justify-content: space-between;
}

#header .search-header #searchform {
    position: relative;
    display: flex;
    margin: 10px 0px 15px;
    width: 530px;
    margin-left: calc(50% - (530px / 2));
}

#header .search-header #searchform form {
    width: 100%;
}

#header .search-header #searchform .resnav-opener {
    display: none;
}

#header .search-header #searchform input[type="search"] {
    line-height: 20px !important;
    padding: 15px 65px 15px 35px;
    height: 50px !important;
    font-size: 16px;
    font-family: "Dosis", sans-serif;
    width: 100%;
    border: 0px !important;

    -webkit-appearance: none;

    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
}

#header .search-header #searchform button[type="submit"] {
    position: absolute;
    right: 0px;
    top: 0px;

    background: none;
    width: 50px;
    height: 50px;
    -webkit-appearance: none;

    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;

    cursor: pointer;
}

#header .search-header #searchform .dgwt-wcas-preloader:empty{
    opacity: 0;
    visibility: hidden;
}

.dgwt-wcas-close:hover{
    opacity: 1;
}

#header .search-header #searchform .dgwt-wcas-preloader{
    width: 50px;
    height: 50px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    background: #fff;
    justify-content: normal;
}

#header .search-header #searchform .dgwt-wcas-preloader path{
    fill: #484330 !important;
}

.dgwt-wcas-suggestions-wrapp{
    margin-top: 4px;
    border: 2px solid #f2f2f2;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;

    -webkit-box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.05);
    -moz-box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.05);
    box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.05);
}

#header .search-header .right-search-header {
    width: 320px;
    display: flex;
    flex-flow: row;
}

#header .search-header .right-search-header > ul > li {
    float: right;
    list-style: none;
}

#header .search-header .right-search-header > ul > li:not(:first-child) {
    margin-right: 38px;
}

#header .search-header .right-search-header > ul > li > a {
    position: relative;
    display: block;
    padding: 18px 0px;
    height: 75px;
    text-decoration: none;
}

#header .search-header .right-search-header > ul > li > a::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    background: transparent;
    bottom: 0px;
    left: 0px;
    transition: all 0.1s ease;
}

#header .search-header .right-search-header > ul > li > a:hover::after {
    background: #fff;
}

#header .search-header .right-search-header > ul > li.page-account a {
    text-align: right;
}

#header .search-header .right-search-header > ul > li.page-account a > span {
    display: block;
    float: left;
}

#header .search-header .right-search-header > ul > li.page-account a span.label.login {
    padding: 9px 0px;
}

#header .search-header .right-search-header > ul > li.page-account a span.label {
    line-height: 18px;
    font-size: 16px;
    font-family: "Dosis", sans-serif;
    margin-right: 15px;
    color: #fff;
}

#header .search-header .right-search-header > ul > li.page-account a span.label span {
    opacity: 0.7;
}

#header .search-header .right-search-header > ul > li.page-account a span.icon {
    padding: 5px 0px;
}

#header .search-header .right-search-header > ul > li.page-favorite > a,
#header .search-header .right-search-header > ul > li.page-cart > a {
    padding: 25px 0px;
}

#header .search-header .right-search-header > ul > li.page-favorite > a .count,
#header .search-header .right-search-header > ul > li.page-cart > a .count {
    position: absolute;
    background: #1a7933;
    display: block;
    min-width: 22px;
    height: 22px;
    margin-left: -7px;
    margin-top: -10px;
    padding: 3px 2px;
    /* border: 3px solid #e71b23; */
    color: #fff;
    font-family: "Dosis", sans-serif;
    line-height: 16px;
    font-size: 10px;
    text-align: center;

    -webkit-border-radius: 11px;
    -moz-border-radius: 11px;
    border-radius: 11px;
}

#header .search-header .right-search-header > ul > li.page-cart > a img{
    height: 23px;
    display: inline-block;
}

#header .search-header .right-search-header > ul > li.page-cart > a .cart_total{
    color: #fff;
    line-height: 23px;
    display: inline-block;
    top: -4px;
    padding-left: 5px;
    position: relative;
    font-size: 14px;
    font-family: "Dosis", sans-serif;
}

#header .search-header .right-search-header > ul > li.page-cart > a .cart_total .woocommerce-Price-currencySymbol{
    display: none;
}

#header .bottom-header {
    background: #fff;
    border-bottom: 2px solid #f2f2f2;
}

#header .bottom-header .inner-bottom-header {
    padding-left: 215px;
    transition: all 0.2s ease;
}

#header .bottom-header .inner-bottom-header .sec_nav li {
    margin:0;
}
#header .bottom-header .inner-bottom-header .sec_nav li:first-child {
    margin-left:50px;
}
#header .bottom-header .inner-bottom-header > ul,
#header .bottom-header .inner-bottom-header .menu-sticky-top-navigation-container > ul {
    width: 100%;
}

#header .bottom-header .inner-bottom-header > ul > li,
#header .bottom-header .inner-bottom-header .menu-sticky-top-navigation-container > ul > li {
    float: left;
    list-style: none;
}

#header .bottom-header .inner-bottom-header > ul > li:not(:first-child),
#header .bottom-header .inner-bottom-header .menu-sticky-top-navigation-container > ul > li:not(:first-child) {
    margin-left: 50px;
}

#header .bottom-header .inner-bottom-header > ul > li > a,
#header .bottom-header .inner-bottom-header .menu-sticky-top-navigation-container > ul > li > a {
    position: relative;
    display: block;
    color: #000000;
    line-height: 48px;
    font-size: 16px;
    text-decoration: none;
    font-family: "Dosis", sans-serif;
}

#header .bottom-header .inner-bottom-header > ul > li > a::before,
#header .bottom-header .inner-bottom-header .menu-sticky-top-navigation-container > ul > li > a::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    background: transparent;
    bottom: -2px;
    left: 0px;
    transition: all 0.1s ease;
}

#header .bottom-header .inner-bottom-header > ul > li.has_children > a::after,
#header .bottom-header .inner-bottom-header .menu-sticky-top-navigation-container > ul > li.has_children > a::after  {
    content: "\f107";
    font-family: "Font Awesome 5 Pro";
    margin-left: 10px;
    font-weight: 100;
}

#header .bottom-header .inner-bottom-header > ul > li:hover > a::before,
#header .bottom-header .inner-bottom-header > ul > li.current_page_item a::before,
#header .bottom-header .inner-bottom-header > ul > li.current_page_ancestor a::before,
#header .bottom-header .inner-bottom-header .menu-sticky-top-navigation-container > ul > li:hover > a::before,
#header .bottom-header .inner-bottom-header .menu-sticky-top-navigation-container > ul > li.current_page_item a::before,
#header .bottom-header .inner-bottom-header .menu-sticky-top-navigation-container > ul > li.current_page_ancestor a::before {
    background: #484330;
}

#header .bottom-header .inner-bottom-header > ul > li > a img {
    display: inline;
}

#header .bottom-header .inner-bottom-header > ul > li.right {
    float: right;
}

#header .bottom-header .inner-bottom-header > ul ul.dropdown,
#header .bottom-header .inner-bottom-header .menu-sticky-top-navigation-container > ul ul.sub-menu {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    background: #ffffff;
    border: 3px solid #f2f2f2;
    padding: 10px 0px;
    min-width: 180px;
    margin-top: 10px;
    margin-left: -23px;
    transition: all 0.1s ease;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

#header .bottom-header .inner-bottom-header > ul ul.dropdown::before,
#header .bottom-header .inner-bottom-header .menu-sticky-top-navigation-container > ul ul.sub-menu::before {
    content: "";
    position: absolute;
    height: 10px;
    top: -13px;
    left: 0px;
    width: 100%;
    background: none;
}

#header .bottom-header .inner-bottom-header > ul > li:hover ul.dropdown,
#header .bottom-header .inner-bottom-header .menu-sticky-top-navigation-container > ul > li:hover > ul.sub-menu,
#header .bottom-header .inner-bottom-header .menu-sticky-top-navigation-container > ul > li:hover > ul.sub-menu > li:hover > ul.sub-menu {
    visibility: visible;
    opacity: 1;
}

#header .bottom-header .inner-bottom-header > ul ul.dropdown li,
#header .bottom-header .inner-bottom-header .menu-sticky-top-navigation-container > ul ul.sub-menu li {
    list-style: none;
    padding:0px 20px;
}

#header .bottom-header .inner-bottom-header > ul ul.dropdown li a,
#header .bottom-header .inner-bottom-header .menu-sticky-top-navigation-container > ul ul.sub-menu li a {
    color: #000000;
    line-height: 32px;
    font-size: 16px;
    text-decoration: none;
    font-family: "Dosis", sans-serif;
}

#header .bottom-header .inner-bottom-header > ul ul.dropdown li a:hover,
#header .bottom-header .inner-bottom-header .menu-sticky-top-navigation-container > ul ul.sub-menu li a:hover {
    text-decoration: underline;
}
#header .bottom-header .inner-bottom-header .menu-sticky-top-navigation-container > ul ul.sub-menu li.menu-item-has-children{
    transition:all 0.2s ease;
}

#header .bottom-header .inner-bottom-header .menu-sticky-top-navigation-container > ul ul.sub-menu li.menu-item-has-children:hover{
    background-color: #f2f2f2;
}

#header .bottom-header .inner-bottom-header .menu-sticky-top-navigation-container > ul ul.sub-menu li.menu-item-has-children::after {
    font-family: "Font Awesome 5 Pro";
    content: "\f105";
    color: #A4A8AB;
    margin-left: 10px;
    transition: all 0.1s ease;
    float: right;
}

#header .bottom-header .inner-bottom-header .menu-sticky-top-navigation-container > ul ul.sub-menu > .menu-item-has-children > ul.sub-menu{
    position: absolute;
    left: calc(100% + 23px);
    top: -13px;
    height: calc(100% + 6px);
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

#header .bottom-header .inner-bottom-header .menu-sticky-top-navigation-container > ul ul.sub-menu.box-hover{
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

/*  */

/* Spinner
----------------------------------------------------------*/
.spinner {
    visibility: hidden;
    opacity: 0;
    padding: 10px 0px;
    transition: all 0.2s ease;
}

.spinner svg {
    width: 30px;
    transform-origin: center;
    animation: rotate 2s linear infinite;

    position: relative;
    left: calc(50% - 15px);
    top: calc(50% - 15px);
    z-index: 100;
}

.spinner circle {
    fill: none;
    stroke: #000000;
    stroke-width: 1px;
    stroke-dasharray: 100, 100;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    animation: dash 1s ease-in-out infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

/* First level
----------------------------------------------------------*/

/* Second level
----------------------------------------------------------*/

/* Thirth level into infinity
----------------------------------------------------------*/

/* Responsive Menu
----------------------------------------------------------*/
div.res-nav {
    position: fixed;
    z-index: 999;
    top: 0px;
    display: flex;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

div.res-nav::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: all 0.3s ease;
}

body.nav-open div.res-nav::before {
    opacity: 1;
}

div.res-nav .res-nav-inner {
    position: relative;
    width: 320px;
    margin-left: -320px;
    max-width: 100%;
    background: #fff;
    pointer-events: all;
    transition: all 0.3s ease;
}

body.nav-open div.res-nav .res-nav-inner {
    margin-left: 0px;
}

div.res-nav .res-nav-inner .res-nav-inner-container {
    overflow-y: scroll;
    height: calc(100% - 75px);
    padding-bottom: env(safe-area-inset-bottom);
}

div.res-nav .header {
    padding: 30px 15px 15px 15px;
    background: #2c4c24;
    display: flex;
    justify-content: space-between;
    color: #fff;
    font-family: "Dosis", sans-serif;
    font-size: 24px;
}

div.res-nav .header .close {
    margin-right: 10px;
    cursor: pointer;
}

div.res-nav .res-nav-inner .res-nav-inner-container::-webkit-scrollbar {
    display: none;
}

div.res-nav .res-nav-inner .res-nav-inner-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

div.res-nav .resnav-segment {
    padding: 15px 15px 15px 15px;
}

div.res-nav .resnav-segment span.segment-title {
    opacity: 0.5;
    color: #000000;
    font-family: "Dosis", sans-serif;
    font-size: 16px;
    line-height: 32px;
}

div.res-nav .resnav-segment ul li {
    list-style: none;
}

div.res-nav .resnav-segment ul li a {
    display: block;
    position: relative;
    color: #000000;
    font-family: "Dosis", sans-serif;
    font-size: 16px;
    line-height: 48px;
    text-decoration: none;
    border-bottom: 1px solid #f2f2f2;
}

div.res-nav .resnav-segment ul li a::after {
    position: absolute;
    right: 10px;
    content: "\f105";
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
}

div.res-nav .resnav-segment ul li a:hover,
div.res-nav .resnav-segment ul li.current-menu-item a {
    color: #e71b23;
}

/* Main
----------------------------------------------------------*/
main {
    margin-top: 164px;
    overflow: hidden;
}

main .search-mobile {
    display: none;
    padding: 9px 20px;
}

main .search-mobile input[type="search"] {
    line-height: 20px !important;
    height: 50px !important;
    padding: 15px 65px 15px 25px !important;
    font-size: 16px !important;
    font-family: "Dosis", sans-serif;
    width: 100% !important;
    border: 1px solid #f2f2f2 !important;
    -webkit-appearance: none !important;

    -webkit-border-radius: 25px !important;
    -moz-border-radius: 25px !important;
    border-radius: 25px !important;
}

main .search-mobile button[type="submit"] {
    position: absolute;
    right: 20px;

    background: none;
    width: 50px;
    height: 50px;
    -webkit-appearance: none;

    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
}

main .search-mobile .dgwt-wcas-preloader:empty{
    opacity: 0;
    visibility: hidden;
}

main .search-mobile .dgwt-wcas-preloader{
    width: 50px;
    height: 50px;
    right: 20px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    background: #fff;
    justify-content: normal;
}

main .search-mobile .dgwt-wcas-preloader path{
    fill: #484330 !important;
}


/* Loops - Nieuws loop
----------------------------------------------------------*/

div#posts-nieuws {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
}

div#posts-nieuws article.nieuw-item {
    width: calc(33.33% - 15px);
    margin-bottom: 30px;
    background: #fff;
    transition: all 0.2s ease;
    -webkit-box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0);
    -moz-box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0);
    box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0);
}

div#posts-nieuws article.nieuw-item:hover {
    -webkit-box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.08);
}

div#posts-nieuws article.nieuw-item a {
    text-decoration: none;
}

div#posts-nieuws article.nieuw-item img {
    width: 100%;
}

div#posts-nieuws article.nieuw-item .info {
    display: block;
    padding: 20px 30px;
    color: #000000;
}

div#posts-nieuws article.nieuw-item .info span {
    display: inline-block;
    font-size: 18px;
    line-height: 28px;
    font-family: "Dosis", sans-serif;
    margin-top: 0.5em;
    text-decoration: underline;
    color: #e71b23;
}

div#posts-nieuws article.nieuw-item .info span:hover {
    text-decoration: none;
}

/* Loops - products loop
----------------------------------------------------------*/

div#posts-products .products-inner {
    display: flex;
    flex-flow: wrap;
    position: relative;
    width: calc(100% + 30px);
    margin-left: -15px;
}

div#posts-products article.product-item {
    width: calc(33.33% - 30px);
    margin: 0px 15px 30px;
}

div#posts-products article.product-item .product-item-inner {
    position: relative;
    display: grid;
    grid-template-rows: 1fr 108px;
    width: 100%;
    height: 100%;
    background: #fff;
    padding: 15px 30px 30px;
    transition: all 0.2s ease;

    -webkit-box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0);
    -moz-box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0);
    box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0);

    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

div#posts-products article.product-item .product-item-inner:hover {
    -webkit-box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.08);
}

div#posts-products article.product-item.page-favorite .product-item-inner {
    height: calc(100% - 30px);
}

div#posts-products article.product-item a {
    text-decoration: none;
    position: relative;
}

section.product-single-top .product-single-top-column .images{
    position: relative;
}

section.product-single-top .product-single-top-column .images div.label,
div#posts-products article.product-item div.label {
    position: absolute;
    top: 0px;
    right: -16px;
    text-transform: inherit;
    line-height: 20px;
    display: flex;
    max-width: 100%;
    flex-flow: wrap;
    justify-content: flex-end;
}

section.product-single-top .product-single-top-column .images div.label{
    right: 14px;
    top: 14px;
    z-index: 10;
}

@media all and (min-width: 768px) {
    section.product-single-top .product-single-top-column .images div.label span.label,
    div#posts-products article.product-item .label span.label{
        font-family: "Dosis", sans-serif;
        display: block;
        padding: 6px 15px;
        margin-left: 6px;
        margin-bottom: 6px;

        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        border-radius: 20px;
    }

    section.product-single-top .product-single-top-column .images div.label span::after,
    div#posts-products article.product-item .label span::after {
        display: inline-block !important;
        content: "" !important;
        background: url("../images/icon-sale.svg");
        width: 20px;
        height: 20px;
        margin-bottom: -2px;
        margin-left: 4px;
    }    
}

@media all and (max-width: 768px) {
    section.product-single-top .product-single-top-column .images div.label span.label, 
    div#posts-products article.product-item .label span.label {
        font-family: "Dosis", sans-serif;
        display: block;
        padding: 4px 10px;
        margin-left: 6px;
        margin-bottom: 6px;

        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        border-radius: 20px;
        font-size: 12px;
    }

    section.product-single-top .product-single-top-column .images div.label span::after,
    div#posts-products article.product-item .label span::after {
        display: inline-block !important;
        content: "" !important;
        background: url("../images/icon-sale.svg");
        width: 20px;
        height: 20px;
        margin-bottom: -2px;
        margin-left: 4px;
    }        
}

section.product-single-top .product-single-top-column .images div.label span.sale,
div#posts-products article.product-item .label span.sale {
    
    background: #fc5601;
    color: #fff;
}

div#posts-products article.product-item .image {
    margin-bottom: 30px;
}

div#posts-products article.product-item .image img {
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    width: 100%;
    aspect-ratio: 1 / 1;
}

div#posts-products article.product-item .title h2 {
    font-family: "Dosis", sans-serif;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 3px;
    color: #000000;
}

div#posts-products article.product-item .stock-info {
    display: flex;
    flex-flow: wrap;
    margin-bottom: 8px;
}

div#posts-products article.product-item .price {
    font-family: "Dosis", sans-serif;
    color: #000000;
    font-size: 28px;
    padding-top: 12px;
}

div#posts-products article.product-item .sale_price {
    font-family: "Dosis", sans-serif;
    direction: rtl;
    text-align: left;
    padding-top: 12px;
}

div#posts-products article.product-item .sale_price ins {
    text-decoration: none;
    font-size: 28px;
    color: #fc5601;
}

div#posts-products article.product-item .sale_price del {
    color: #000000;
    font-size: 16px;
    margin-left: 8px;
    bottom: 9px;
    display: inline-block;
    position: relative;
}

div#posts-products article.product-item .woocommerce-Price-currencySymbol {
    display: none;
}

div#posts-products article.product-item .stock_container .stock {
    font-size: 12px;
    font-family: "Dosis", sans-serif;
    line-height: 20px;
    height: 20px;
    padding: 0px 10px;
    /* margin-left: 10px; */
    display: inline-block;

    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

div#posts-products article.product-item .stock_container .stock.in-stock {
    display: none;
}

div#posts-products article.product-item .stock_container .stock.low-stock{
    background: #FFEFD3;
    color: #F09800;
}

div#posts-products article.product-item .stock_container .stock.out-of-stock {
    background: #fad1d3;
    color: #e71b23;
}

div#posts-products article.product-item form .inner {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
}

div#posts-products article.product-item form .product_weight {
    font-size: 18px;
    color: #a4a8ab;
    font-family: "Dosis", sans-serif;
    display: block;
    /* width: calc(100% - 75px); */
    width: 100%;
    margin-bottom: 8px;

    height: 50px;
    line-height: 50px;
    border: 3px solid transparent;
}

div#posts-products article.product-item form select.product_weight {
    border: 3px solid #ADB1B4;
    padding: 0px 20px;

    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

div#posts-products article.product-item form .inner select {    
    appearance:none;
    -webkit-appearance: none;
}
div#posts-products article.product-item form .inner .has-selectfield {
    flex: 0 0 100%;
    position: relative;
}
div#posts-products article.product-item form .inner .has-selectfield:after {
    content: "";
    position: absolute;
    top: 17px;
    right: 11px;
    width: 5px;
    height: 5px;
    border-right: 2px solid #adb1b4;
    border-bottom: 2px solid #adb1b4;
    transform: rotate(45deg);
    pointer-events: none;
}

div#posts-products article.product-item form .inner .has-selectfield .outofstock {
    color:#e71b23;
    text-decoration:line-through;
}

div#posts-products article.product-item form .atc-container{
    position: relative;
    display: grid;
    grid-template-columns: 1fr 60px 50px;
    gap: 8px;
    width: 100%;
}

div#posts-products article.product-item form .atc-container input[type="number"], .atc-table-cart .quantity-container input[type="number"] {
    width: 100%;
    height: 50px;
    font-size: 18px;
    color: #a4a8ab;
    padding-right: 15px;
    font-family: "Dosis", sans-serif;

    text-align: center;

    border: 3px solid #ADB1B4;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

div#posts-products article.product-item form .atc-container input[type="number"]::-webkit-outer-spin-button,
div#posts-products article.product-item form .atc-container input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
div#posts-products article.product-item form .atc-container input[type="number"] {
    -moz-appearance: textfield;
}

div#posts-products article.product-item form .atc-container .quantity-container,
.single-product .quantity-container{
    position: relative;
}

div#posts-products article.product-item form .atc-container .quantity-nav,
.single-product .quantity-nav, .atc-table-cart .quantity-container .quantity-nav {
    position: absolute;
    top: 0px;
    right: 12px;
}

.single-product .quantity-nav{
    top: 2px;
    right: 17px;
}

div#posts-products article.product-item form .atc-container .quantity-nav .quantity-button,
.single-product .quantity-nav .quantity-button, .atc-table-cart .quantity-container .quantity-nav .quantity-button {
    height: 19px;
    line-height: 19px;
    color: #A4A8AB;
}

div#posts-products article.product-item form .atc-container .quantity-nav .quantity-button.quantity-up,
.single-product .quantity-nav .quantity-button.quantity-up{
    margin-top: 6px;
}

div#posts-products article.product-item form .button {
    padding: 12px 0px;
    height: 50px;
    margin-bottom: 0px;
}

div#posts-products article.product-item form .button img{
    margin: 0 auto;
}

div#posts-products article.product-item form .button .add{
    width: 22px;
}

div#posts-products article.product-item form.added .button .add {
    display: none;
}

div#posts-products article.product-item form .button.minus {
    background: #fff;
}

div#posts-products article.product-item form:not(.added) .button .check {
    display: none;
}

div#posts-products article.product-item .spinner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
}

div#posts-products article.product-item form.loading + .spinner {
    visibility: visible;
    opacity: 1;
}

div#posts-products article.product-item .remove-from-favorite {
    line-height: 30px;
    color: #e71b23;
    font-size: 16px;
    font-family: "Dosis", sans-serif;
    text-decoration: underline;
    cursor: pointer;
}

div#posts-products article.product-item .remove-from-favorite:hover {
    text-decoration: none;
}

div#posts-products .no-products-found {
    max-width: 710px;
    width: 100%;
    margin: 0 auto;
    margin-top: 20px;
    position: relative;
    background: #fff;
    padding: 45px 70px;

    border: 2px solid #E6E5E1;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

div#posts-products .no-products-found h3 {
    color: #303e4d;
}

/* Loops - products loop paginatie
----------------------------------------------------------*/

div#pagination.mobile {
    display: none;
}

div#pagination ul {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
}

div#pagination ul li {
    list-style: none;
}

div#pagination ul li > span {
    font-family: "Dosis", sans-serif;
    font-size: 16px;
    line-height: 44px;
    cursor: pointer;

    display: block;
    min-width: 50px;
    height: 50px;
    margin: 0px 5px 10px;
    padding: 0px 15px;
    border: 3px solid #e6e5e1;
    text-align: center;
    transition: all 0.1s ease;

    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

div#pagination ul li.current_item span {
    border: 3px solid #596572;
}

div#pagination ul li:not(.dots) > span:hover {
    border: 3px solid #596572;
}

div#pagination ul li > span i {
    display: none;
}

div#pagination ul li.dots > span {
    border: 3px solid transparent;
    min-width: 0px;
    padding: 0px 5px;
}

/* BLOCK - Content Header
----------------------------------------------------------*/
section.content.header {
    position: relative;
    background: #f2eddd;
    margin-bottom: 76px;
}

section.content.header.alt {
    background: #fff;
    margin-bottom: 0px;
}

section.content.header::after {
    display: block;
    content: "";
    position: absolute;
    background: url(../images/body-border.svg) repeat-x;
    width: 100%;
    height: 30px;
    margin-top: -15px;
}

section.content.header.alt::after {
    background: url(../images/border.svg) repeat-x;
}

section.content.header .flexbox {
    display: flex;
    width: 100%;
    min-height: 330px;
    justify-content: space-around;
    flex-flow: wrap;
}

section.content.header .title {
    align-self: center;
    width: 75%;
    margin: 70px 12.5%;
    font-size: 48px;
    line-height: 56px;
    text-align: center;
    color: #000000;
}

section.content.header .image-1 {
    position: absolute;
    bottom: -25px;
    left: -20px;
    z-index: 5;
}

section.content.header .image-2 {
    position: absolute;
    top: -10px;
    right: 120px;
    z-index: 5;
    max-width: 150px;
    transform: rotate(-10deg);
}

section.content.header .image-3 {
    position: absolute;
    bottom: -5px;
    right: -70px;
    z-index: 5;
    max-width: 170px;
    transform: rotate(30deg);
}

section.content.header .breadcrumb,
section.content.shop .breadcrumb,
section.content.breadcrumb .breadcrumb,
section.product-single-top .breadcrumb {
    position: absolute;
    top: 45px;
    color: #000000;
    font-family: "Dosis", sans-serif;
    font-size: 14px;
}

section.content.breadcrumb .breadcrumb {
    position: relative;
    top: 0px;
    margin-top: 45px;
    margin-bottom: 15px;
}

section.content.header .breadcrumb a,
section.content.shop .breadcrumb a,
section.content.breadcrumb .breadcrumb a,
section.product-single-top .breadcrumb a {
    color: #000000;
    text-decoration: none;
}

section.content.header .breadcrumb i,
section.content.shop .breadcrumb i,
section.content.breadcrumb .breadcrumb i,
section.product-single-top .breadcrumb i {
    color: #a4a8ab;
    margin: 0px 10px;
}

/* BLOCK - Content Snackfinder
----------------------------------------------------------*/
section.content.snackfinder .title {
    margin: 70px 12.5% 0px 12.5%;
}

section.content.snackfinder .stappen ul {
    position: relative;
    width: 360px;
    margin: 0 auto;

    display: flex;
    justify-content: space-between;
}

section.content.snackfinder .stappen ul li {
    position: relative;
    list-style: none;
}

section.content.snackfinder .stappen ul li span {
    position: relative;
    list-style: none;
    display: block;
    width: 28px;
    height: 28px;
    background: #fff;
    border: 8px solid #87b388;

    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
    border-radius: 14px;
}

section.content.snackfinder .stappen ul li.active span {
    background: #e7df1b;
    border: 8px solid #1a7933;
}

section.content.snackfinder .stappen ul li:not(:first-child)::before {
    position: absolute;
    content: "";
    height: 7px;
    width: calc(360px / 3);
    display: block;
    background: #87b388;
    z-index: 8;
    right: 14px;
    top: 10px;
}

section.content.snackfinder .stappen ul li.active::before {
    background: #1a7933;
}

section.content.snackfinder .stappen ul li span {
    position: relative;
    z-index: 10;
}

section.content.snackfinder.steps {
    margin-bottom: 76px;
}

section.content.snackfinder .page-loop {
    width: 75%;
    text-align: center;
}

section.content.snackfinder .stappen {
    width: 75%;
    margin-top: -22px;
}

section.content.snackfinder .step {
    display: none;
}

section.content.snackfinder .step .notification {
    display: none;
}

section.content.snackfinder .step.error .notification {
    display: block;
}

section.content.snackfinder .step.active {
    display: block;
}

section.content.snackfinder .step h3 {
    text-align: center;
    margin-bottom: 22px;
}

section.content.snackfinder .step ul {
    display: flex;
    justify-content: center;
    width: calc(100% + 34px);
    margin-left: -17px;
    margin-bottom: 22px;
}

section.content.snackfinder .step ul li {
    list-style: none;
    width: calc(33.33% - 34px);
    margin: 0px 17px;
}

section.content.snackfinder .step ul li input {
    display: none;
}

section.content.snackfinder .step ul li label > span {
    display: block;
    width: 100%;
    height: 100%;
    border: 2px solid #f2f2f2;
    padding: 30px;
    text-align: center;
    transition: all 0.1s ease;
    cursor: pointer;

    font-family: "Dosis", sans-serif;
    font-size: 18px;
    line-height: 24px;

    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}

section.content.snackfinder .step ul li label > span img {
    margin: 0 auto;
    margin-bottom: 22px;
    height: 75px;
}

section.content.snackfinder .step ul li input:checked + span {
    border: 2px solid #1a7933;
}

/* BLOCK - Content Default
----------------------------------------------------------*/
section.content.basic {
    margin-bottom: 88px;
}

section.content.basic.image {
    margin-bottom: 88px;
}

section.content.basic h1,
section.content.basic h2,
section.content.basic h3 {
    margin-bottom: 17px;
}

section.content.basic img {
    max-width: 100%;
    height: auto;
}

section.content.basic.quote blockquote {
    margin: -36px 100px;
    font-size: 18px;
    line-height: 28px;
}

section.content.basic.quote blockquote > span {
    position: relative;
    font-size: 16px;
    line-height: 28px;
    padding-left: 78px;
    display: block;
    margin-bottom: 13px;
}

section.content.basic.quote blockquote > span::before {
    position: absolute;
    left: 0px;
    top: 8px;
    content: "“";
    font-family: "Dosis", sans-serif;
    font-size: 48px;
    line-height: 28px;
    color: #1a7933;
}

section.content.basic.quote blockquote > span::after {
    content: "";
    position: absolute;
    left: 31px;
    top: 14px;
    width: 33px;
    height: 1px;
    background: #47422f;
}

section.content.basic a.video {
    position: relative;
    display: block;
}

section.content.basic a.video .play {
    position: absolute;
    top: calc(50% - 19px);
    line-height: 38px;
    width: 100%;
    text-align: center;
    color: #e71b23;
    font-size: 38px;
    z-index: 1;
}

/* BLOCK - Content Default
----------------------------------------------------------*/
section.content.category {
    padding-top: 70px;
    padding-bottom: 70px;
}

section.content.category h2 {
    margin-bottom: 15px;
}

section.content.category .columns {
    display: flex;
    justify-content: space-between;
}

section.content.category .columns.columns-2 .column {
    width: calc(50% - 30px);
}

/* BLOCK - Content Author
----------------------------------------------------------*/
section.content.author {
    margin-bottom: 88px;
}

section.content.author .colfull.wide {
    background: #f2eddd;
    display: flex;
}

section.content.author .colfull.wide::before {
    display: block;
    content: "";
    position: absolute;
    background: url("../images/border.svg") repeat-x;
    width: 100%;
    height: 30px;
    margin-top: -15px;
}

section.content.author .colfull.wide .twoThird {
    padding: 50px 0px 50px 50px;
}

section.content.author .colfull.wide .twoThird span.title {
    font-size: 18px;
    display: block;
    margin-bottom: 12px;
}

section.content.author .colfull.wide .third {
    padding: 50px 0px 0px 50px;
}

section.content.author .colfull.wide .third span.label {
    text-align: center;
    display: inline-block;
    font-family: "Dosis", sans-serif;
    font-size: 16px;
    line-height: 26px;
    color: #000;
}

section.content.author .colfull.wide .third span.label img {
    margin: 0 auto;
}

section.content.author .colfull.wide .third > img {
    position: absolute;
    bottom: 0px;
    right: 0px;
    max-height: calc(100% - 76px);
}

/* BLOCK - Content Hero image
----------------------------------------------------------*/
section.content.heroimage {
    position: relative;
    padding-top: 120px;
    padding-bottom: 120px;
    overflow: hidden;
}
.content.heroimage::after {
	background: url('/app/themes/dogbite/images/Honden.png');
	background-repeat: repeat;
	background-size: auto;
	position: absolute;
	left: 50%;
	bottom: -25%;
	width: 400px;
	height: 400px;
	display: block;
	content: '';
	background-size: contain;
	background-repeat: no-repeat;
	z-index: -0;
    animation: honden-in 700ms 1 ease-in-out;
}
@keyframes honden-in {
    0% {
        bottom: -100%;
    }
    100% {
        bottom: -25%;
    }
}

section.content.heroimage .background {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
}

/* section.content.heroimage .background::before {
    content: "";
    width: 100%;
    height: 100%;
    background: #1a7933;
    position: absolute;
    top: 0px;
    opacity: 0.2;
} */

section.content.heroimage .background img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

@media all and (max-width: 768px){
    section.content.heroimage .background img {
        object-position: left;
    }
}

section.content.heroimage .inner-content .page-loop {
    color: #fff !important;
    text-align: left;
}

section.content.heroimage .inner-content h1 {
    margin-bottom: 22px;
    max-width: 425px;
    width: 100%;
    font-weight: bold;
}

@media (min-width:576px) and (max-width:768px){
    section.content.heroimage .inner-content h1 {
        margin-bottom: 22px;
        max-width: 75%;
        width: 100%;
        font-weight: bold;
        font-size: 65px;
        line-height: 85px;
    }
}
@media all and (max-width:576px) {
    section.content.heroimage .inner-content h1 {
        max-width: 285px;
    }
    .woocommerce-message .woocommerce-Button {
        display: block;
        margin-bottom: 15px;
    }
}

section.content.heroimage .inner-content p {
    font-size: 16px;
    line-height: 26px;
    max-width: 600px;
    margin: 0 auto;
}

section.content.heroimage .inner-content img {
    position: absolute;
    left: 50%;
    bottom: -90px;
    transform: translate(-50%, 0);
    width: 43px;
}

section.content.heroimage .container-klantvertellen {
    position: absolute;
    z-index: 10;
    height: 135px;
    overflow: hidden;
    right: 0px;
    bottom: 40px;
    background: #faf8f1;
    border-top: 5px solid #faf8f1;
    border-bottom: 10px solid #faf8f1;

    -webkit-border-top-left-radius: 2px;
    -webkit-border-bottom-left-radius: 2px;
    -moz-border-radius-topleft: 2px;
    -moz-border-radius-bottomleft: 2px;
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
}

/* BLOCK - Content Categories
----------------------------------------------------------*/

section.content.categories {
    padding: 30px 0px;
    border-bottom: 2px solid #f2f2f2;
}

section.content.categories span.cat-label {
    font-family: "Dosis", sans-serif;
    color: #000;
    font-size: 18px;
    font-weight: 400;
}

section.content.categories ul {
    display: flex;
    justify-content: space-between;
}

section.content.categories ul li {
    list-style: none;
    padding: 23px 30px;
    max-width: calc(20% - 30px);
}

section.content.categories ul li a {
    text-decoration: none;
}

section.content.categories ul li img {
    max-width: 100%;
}

section.content.categories ul li a span {
    display: block;
    margin-top: 16px;
    font-family: "Dosis", sans-serif;
    color: #000;
    font-size: 18px;
    font-weight: 400;
    transition: all 0.1s ease;
}

section.content.categories ul li a span::after {
    font-family: "Font Awesome 5 Pro";
    content: "\f105";
    color: #a4a8ab;
    margin-left: 10px;
    transition: all 0.1s ease;
}

section.content.categories ul li a:hover span,
section.content.categories ul li a:hover span::after {
    color: #e71b23;
}

section.content.usp {
    position: relative;
}

section.content.usp::after {
    display: block;
    content: "";
    position: absolute;
    background: url("../images/border.svg") repeat-x;
    width: 100%;
    height: 30px;
    margin-top: -15px;
}

section.content.usp ul {
    display: flex;
    justify-content: space-between;
}

section.content.usp ul li {
    position: relative;
    list-style: none;
    font-family: "Dosis", sans-serif;
    font-size: 16px;
    line-height: 26px;
    color: #000;
    padding: 20px 10px 30px 26px;
}

section.content.usp ul li::before {
    font-family: "Font Awesome 5 Pro";
    content: "\f00c";
    margin-right: 10px;
    color: #1a7933;
    position: absolute;
    left: 0px;
}

section.content.usp ul li a {
    color: #000;
}

section.content.usp ul li a:hover {
    text-decoration: none;
}

/* BLOCK - Content 3 kolommen
----------------------------------------------------------*/

section.content.threecolumn {
    background: #f2eddd;
    padding-top: 70px;
    padding-bottom: 70px;
}

section.content.threecolumn .colfull {
    display: flex;
    justify-content: space-between;
}

section.content.threecolumn article {
    position: relative;
    max-width: calc(33.33% - 30px);

    
}

section.content.threecolumn article img {
    max-width: 100%;
}

section.content.threecolumn article a {
    position: relative;
    display: block;
    overflow: hidden;
    transition: all 0.2s ease;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

section.content.threecolumn article a:hover{
    -webkit-box-shadow: 0px 3px 20px 0px rgb(0 0 0 / 16%);
    -moz-box-shadow: 0px 3px 20px 0px rgba(3, 2, 2, 0.16);
    box-shadow: 0px 3px 20px 0px rgb(0 0 0 / 16%);
}



section.content.threecolumn article a span {
    position: absolute;
    width: calc(100% - 60px);
    bottom: 25px;
    left: 30px;
    z-index: 1;
    color: #fff;
    font-size: 28px;
    line-height: 38px;
    font-family: "Dosis", sans-serif;
}

section.content.threecolumn article a::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 40%;
    bottom: 0px;

    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#66000000',GradientType=0 );
}

/* BLOCK - Content half + image
----------------------------------------------------------*/

section.content.contenthalf {
    background: #f2eddd;
}

section.content.contenthalf .colfull picture,
section.content.contenthalf .colfull .nieuw-container {
    width: 50%;
    position: relative;
}

section.content.contenthalf .colfull .nieuw-container {
    margin-top: 100px;
}

section.content.contenthalf .colfull .nieuw-container > div {
    width: calc(100% + 70px);
}

/* section.content.contenthalf.default .colfull picture, */
section.content.contenthalf.default .colfull .nieuw-container {
    float: left;
}

section.content.contenthalf.alt .colfull picture,
section.content.contenthalf.alt .colfull .nieuw-container {
    float: right;
    left: -70px;
}

section.content.contenthalf .colfull .nieuw-container div#posts-nieuws article.nieuw-item {
    width: calc(50% - 15px) !important;
}

section.content.contenthalf .colfull picture img {
    width: calc(100% + 70px);
}

section.content.contenthalf .colfull .content {
    background: #484330;
    width: 50%;
    margin-top: 70px;
    margin-bottom: 70px;
}

section.content.contenthalf.image .colfull .content {
    margin-top: 140px;
}

section.content.contenthalf.default .colfull .content {
    float: right;
    padding: 70px 70px 70px 140px;
}

section.content.contenthalf.alt .colfull .content {
    float: left;
    padding: 70px 140px 70px 70px;
}

section.content.contenthalf .colfull .content .page-loop {
    color: #fff !important;
}

section.content.contenthalf .colfull .content .page-loop .button {
    background: #e71b23;
    border: 3px solid #e71b23;
}

section.content.contenthalf .colfull .content .page-loop .button:hover {
    background: #a50107;
    border: 3px solid #a50107;
}

section.content.contenthalf.default .colfull .content .nieuw-container .pagination{
    display: none;
}

/* BLOCK - Content reviews
----------------------------------------------------------*/

section.content.reviews {
    background: #f2eddd;
    padding-top: 70px;
    padding-bottom: 70px;
}

section.content.reviews h2 {
    font-size: 36px;
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
}

section.content.reviews h2 img {
    position: absolute;
    left: calc(100% + 15px);
    bottom: 0px;
}

section.content.reviews .subtext {
    font-family: "Dosis", sans-serif;
    font-size: 18px;
}

section.content.reviews .review-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 30px;
    width: 110%;
    min-width: 1500px;
}

section.content.reviews .review-row.first {
    margin-top: 30px;
}

section.content.reviews .review-row.second {
    margin-left: -10%;
    padding-left:10%;
    width: 120%;
}

section.content.reviews .review-row article {
    background: #fff;
    width: calc(20% - 30px);
    padding: 23px 30px;
    display: flex;
}

section.content.reviews .review-row article .circle {
    display: block;
    background: #dcf0e2;
    color: #1a7933;
    font-family: "Dosis", sans-serif;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    line-height: 46px;
    width: 46px !important;
    height: 46px !important;

    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

section.content.reviews .review-row article div {
    width: calc(100% - 46px);
    padding-left: 15px;
}

section.content.reviews .review-row article div span {
    font-family: "Dosis", sans-serif;
    font-size: 18px;
    display: block;
    white-space: nowrap;
    line-height: 23px;
    text-overflow: ellipsis;
    overflow: hidden;
}

section.content.reviews .review-row article div span.aanbeveling {
    color: #a4a8ab;
    font-size: 16px;
}

section.content.reviews .review-row + .align-center {
    margin-top: 30px;
}

section.content.reviews .align-center {
    text-align: center;
}

section.content.reviews a.buttonlink {
    color: #e71b23;
    font-size: 18px;
    font-family: "Dosis", sans-serif;
    padding-left: 20px;
}

section.content.reviews a.buttonlink:hover {
    text-decoration: none;
}

/* BLOCK - Product Highlight
----------------------------------------------------------*/

section.content.product-highlight {
    background: #f2eddd;
    padding-top: 70px;
    padding-bottom: 70px;
}

section.content.product-highlight #posts-products {
    margin-top: 48px;
}

section.content.product-highlight div#posts-products article.product-item {
    width: calc(25% - 30px);
}

@media all and (max-width: 400px){
    section.content.product-highlight div#posts-products article.product-item {
        width: calc(50vw - 15px);
        flex: 0 0 calc(50vw - 15px);
    }
    
}

section.content.product-highlight .align-center {
    text-align: center;
}

section.content.product-highlight #posts-products #pagination {
    display: none;
}

/* BLOCK - Snackfinder CTA
----------------------------------------------------------*/

section.content.snackfinder-cta {
    padding-top: 120px;
    background: #f2eddd;
}

section.content.snackfinder-cta:last-child {
    padding-bottom: 60px;
}

section.content.shop + section.content.snackfinder-cta .colfull .inner {
    padding-left: 25%;
}

section.content.snackfinder-cta .top-title {
    text-align: center;
    padding-bottom: 30px;
}

section.content.snackfinder-cta .bottom-content {
    max-width: 710px;
    margin: 0 auto;
    position: relative;

    background: #fff;
    padding: 45px 70px;
    text-align: center;

    border: 2px solid #E6E5E1;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

section.content.snackfinder-cta .bottom-content h3 {
    margin-bottom: 15px;
}

section.content.snackfinder-cta .bottom-content .button {
    margin-top: 45px;
    min-width: 50%;
}

section.content.snackfinder-cta .bottom-content .button i {
    margin-right: 5px;
}

section.content.snackfinder-cta .bottom-content .image-1 {
    position: absolute;
    bottom: -31px;
    left: 15px;
}

/* BLOCK - Nieuws
----------------------------------------------------------*/

section.content.nieuws {
    padding-top: 120px;
    padding-bottom: 120px;
    background: #f2eddd;
}

section.content.shop + section.content.snackfinder-cta + section.content.nieuws {
    padding-bottom: 0px;
}

section.content.shop + section.content.snackfinder-cta + section.content.nieuws .colfull .inner {
    padding-left: 25%;
}

section.content.shop + section.content.snackfinder-cta + section.content.nieuws .colfull .inner #pagination {
    display: none;
}

section.content.nieuws h3 {
    margin-bottom: 26px;
}

section.content.nieuws h3 a {
    color: #303e4d;
}

section.content.nieuws #pagination{
    text-align: center;
}

body.home section.content.nieuws #pagination{
    display: none;
}
/* section.content.nieuws #pagination #fuze_pagination-buttons {
    text-align: center;
} */

/* BLOCK - Faq
----------------------------------------------------------*/

section.content.faq {
    margin-bottom: 88px;
}

section.content.faq .faq-container {
    margin-bottom: 88px;
}

section.content.faq .faq-container ul li{
    border-bottom: 2px solid #f2f2f2;
    list-style: none;
    padding-bottom: 24px;
}

section.content.faq .faq-container ul li div.title{
    position: relative;
    padding: 24px 0px 0px 30px;

    font-family: "Dosis", sans-serif;
    font-size: 18px;
    color: #000;
    cursor: pointer;
}

section.content.faq .faq-container ul li div.title i{
    position: absolute;
    color: #A4A8AB;
    left: 0px;
    line-height: 30px;

    transition: all 0.1s ease;
}

section.content.faq .faq-container ul li.open div.title i{
    transform: rotate(90deg);
}

section.content.faq .faq-container ul li div.content{
    
    /* overflow: hidden;
    height: 0px; */
    display: none;
}

section.content.faq .faq-container ul li div.content .inner{
    margin: 24px 0px 0px;
}

section.content.faq .faq-container h3,
section.content.faq .category-container h3{
    margin-bottom: 17px;
}

section.content.faq .category-container ul {
    
    display: grid;
    grid-template-columns: calc(33.33% - 10px) calc(33.33% - 10px) calc(33.33% - 10px);
    gap: 15px 15px;
}

section.content.faq .category-container ul li {
    list-style: none;

    width: 100%;
    padding: 0px;
    margin: 0px;
}

section.content.faq .category-container ul li a {
    display: block;
    text-align: center;
    padding: 30px 15px;
    /* border: 2px solid #f2f2f2; */
    height: 100%;
    font-family: "Dosis", sans-serif;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    transition: all 0.1s ease;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    background: #1a7933;
}

section.content.faq .category-container ul li a:hover,
section.content.faq .category-container ul li.active a {
    background: #53b56d;
}

/* BLOCK - Shop
----------------------------------------------------------*/

section.content.shop .colfull:first-child {
    padding-top: 70px;
}

section.content.shop .colfull .shop-container {
    display: flex;
    justify-content: space-between;
}

section.content.shop .colfull .shop-container .sidebar {
    width: calc(25% - 30px);
    margin-top: 30px;
}

section.content.shop .colfull .shop-container .sidebar .inner {
    position: relative;
    background: #ffffff;
    min-height: 250px;
    padding: 27px 24px 0px;
    border: 2px solid #f2f2f2;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    margin-bottom: 30px;
}

section.content.shop .colfull .shop-container .sidebar .inner .filter-top {
    display: none;
    border-bottom: 2px solid #f2f2f2;
    padding-bottom: 10px;
    margin-bottom: 20px;
    margin-top: 10px;
}

section.content.shop .colfull .shop-container .sidebar .inner .filter-top .close {
    position: absolute;
    right: 25px;
    color: #000000;
    width: 30px;
    line-height: 30px;
    text-align: center;
    display: block;
}

section.content.shop .colfull .shop-container .sidebar .filter-element {
    position: relative;
}

section.content.shop .colfull .shop-container .sidebar .filter-element:not(:first-child) {
    margin-top: 30px;
}

section.content.shop .colfull .shop-container .sidebar .filter-element h3 {
    font-size: 18px;
    font-weight: 600;
}

section.content.shop .colfull .shop-container .sidebar .filter-element ul {
    position: relative;
    overflow: hidden;
}

section.content.shop .colfull .shop-container .sidebar .filter-element ul.hidden {
    display: none;
}

section.content.shop .colfull .shop-container .sidebar .filter-element ul li {
    list-style: none;
    margin-top: 10px;
}

section.content.shop .colfull .shop-container .sidebar .filter-element ul li input {
    display: none;
}

section.content.shop .colfull .shop-container .sidebar .filter-element ul li label,
section.content.shop .colfull .shop-container .sidebar .filter-element ul li a {
    padding-left: 42px;
    line-height: 26px;
    display: block;

    font-family: "Dosis", sans-serif;
    font-size: 16px;
    color: #303e4d;
}

section.content.shop .colfull .shop-container .sidebar .filter-element ul li a {
    padding-left: 0px;
    text-decoration: none;
}

section.content.shop .colfull .shop-container .sidebar .filter-element ul li a::after {
    content: "\f105";
    font-family: "Font Awesome 5 Pro";
    margin-left: 10px;
}

section.content.shop .colfull .shop-container .sidebar .filter-element ul li label:hover,
section.content.shop .colfull .shop-container .sidebar .filter-element ul li a:hover {
    color: #e71b23;
}

section.content.shop .colfull .shop-container .sidebar .filter-element ul li label::before {
    font-family: "Font Awesome 5 Pro";
    content: "";
    position: absolute;
    left: 0px;

    width: 22px;
    height: 22px;
    background: #fff;
    border: 2px solid #f2f2f2;
    color: #53b56d;
    line-height: 23px;
    font-size: 18px;
    text-align: center;
}

section.content.shop .colfull .shop-container .sidebar .filter-element ul li input:checked + label::before {
    content: "\f00c";
}

section.content.shop .colfull .shop-container .sidebar .filters_more span.hidden {
    display: none;
}

section.content.shop .colfull .shop-container .sidebar .filters_more span {
    display: block;
    margin-top: 10px;
    color: #e71b23;
    font-family: "Dosis", sans-serif;
    font-size: 16px;
    cursor: pointer;
}

section.content.shop .colfull .shop-container .sidebar .inner .filter-footer {
    margin-top: 30px;
}

section.content.shop .colfull .shop-container .sidebar .inner .filter-footer h3 {
    font-size: 18px;
}

section.content.shop .colfull .shop-container .sidebar .inner .filter-footer .filter-omschrijving {
    line-height: 26px;
    display: block;
    font-family: "Dosis", sans-serif;
    font-size: 16px;
    margin-top: 20px;
}

section.content.shop .colfull .shop-container .sidebar .inner .filter-footer .button {
    display: block;
    margin-top: 15px;
    background: #f2eddd;
    border-color: #f2eddd;
    color: #47412f;
}

section.content.shop .colfull .shop-container .sidebar .inner .filter-footer .button:hover {
    background: #1a7933;
    border-color: #1a7933;
    color: #fff;
}

section.content.shop .colfull .shop-container .sidebar .inner .filter-footer .label {
    text-align: center;
    display: inline-block;
    font-family: "Dosis", sans-serif;
    font-size: 16px;
    line-height: 26px;
    color: #000;
    margin-top: 30px;
    margin-bottom: -30px;
}

section.content.shop .colfull .shop-container .sidebar .inner .filter-footer .label img {
    margin: 0 auto;
}

section.content.shop .colfull .shop-container .sidebar .inner .filter-footer > img,
section.content.shop .colfull .shop-container .sidebar .inner .filter-footer > picture img {
    max-width: 150px !important;
    height: auto;
    margin: 0 auto;
    width: 100%;
}

.review-holder {
    overflow-x: scroll;
    cursor: grab;
    overflow: auto;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.review-holder::-webkit-scrollbar {
    display: none;
}


@media handheld, screen and (max-width: 768px){
    section.content.shop .colfull .shop-container .sidebar .inner .filter-footer > img {
        margin-left: 70px;
    }
    /* .review-holder {
        overflow-x: scroll;
    } */
    .logged-in li.page-account a:before {
        content: "\f4fc";
        font-family: 'Font Awesome 5 Pro';
        width: 22px;
        height: 22px;
        color: #fff;
        font-size: 12px;
        line-height: 22px;
        text-align: center;
        background: #1d7933;
        position: absolute;
        left: -27.5px;
        top: 50%;
        margin-top: -50%;
        border-radius: 22px;
    }
}

section.content.shop .colfull .shop-container .sidebar .inner .filter-footer-button {
    display: none;

    width: 100%;
    background: #fff;
    padding: 13px 20px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
    position: fixed;
    bottom: 0px;
    left: 0px;

    -webkit-box-shadow: 0px -3px 6px 0px rgba(0, 0, 0, 0.04);
    -moz-box-shadow: 0px -3px 6px 0px rgba(0, 0, 0, 0.04);
    box-shadow: 0px -3px 6px 0px rgba(0, 0, 0, 0.04);
}

section.content.shop .colfull .shop-container .sidebar .inner .filter-footer-button .button {
    width: 100%;
}

section.content.shop .colfull .shop-container .content {
    width: calc(75% - 15px);
    margin-top: 30px;
}

section.content.shop .colfull .shop-container .content .categorie-info {
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid #f2f2f2;
}

section.content.shop .colfull .shop-container .content .categorie-info.no-results {
    border-bottom: 0px;
}

section.content.shop .colfull .shop-container .content .categorie-info .text {
    padding-bottom: 24px;
    padding-right: 30px;
}

section.content.shop .colfull .shop-container .content .categorie-info h1 {
    margin-bottom: 10px;
    display: flex;
    flex-direction: row;
    flex: 1 0 100%;
    width: 100%;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}

section.content.shop .colfull .shop-container .content .categorie-info .label.count {
    flex: 0 0 auto;
    display: inline-block;
    font-size: 12px;
    font-family: "Dosis", sans-serif;
    line-height: 20px;
    height: 20px;
    padding: 0px 10px;
    margin-left: 10px;
    top: -25px;
    position: relative;
    background: #fad1d3;
    color: #e71b23;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

section.content.shop .colfull .shop-container .content .categorie-info .image {
    display: flex;
    align-items: flex-end;
}

section.content.shop .colfull .shop-container .content .filter-info {
    display: flex;
    flex-flow: row-reverse;
    justify-content: space-between;
    margin-top: 14px;
    margin-bottom: 14px;
    min-height: 70px;
}

section.content.shop .colfull .shop-container .content .filter-info .selected-filters {
    width: calc(100% - 285px);
}

section.content.shop .colfull .shop-container .content .filter-info .res-filters {
    display: none;
    /* width: 285px; */
}

section.content.shop .colfull .shop-container .content .filter-info .res-filters .button {
    /* width: 100%; */
    border: 3px solid #f2f2f2;
    height: 50px;
    line-height: 44px;
    padding: 0px 40px;
    font-size: 18px;
}

section.content.shop .colfull .shop-container .content .filter-info span.label {
    font-family: "Dosis", sans-serif;
    font-size: 16px;
    display: inline-block;
}

section.content.shop .colfull .shop-container .content .filter-info .selected-filters ul {
    display: flex;
    flex-flow: wrap;
}

section.content.shop .colfull .shop-container .content .filter-info .selected-filters ul li {
    list-style: none;
}

section.content.shop .colfull .shop-container .content .filter-info .selected-filters ul li label {
    display: block;
    background: #f2f2f2;
    margin-right: 10px;
    margin-bottom: 10px;
    font-family: "Dosis", sans-serif;
    font-size: 16px;
    line-height: 26px;
    padding: 0px 10px;
    cursor: pointer;
    transition: all 0.1s ease;

    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

section.content.shop .colfull .shop-container .content .filter-info .selected-filters ul li label:hover {
    background: #e8e9ea;
}

section.content.shop .colfull .shop-container .content .filter-info .selected-filters ul li label i {
    margin-left: 3px;
}

section.content.shop .colfull .shop-container .content .filter-info .selected-filters ul li.clear-all span {
    display: block;
    line-height: 26px;
    font-family: "Dosis", sans-serif;
    font-size: 16px;
    cursor: pointer;
    color: #e71b23;
    text-decoration: underline;
    transition: all 0.1s ease;
}

section.content.shop .colfull .shop-container .content .filter-info .selected-filters ul li.clear-all span:hover {
    text-decoration: none;
}

section.content.shop .colfull .shop-container .content .filter-info .order-filters {
    width: 285px;
}

section.content.shop .colfull .shop-container .content .filter-info .order-filters span.label {
    line-height: 50px;
}

section.content.shop .colfull .shop-container .content .filter-info select {
    font-size: 18px;
    color: #a4a8ab;
    font-family: "Dosis", sans-serif;
    display: block;
    display: inline-block;
    height: 50px;
    line-height: 50px;
    border: 3px solid #f2f2f2;
    padding: 0px 20px;
    margin-left: 10px;
    /* -webkit-appearance: none; */

    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

section.content.shop .colfull .shop-container .content .content-bottom {
    padding-top: 50px;
}

section.content.shop .colfull .shop-container .content .content-bottom::before {
    content: "";
    left: -50vw;
    margin-top: -50px;
    margin-left: 50%;
    width: 100vw;
    height: 100%;
    position: absolute;
    background: #f2eddd url("../images/border.svg") repeat-x;
    z-index: -1;
}

/* Single product
----------------------------------------------------------*/

section.product-single-top .colfull {
    padding-top: 70px;
}

section.product-single-top .product-single-top-column {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    margin-bottom: 30px;
}

section.product-single-top .product-single-top-column > div {
    width: calc(50% - 30px);
}

section.product-single-top .swiper-container.gallery-top {
    border: 2px solid #f2f2f2;
    margin-bottom: 18px;
}

section.product-single-top .swiper-container {
    width: 100% !important;
    margin-left: auto;
    margin-right: auto;
}

section.product-single-top .gallery-top .swiper-slide {
    aspect-ratio: 16 / 13;
    height: auto !important;
    width: 100% !important;
}
section.product-single-top .swiper-slide img {
    margin: 0 auto;
    max-width: 100%;
    object-fit: contain;
    width: 100%;
    height: 100%;
}

section.product-single-top .swiper-slide .zoom {
    position: absolute;
    right: 18px;
    bottom: 18px;
    line-height: 20px;
    color: #a4a8ab;
    font-size: 20px;
    transition: all 0.1s ease;
}

section.product-single-top .swiper-slide .zoom:hover {
    color: #596572;
}

section.product-single-top .gallery-thumbs {
    box-sizing: border-box;
}

section.product-single-top .gallery-thumbs .swiper-slide {
    border: 2px solid #f2f2f2;
}

section.product-single-top .gallery-thumbs .swiper-slide img {
    opacity: 0.4;
}

section.product-single-top .gallery-thumbs .swiper-slide-thumb-active img {
    opacity: 1;
}

.swiper-button-next.swiper-button-white,
.swiper-button-prev.swiper-button-white {
    --swiper-navigation-color: #a4a8ab !important;
}

.swiper-button-next.swiper-button-white:hover,
.swiper-button-prev.swiper-button-white:hover {
    --swiper-navigation-color: #596572 !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px !important;
}

section.product-single-top .product-single-top-column .product-information {
    margin-top: 69px;
}

section.product-single-top .product-single-top-column .product-information h4 {
    margin-bottom: 15px;
}

section.product-single-top .product-single-top-column .product-information-toggle {
    max-height: 210px;
    padding-bottom: 45px;
    position: relative;
    overflow: hidden;

    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

section.product-single-top .product-single-top-column .product-information-toggle::after {
    content: "";
    height: 100px;
    width: 100%;
    position: absolute;
    display: block;
    bottom: 0px;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 75%, rgba(255, 255, 255, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 75%, rgba(255, 255, 255, 1) 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 75%, rgba(255, 255, 255, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 );
}

section.product-single-top .product-single-top-column .product-information-toggle.open::after {
    opacity: 0;
}

section.product-single-top .product-single-top-column .product-information-toggle .read-more,
section.product-single-top .product-single-top-column .product-information-toggle .read-less {
    position: absolute;
    bottom: 0px;
    z-index: 10;
    display: block;
    width: 100%;
    font-family: "Dosis", sans-serif;
    text-align: left;
    color: #1a7933;
    font-size: 16px;
    text-decoration: underline;
    cursor: pointer;
}

section.product-single-top .product-single-top-column .product-information-toggle:not(.open) .read-less,
section.product-single-top .product-single-top-column .product-information-toggle.open .read-more {
    display: none;
}

section.product-single-top .product-single-top-column .product-atc {
    width: 100%;
    margin-top: 32px;
}

section.product-single-top .product-single-top-column .product-atc.loading {
    opacity: 0.5;
}

section.product-single-top .product-single-top-column .product-atc .variation_input {
    display: flex;
    flex-flow: wrap;
    width: 100%;
}

section.product-single-top .product-single-top-column .product-atc .variation_input .label {
    width: 200px;
    font-size: 18px;
    line-height: 50px;
    font-family: "Dosis", sans-serif;
}

section.product-single-top .product-single-top-column .product-atc .variation_input .input {
    width: calc(100% - 200px);
}

section.product-single-top .product-single-top-column .product-atc .variation_input .input > span,
section.product-single-top .product-single-top-column .product-atc select,
section.product-single-top .product-single-top-column .product-atc input[name="quantity"]{
    font-size: 18px;
    color: #a4a8ab;
    font-family: "Dosis", sans-serif;
    display: block;
    width: 100%;
    height: 50px;
    line-height: 50px;

    padding: 0px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

section.product-single-top .product-single-top-column .product-atc select,
section.product-single-top .product-single-top-column .product-atc input[name="quantity"] {
    border: 3px solid #ADB1B4;
    padding: 0px 20px;
}

section.product-single-top .product-single-top-column .product-atc input[name="quantity"]{
    width: 100px;
    height: 54px;
    margin-right: 5px;
    text-align: center;
}

section.product-single-top .product-single-top-column .product-atc input[name="quantity"]::-webkit-outer-spin-button,
section.product-single-top .product-single-top-column .product-atc input[name="quantity"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
section.product-single-top .product-single-top-column .product-atc input[name="quantity"] {
    -moz-appearance: textfield;
}

section.product-single-top .product-single-top-column .product-atc .price-stock-info {
    margin: 32px 0px;
    display: flex;
    flex-flow: wrap;
}

section.product-single-top .product-single-top-column .product-atc .price {
    font-family: "Dosis", sans-serif;
    color: hsl(0, 0%, 0%);
    font-size: 36px;
    height: 45px;
}

section.product-single-top .product-single-top-column .product-atc .sale_price {
    font-family: "Dosis", sans-serif;
    direction: rtl;
    text-align: left;
    height: 45px;
}

section.product-single-top .product-single-top-column .product-atc .sale_price ins {
    text-decoration: none;
    font-size: 36px;
    color: #fc5601;
}

section.product-single-top .product-single-top-column .product-atc .sale_price del {
    color: #000000;
    font-size: 16px;
    margin-left: 15px;
    bottom: 14px;
    display: inline-block;
    position: relative;
}

section.product-single-top .product-single-top-column .product-atc .woocommerce-Price-currencySymbol {
    display: none;
}

section.product-single-top .product-single-top-column .product-atc .stock_container .stock {
    font-size: 12px;
    font-family: "Dosis", sans-serif;
    line-height: 20px;
    height: 20px;
    padding: 0px 10px;
    margin-left: 90px;

    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

section.product-single-top .product-single-top-column .product-atc .stock_container .stock.in-stock {
    display: none;
}

section.product-single-top .product-single-top-column .product-atc .stock_container .stock.low-stock{
    background: #FFEFD3;
    color: #F09800;
}

section.product-single-top .product-single-top-column .product-atc .stock_container .stock.out-of-stock {
    background: #fad1d3;
    color: #e71b23;
}

section.product-single-top .product-single-top-column .product-atc .buttons{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: space-between;
    align-items: center;
}

section.product-single-top .product-single-top-column .product-atc .button[type="button"], section.product-single-top .product-single-top-column .product-atc .button[type="waitlist"] {
    width: 60%;
}

section.product-single-top .product-single-top-column .product-atc .button[type="button"] img, section.product-single-top .product-single-top-column .product-atc .button[type="waitlist"] img{
    display: inline-block;
    width: 22px;
    position: relative;
    top: 2px;
    margin-right: 5px;
}

section.product-single-top .product-single-top-column .product-atc .add-to-favorite {
    width: calc(40% - 10px);
    margin-left: 5px;
    padding: 12px 0px;
}

section.product-single-top .product-single-top-column .product-atc .button{
    display: block;
    padding: 11px 40px;
}

section.product-single-top .product-single-top-column .product-atc .button i {
    margin-right: 10px;
}

section.product-single-top .product-single-top-column .product-atc .button.in-favorite i {
    font-weight: bold;
    color: #d5171f;
}

@media all and (max-width:400px){
    section.product-single-top .product-single-top-column .product-atc .buttons{
        flex-wrap: wrap;
    }
    section.product-single-top .product-single-top-column .product-atc .quantity-container {
        flex: 0 0 30%;
        padding-right: 5px;
    }
    
    section.product-single-top .product-single-top-column .product-atc span.button.ghost-button.add-to-favorite {
        flex: 0 0 100%;
        margin-left: 0 !important;
        margin-top: 5px;
    }
    section.product-single-top .product-single-top-column .product-atc .add-to-favorite span {
        display: inline-block !important;
    }
    
    section.product-single-top .product-single-top-column .product-atc button.button {
        flex: 0 0 70%;
    }
    
    section.product-single-top .product-single-top-column .product-atc input.quantity {
        width: 100% !important;
        box-sizing: border-box;
    }
}

section.product-single-top .product-single-top-column .product_usp {
    margin-top: 32px;
}

section.product-single-top .product-single-top-column .product_usp ul {
    display: flex;
    /* justify-content: space-between; */
}

section.product-single-top .product-single-top-column .product_usp ul li {
    list-style: none;
    font-family: "Dosis", sans-serif;
    font-size: 16px;
    line-height: 26px;
    color: #596572;
}

section.product-single-top .product-single-top-column .product_usp ul li:not(:first-child) {
    margin-left: 70px;
}

section.product-single-top .product-single-top-column .product_usp ul li::before {
    font-family: "Font Awesome 5 Pro";
    content: "\f00c";
    margin-right: 10px;
    color: #1a7933;
}

section.product-single-bottom {
    padding: 90px 0px;
    background: #f2eddd url("../images/border.svg") repeat-x;
}

section.product-single-bottom .colfull {
    display: flex;
    justify-content: space-between;
}

section.product-single-bottom .colfull + .colfull {
    padding-top: 84px;
}

section.product-single-bottom .colfull h3 {
    font-size: 28px;
    margin-bottom: 22px;
}

section.product-single-bottom .colfull .usp,
section.product-single-bottom .colfull .attributes {
    padding-right: 50px;
}

section.product-single-bottom .colfull .usp ul li {
    position: relative;
    list-style: none;
    font-family: "Dosis", sans-serif;
    font-size: 16px;
    line-height: 26px;
    padding-left: 45px;
    margin-bottom: 15px;
}

section.product-single-bottom .colfull .usp ul li::before {
    content: "";
    width: 23px;
    height: 27px;
    background: url("../images/dog.svg");
    display: block;
    position: absolute;
    left: 0px;
    margin-top: -3px;
}

section.product-single-bottom .colfull .attributes ul.attr li {
    display: flex;
    font-family: "Dosis", sans-serif;
    font-size: 16px;
    list-style: none;
    background: #fff;
    margin-bottom: 4px;
    padding: 0px 18px;
    line-height: 38px;
}

section.product-single-bottom .colfull .attributes ul.attr li span {
    display: block;
}

section.product-single-bottom .colfull .attributes ul.attr li span:first-child {
    color: #596572;
    width: 105px;
}

section.product-single-bottom .colfull .attributes .product-share {
    padding-top: 84px;
}

section.product-single-bottom .colfull .attributes .product-share h3 {
    margin-bottom: 12px;
}

section.product-single-bottom .colfull .attributes .product-share ul {
    display: flex;
    flex-flow: row;
}

section.product-single-bottom .colfull .attributes .product-share ul li {
    list-style: none;
}

section.product-single-bottom .colfull .attributes .product-share ul li a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    display: block;
    text-align: center;
    color: #ffffff;
    margin-right: 10px;

    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

section.product-single-bottom .colfull .attributes .product-share ul li.facebook a {
    background: #235b9e;
}

section.product-single-bottom .colfull .attributes .product-share ul li.instagram a {
    background: #db238d;
}

section.product-single-bottom .colfull .attributes .product-share ul li.whatsapp a {
    background: #00c451;
}

section.product-single-bottom .colfull .description,
section.product-single-bottom .colfull .reviews {
    padding-left: 50px;
}

section.product-single-bottom .colfull .reviews article {
    display: flex;
    justify-content: flex-start;
    margin-top: 10px;
    margin-top: 22px;

    background: #fff;
    padding: 30px;

    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

section.product-single-bottom .colfull .reviews article .left {
    width: 170px;
}

section.product-single-bottom .colfull .reviews article .right {
    width: calc(100% - 320px);
}

section.product-single-bottom .colfull .reviews article .rating {
    margin-top: 0px;
    margin-bottom: 0px;
}

section.product-single-bottom .colfull .reviews article .author {
    font-family: "Dosis", sans-serif;
    font-size: 16px;
    line-height: 26px;
    color: #000;
}

section.product-single-bottom .colfull .reviews .buttons {
    margin-top: 32px;
}

/* stars */

section.product-single-bottom .colfull .reviews #review_form_wrapper {
    position: relative;
    display: none;
    overflow: hidden;
    margin-top: 70px;
}

section.product-single-bottom .colfull .reviews .comment-reply-title {
    display: block;
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 22px;
    font-family: "Dosis", sans-serif;
}

section.product-single-bottom .colfull .reviews form .comment-form-rating {
    margin-bottom: 16px;
}

section.product-single-bottom .colfull .reviews form .comment-form-rating label {
    font-family: "Dosis", sans-serif;
    font-size: 16px;
}

section.product-single-bottom .colfull .reviews form .stars span {
    display: flex;
}

section.product-single-bottom .colfull .reviews form a {
    display: block;
    color: #f2eddd;
    width: 21px;
    margin-right: 3px;
}

section.product-single-bottom .colfull .reviews form a::before {
    position: absolute;
    content: "\f005";
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    color: #ffaf1a;
    opacity: 0.3;
}

section.product-single-bottom .colfull .reviews form .stars.selected a::before {
    opacity: 1;
}

section.product-single-bottom .colfull .reviews form .stars.selected a.active ~ a::before {
    opacity: 0.3;
}

section.product-single-bottom .colfull .reviews form textarea {
    width: 100%;
}

section.product-single-bottom .colfull .reviews form input.submit {
    display: inline-block;
    padding: 12px 40px;
    border: 3px solid #1a7933;
    text-align: center;
    font-family: "Dosis", sans-serif;
    font-size: 16px;
    line-height: 24px;
    text-decoration: none;
    -webkit-appearance: none;
    transition: all 0.1s ease;
    background: #1a7933;
    color: white;
    cursor: pointer;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

section.product-single-bottom .colfull .reviews form input.submit:hover {
    background: #53b56d;
    border: 3px solid #53b56d;
}

section.product-single-related {
    background: #fff !important;
}

section.product-single-bottom + .product-single-atc {
    margin-top: 70px;
}

section.product-single-atc:last-child {
    padding-bottom: 70px;
}

section.product-single-atc {
    position: relative;
    background: linear-gradient(180deg, #ffffff 50%, #f2eddd 50%);
}

section.product-single-atc::before {
    content: "";
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100%;
    background: url("../images/border.svg") repeat-x;
    background-position-y: center;
}

section.product-single-atc .colfull {
    max-width: 710px;
}

section.product-single-atc .colfull h3.top-label {
    text-align: center;
    margin-bottom: 32px;
}

section.product-single-atc .colfull > .inner {
    border: 2px solid #e6e5e1;
    background: #fff;
    padding: 50px 60px;

    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

section.product-single-atc .colfull > .inner h3 {
    margin-bottom: 32px;
}

section.product-single-atc .colfull > .inner .product-atc.loading {
    opacity: 0.5;
}

section.product-single-atc .colfull > .inner .product-atc .variation_input {
    display: flex;
    flex-flow: wrap;
    width: 100%;
}

section.product-single-atc .colfull > .inner .product-atc .variation_input .label {
    width: 200px;
    font-size: 18px;
    line-height: 50px;
    font-family: "Dosis", sans-serif;
}

section.product-single-atc .colfull > .inner .product-atc .variation_input .input {
    width: calc(100% - 200px);
}

section.product-single-atc .colfull > .inner .product-atc .variation_input .input > span,
section.product-single-atc .colfull > .inner .product-atc select {
    font-size: 18px;
    color: #a4a8ab;
    font-family: "Dosis", sans-serif;
    display: block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    padding: 0px 0px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

section.product-single-atc .colfull > .inner .product-atc select {
    border: 3px solid #f2f2f2;
    padding: 0px 20px;
}



section.product-single-atc .colfull > .inner .product-atc .button[type="submit"] {
    width: 100%;
    margin-top: 17px;
}

section.product-single-atc .colfull > .inner .product-atc .variation_input .input .button img,
section.product-single-atc .colfull > .inner .product-atc .button[type="submit"] img {
    display: inline-block;
    width: 22px;
    position: relative;
    top: 2px;
    margin-right: 5px;
}

section.product-single-atc .colfull > .inner .product-atc a.button {
    width: 100%;
    margin-top: 10px;
}

section#contactform {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 30px;
}

section#contactform .formillustration{
    padding-left: 15px;
}

/* Footer
----------------------------------------------------------*/

footer .top-footer {
    display: block;
    position: relative;

    background: #4d4733 url("../images/footer-top.svg") top center;
}

footer .top-footer .top {
    padding: 25px 0px;
    background: url("../images/dotted-border.svg") bottom center no-repeat;
}

footer .top-footer .top ul {
    display: flex;
    justify-content: space-between;
}

footer .top-footer .top ul li {
    list-style: none;

    font-family: "Dosis", sans-serif;
    font-size: 14px;
    line-height: 26px;
    color: #fff;
}

footer .top-footer .top ul li::before {
    font-family: "Font Awesome 5 Pro";
    content: "\f00c";
    opacity: 0.5;
    margin-right: 10px;
}

footer .top-footer .top ul li a {
    color: #fff;
}

footer .top-footer .top ul li a:hover {
    text-decoration: none;
}

footer .top-footer .bottom {
    padding: 30px 0px 40px;
}

footer .top-footer .bottom .menu-footer-category-nav-container ul.menu li {
    float: left;
    list-style: none;
}

footer .top-footer .bottom .menu-footer-category-nav-container ul.menu li:not(:last-child) {
    margin-right: 70px;
}

footer .top-footer .bottom .menu-footer-category-nav-container ul.menu li a {
    font-family: "Dosis", sans-serif;
    font-size: 18px;
    line-height: 54px;
    color: #fff;
    text-decoration: none;
}

footer .top-footer .bottom .menu-footer-category-nav-container ul.menu li a:hover {
    text-decoration: underline;
}

footer .top-footer .bottom .snackfinder span {
    float: left;
    display: inline-block;
    font-family: "Dosis", sans-serif;
    font-size: 18px;
    line-height: 54px;
    color: #fff;
    margin-right: 15px;
}

footer .bottom-footer {
    min-height: 194px;
    padding-top: 80px;
    padding-bottom: env(safe-area-inset-bottom);
    display: block;
    position: relative;
    background: #faf8f1;
}

footer .bottom-footer .top {
    padding-bottom: 70px;
    background: url("../images/footer-bottom.svg") bottom center repeat-x;
    border-bottom: 3px solid #f2f2f2;
}

footer .bottom-footer .top .colfull {
    display: flex;
}

footer .bottom-footer .bottom-footer-top-left-container {
    width: 60%;
}

footer .bottom-footer .top .newsletter {
    width: 40%;
    padding-left: 70px;
}

footer .bottom-footer .top .menu-footer-menu-container li {
    list-style: none;
}

footer .bottom-footer .top .menu-footer-menu-container li a {
    font-family: "Dosis", sans-serif;
    color: #000;
    text-decoration: none;
    line-height: 26px;
}

footer .bottom-footer .top .menu-footer-menu-container li a:hover {
    color: #e71b23;
}

footer .bottom-footer .top .menu-footer-menu-container > ul > li {
    float: left;
    width: 50%;
}

footer .bottom-footer .top .menu-footer-menu-container > ul > li > a {
    font-size: 18px;
}

footer .bottom-footer .top .menu-footer-menu-container > ul > li > ul {
    margin-top: 24px;
}

footer .bottom-footer .top .menu-footer-menu-container > ul > li > ul > li {
    margin-bottom: 14px;
}

footer .bottom-footer .top .menu-footer-menu-container > ul > li > ul > li > a {
    font-size: 16px;
}

footer .bottom-footer .top .keurmerk {
    display: inline-block;
    margin-top: 24px;
}

footer .bottom-footer .top .coc-data {
    padding-top:25px;
}

footer .bottom-footer .top address,
footer .bottom-footer .top .coc-data {
    font-family: "Dosis", sans-serif;
    color: #000;
    line-height: 26px;
    font-size: 16px;
}

footer .bottom-footer .top address > span {
    display: block;
    margin-bottom: 14px;
}

footer .bottom-footer .top address > span.title,
footer .bottom-footer .top span.title {
    font-size: 18px;
    margin-bottom: 24px;
    line-height: 26px;
    display:block;
}

footer .bottom-footer .top address span {
    display: block;
}

footer .bottom-footer .top address span a {
    color: #e71b23;
    text-decoration: none;
}

footer .bottom-footer .top address span a:hover {
    text-decoration: underline;
}

footer .bottom-footer .top address span i {
    font-style: normal;
    margin-right: 10px;
}

footer .bottom-footer .top .socials .social {
    display: inline-block;
    width: 35px;
    height: 35px;
    padding: 2px;
    margin-right: 5px;
    text-decoration: none;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

footer .bottom-footer .top .socials .social.facebook {
    background: #235b9e;
}

footer .bottom-footer .top .socials .social.whatsapp {
    background: #00c451;
}

footer .bottom-footer .top .socials .social.instagram {
    background: #db238d;
}
footer .bottom-footer .top .socials .social.youtube {
    background: #e71b23;
}
footer .bottom-footer .top .socials .social.tiktok {
    background: #ff0050;
    padding: 8px;
    padding-top: 3px;
}

footer .bottom-footer .top .socials .social.tiktok svg {
        margin-top: 0px;
    padding-top: 0px;
    position: relative;
    top: 3px;
    filter: invert(1);
}

footer .bottom-footer .top .socials .social i {
    text-align: center;
    display: block;
    width: 31px;
    height: 31px;
    line-height: 29px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;

    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
}

footer .bottom-footer .top .newsletter span.title {
    display: block;
    font-family: "Dosis", sans-serif;
    color: #000;
    font-size: 18px;
    margin-bottom: 24px;
}

footer .bottom-footer .top .newsletter span.text {
    display: block;
    font-family: "Dosis", sans-serif;
    color: #000;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 14px;
}


footer .bottom-footer span.text {
    display: block;
    font-family: "Dosis", sans-serif;
    color: #000;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 14px;
}

footer .bottom-footer .top .newsletter input[type="email"] {
    width: calc(100% - 172px);
}

footer .bottom-footer .top .newsletter .button {
    width: 160px;
}

footer .bottom-footer .top .newsletter .klantvertellen {
    margin-top: 32px;
}

footer .bottom-footer .bottom > div {
    display: flex;
    justify-content: space-between;
}

footer .bottom-footer .bottom .divide.twoThird {
    display: flex;
    justify-content: space-between;
}

footer .bottom-footer .bottom > div .colomn {
    display: flex;
}

footer .bottom-footer .bottom > div .colomn.klantvertellen {
    font-family: "Dosis", sans-serif;
    color: #000;
    font-size: 16px;
    line-height: 30px;
    padding: 25px 0px;
}

footer .bottom-footer .bottom > div .colomn.legal-menu li {
    list-style: none;
    display: inline-block;
}

footer .bottom-footer .bottom > div .colomn.legal-menu li:not(:last-child) {
    margin-right: 40px;
}

footer .bottom-footer .bottom > div .colomn.legal-menu li a {
    display: block;
    font-family: "Dosis", sans-serif;
    color: #000;
    font-size: 16px;
    line-height: 30px;
    padding: 25px 0px;
    text-decoration: none;
}
footer .bottom-footer .bottom > div .colomn.legal-menu li a:hover {
    color: #e71b23;
}

footer .bottom-footer .bottom > div .colomn img {
    align-self: center;
}

footer .bottom-footer .bottom > div .colomn img:not(:first-child) {
    margin-left: 15px;
}

footer .mobile {
    display: none;
}

@media handheld, screen and (min-width: 981px) {
    #header .top-header #logo {
        height: 160px;
    }

    #header .top-header #logo img {
        height: 83px;
    }

    body.body-scrolled #header .top-header #logo {
        transform: skewY(0deg);
        height: 75px;
        bottom: -75px;
        padding: 10px 10px;
    }

    body.body-scrolled #header .top-header #logo img {
        transform: skewY(0deg);
        height: 55px;
    }

    body.body-scrolled #header .bottom-header .inner-bottom-header {
        padding-left: 20px;
    }
}


#cmplz-document{
    max-width: 100%;
}

#billing_postcode_field,
#shipping_postcode_field{
    margin-right: 4%;
}

#billing_street_name_field,
#shipping_street_name_field{
    clear: both;
}

.payment-required{
    text-align: center;
    display: block;
}

header.cart-header{
    display: flex;
    justify-content: space-between;
}

#payment .mailchimp-newsletter input, #payment .mailchimp-newsletter label {
    display:inline !important;
}

@media handheld, screen and (max-width: 480px) {
    header.cart-header .button-container{
        display: none;
    }
}

.account-content{
    margin-bottom: 32px;
    width: 66.66%;
}

@media handheld, screen and (max-width: 850px) {
    .account-content{
        width: 100%;
    }
}

form.product-atc .variation_input button.button {
    margin-top:10px;
    width: 100%;
}

@media all and (max-width: 400px){
    .product-atc .buttons{
        display: flex;
        flex-wrap: nowrap;
        flex-direction: row;
        align-content: center;
        justify-content: flex-start;
        align-items: center;
    }

    .product-atc div#posts-products article.product-item form .atc-container .quantity-container, .single-product .quantity-container,
    .product-atc  .quantity-container .button{
        flex: 1 1 auto;
    }
    
    .product-atc .quantity-container .quantity-container input {
        padding: 0px 30px 0px 0px !important;
        width: auto !important;
    }
    
    .product-atc .quantity-container .button{
        padding: 12px 5px;
        text-align: center;
        margin-left: 15px;
    }

}

.gform_wrapper.gravity-theme .gfield_label{
    display: none !important;
}

.gform_wrapper.gravity-theme .gfield input.large, .gform_wrapper.gravity-theme .gfield select.large{
    display: block;
    width:100%;
    padding: 12px 23px;
    border: 3px solid #f2f2f2;
    color: #596572;
    font-family: "Dosis", sans-serif;
    font-size: 16px;
    line-height: 24px;
    min-width: 50%;
    -webkit-appearance: none;
    transition: all 0.1s ease;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}
.woocommerce-Reviews .review-toggle{
    display: none;
}

.woocommerce-Reviews .toggle-reviews{
    display: inline-block;
    position: relative;
    cursor:pointer;
    margin-top: 22px;
    font-size: 16px;
    line-height: 26px;
    text-decoration: underline;
    font-family: "Heebo", Arial, Helvetica, Sans-serif;
}

.woocommerce-Reviews .toggle-reviews:hover{
    text-decoration: none;
}

.woocommerce-Reviews .imagecontainer{
    padding-left:42px;
}

.review_not_logged_in{
    display: block;
    position: relative;
    margin-top:22px;
}

.review_not_logged_in .review_not_logged_in_text{
    display: block;
    position: relative;
    margin-top: 22px;
    font-size: 16px;
    line-height: 26px;
    font-family: "Heebo", Arial, Helvetica, Sans-serif;
    margin-bottom:22px;
}

.review_not_logged_in .review_not_logged_in_text .toggle-login-form{
    text-decoration: underline;
    cursor: pointer;
}

.review_not_logged_in .review_not_logged_in_text .toggle-login-form:hover{
    text-decoration: none;
}

.review_not_logged_in .login-form{
    display: none;
}

.review_not_logged_in .login-form.open{
    display: block;
}

.review_not_logged_in .login-form p{
    display: block;
    margin-bottom:26px;
}

.review_not_logged_in .login-form input[type="text"],
.review_not_logged_in .login-form input[type="password"]{
    display: block;
    width:100%;
    padding: 12px 23px;
    border: 3px solid #f2f2f2;
    color: #596572;
    font-family: "Dosis", sans-serif;
    font-size: 16px;
    line-height: 24px;
    min-width: 50%;
    -webkit-appearance: none;
    transition: all 0.1s ease;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

.gform_wrapper.gravity-theme .gfield input.large:hover, 
.gform_wrapper.gravity-theme .gfield select.large:hover{
    border: 3px solid #a4a8ab;
}
.form-error{
    margin-bottom:22px;
}

.comment-form-image{
    display: block;
    position: relative;
    margin-bottom:22px;
}

.comment-form-image label{
    display: block;
    position: relative;
}

/** change checkout notification order **/
.page-loop .woocommerce {
    display: flex;
    flex-direction: column;
}

.page-loop .woocommerce > * {
    order: 5;
}

.page-loop .woocommerce .woocommerce-notices-wrapper {
    order: 1;
    display:flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap:wrap;
}

.page-loop .woocommerce header.cart-header {
    order: 2;
    display:flex;
}

.page-loop .woocommerce .woocommerce-info.wc_points_rewards_earn_points {
    order: 4;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width:100%;
}

@media all and (max-width:768px){
    .page-loop .woocommerce .woocommerce-notices-wrapper {
        flex-direction: column;
    }
    .page-loop .woocommerce .woocommerce-info.wc_points_rewards_earn_points {
        display:block;
    }
}


.page-loop .woocommerce .woocommerce-form-login-toggle {
    order: 3;
    display:flex;
    background: #FBFAF5;
    border: 1px solid #F2EDDD;
    text-align: center;
    line-height: 26px;
    padding: 16px 30px;
    margin-bottom: 28px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    justify-content: center;
}

.page-loop .woocommerce form.woocommerce-form.woocommerce-form-login.login {
    order: 3;
}

.page-loop .woocommerce .woocommerce-form-coupon-toggle {
    order: 4;
    display:flex;
    justify-content: center;
}

.woocommerce-form.woocommerce-form-login p.form-row:not(.form-row-wide) {
    float: left;
}

.woocommerce-form.woocommerce-form-login p.lost_password {
    float: left;
    padding-top: 15px;
    display: inline-block;
    margin-left: 30px;
}

main .woocommerce .cart-collaterals, main .woocommerce .woocommerce-checkout-payment {
    float: right;
    width: 50%;
    flex: 0 0 50%;
    align-self: end;
}

@media all and (max-width:660px){
    .woocommerce .col2-set .col-1, .woocommerce .col2-set .col-2, .form-row.form-row-first, .form-row.form-row-last {
        clear:both;
    }
}

/** Opmaak fix bestelling-betalen **/
main .woocommerce div#payment {
    width: 50%;
    float: right;
}
@media all and (max-width:768px){
    main .woocommerce div#payment {
        width: 100%;
        float: none;
    }
}
main .woocommerce div#payment button#place_order {
    display: block;
    width: 100%;
}
main .woocommerce #order_review_heading{
    margin-top: 55px;
}

main .woocommerce .wc_payment_methods li{
    padding: 12px 18px;
}

main .woocommerce .wc_payment_methods li::before{
    content: "";
}

main .woocommerce .wc_payment_methods li.wc_payment_method:nth-child(odd){
    background: #FBFAF5;
}

main .woocommerce .wc_payment_methods li input[type="radio"] {
    position: absolute;
    margin-top: 6px;
}

main .woocommerce .wc_payment_methods li label{
    display: block;
    padding-left: 30px;
}

main .woocommerce .wc_payment_methods li label img{
    max-width: 36px;
    position: absolute;
    right: 18px;
    top: 12px;
}

main .woocommerce .wc_payment_methods li .payment_box {
    margin-top: 8px;
}

main .woocommerce .woocommerce-terms-and-conditions-wrapper > *{
    margin: 18px 0px;
}

main .woocommerce .form-row input[type="checkbox"]{
    width: auto;
}


/** Fix notice **/
.woocommerce-notice--success {
    background: #1a79331a;
    border: 1px solid #1a7933;
    text-align: center;
    line-height: 26px;
    padding: 16px 30px;
    margin-bottom: 28px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

select {
    background:transparent;
}

@media all and (max-width:1024px){
    div#posts-products article.product-item a .stock_container {
        display: block !important;
    }
}

.ginput_container.ginput_recaptcha {
    visibility: hidden;
}

@media all and (min-width:500px){
    #gform_wrapper_2 #gform_2 {
        width: 70%;
        float: left;
    }

}

.wac-qty-button {
    border: 0;
}
.ays-pb-modal.ays-pb-modal_1.fadeIn {
    width: 400px !important;
    max-width: 80%;
    border-radius: 8px !important;
    height: auto !important;
    bottom: auto !important;
    top: 50% !important;
    transform: translateY(-50%);
    padding-bottom: 10px !important;
}
.ays-pb-modals h2 {
    font-family: "Dosis", sans-serif !important;
    font-weight: bold;
    display: block;
    padding: 20px;
}
.ays-pb-modals .ays_content_box {
    padding: 20px 0;
    font-size: 21px;
    padding-bottom: 0;
}

.ays-pb-modals .ays_content_box p {
    font-family: "Dosis", sans-serif !important;
}
label.ays-pb-modal-close.ays-pb-modal-close_1.ays-pb-close-button-delay.ays_pb_pause_sound_1 {
    top: 14px !important;
    right: 14px !important;
}
.ays-pb-modal.ays-pb-modal_1.fadeIn .ays_content_box a.btn {
    display: block;
    background: green;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
}

.ginput_container.ginput_recaptcha {
    visibility: visible !important;
}

section.product-single-top .product-single-top-column .product-atc .stock_container .stock {
	margin-left: 0;
	width: max-content!important;
}

section.product-single-top .product-single-top-column .product-atc .price-stock-info {
	display: grid;
}

.wcwl_email_elements input {
    background: #eee;
    padding: 0.5rem;
    border-radius: 1em;
    font-size: 1rem;
    margin-top: 0.5rem;
}
.wcwl_intro, .wcwl_intro p, .wcwl_email_elements input {
	font-family: "Dosis", sans-serif;
}
.wcwl_elements.bound {
	margin-top: 1em;
}
.wcwl_elements .wcwl_control button, .wcwl_control {
    text-decoration: none;
}

#penning_engraving_text_fields, #dog_name_birthday_fields {
    padding: 1rem;
    background: #FBFAF5;
    border-radius: .25rem;
    margin-bottom: 2rem;
}
.gform_confirmation_message_5, .gform_confirmation_message, .gform_confirmation_wrapper, .gfield_description, .validation_message, .gfield_validation_message {
    font-family: "Dosis", sans-serif;
    font-size: 16px;
    line-height: 26px;
}

.atc-table {
    font-family: "Dosis", sans-serif;
}
.atc-table .sale {
    color: #fc5601;
    font-weight: 500;
}
.atc-table th {
    font-weight: bold;
}
.atc-table .atc-product-row td, .atc-table-cart td {
    padding-top: 8px;
    padding-bottom: 8px;
}
.atc-table .in-stock {
    color: green;
}
.atc-table .out-of-stock {
    color: red;
}

tr.atc-product-row.atc-product-row-variable.selected {
    background-color: #ffaf1a33;
}
tr.atc-product-row.atc-product-row-variable {
    transition: background-color 0.2s ease;
}


tr.atc-product-row.atc-product-row-variable td {
    position: relative;
}

span.atc-price-original {
    position: absolute;
    top: 6px;
    right: -1ch;
    font-size: 0.85rem;
    text-decoration: line-through;
    font-weight: 400;
    color: gray;
}
.product-atc-new h3 {
    margin-bottom: 12px!important;
}
.product-atc-new .rating {
    text-align: center;
    width: auto;
    display: flex;
    flex-flow: row;
    justify-content: center;
    margin-top: 0px;
}

.product-atc-new .atc-table .atc-product-row td, .atc-table-cart td {
    padding-top: 12px;
    padding-bottom: 12px;
}
.product-atc-new .voorraad-cel {
    padding: 0 1ch 0 2ch;
}
.product-atc-new .atc-table th {
    padding-bottom: .5rem;
}

.product-atc-new .atc-table {
    padding-top: 1rem;
    margin-top: 2rem;
}

.product-atc-new .atc-table-cart td .buttons {
    width: 80%;
    margin: 0 auto;
    padding-top: 20px;
    justify-content: space-around;
}

.atc-radio {
    margin-left: 24px;
    margin-right: -12px;
}/*
 * FancyBox - jQuery Plugin
 * Simple and fancy lightbox alternative
 *
 * Examples and documentation at: http://fancybox.net
 * 
 * Copyright (c) 2008 - 2010 Janis Skarnelis
 * That said, it is hardly a one-person project. Many people have submitted bugs, code, and offered their advice freely. Their support is greatly appreciated.
 * 
 * Version: 1.3.4 (11/11/2010)
 * Requires: jQuery v1.3+
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 */

#fancybox-wrap *,
#fancybox-wrap { box-sizing:content-box;-moz-box-sizing:content-box;}

#fancybox-loading {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 40px;
	height: 40px;
	margin-top: -20px;
	margin-left: -20px;
	cursor: pointer;
	overflow: hidden;
	z-index: 1104;
	display: none;
}

#fancybox-loading div {
	position: absolute;
	top: 0;
	left: 0;
	width: 40px;
	height: 480px;
	background-image: url('app/Styles/images/fancybox/fancybox.png');
}

#fancybox-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1100;
	display: none;
}

#fancybox-tmp {
	padding: 0;
	margin: 0;
	border: 0;
	overflow: auto;
	display: none;
}

#fancybox-wrap {
	position: absolute;
	top: 0;
	left: 0;
	padding: 20px;
	z-index: 1101;
	outline: none;
	display: none;
}

#fancybox-outer {
	position: relative;
	width: 100%;
	height: 100%;
	background: #fff;
}

#fancybox-content {
	width: 0;
	height: 0;
	padding: 0;
	outline: none;
	position: relative;
	overflow: hidden;
	z-index: 1102;
	border: 0px solid #fff;
}

#fancybox-hide-sel-frame {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: transparent;
	z-index: 1101;
}

#fancybox-close {
	position: absolute;
	top: -15px;
	right: -15px;
	width: 30px;
	height: 30px;
	background: transparent url('app/Styles/images/fancybox/fancybox.png') -40px 0px;
	cursor: pointer;
	z-index: 1103;
	display: none;
}

#fancybox-error {
	color: #444;
	font: normal 12px/20px Arial;
	padding: 14px;
	margin: 0;
}

#fancybox-img {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	border: none;
	outline: none;
	line-height: 0;
	vertical-align: top;
}

#fancybox-frame {
	width: 100%;
	height: 100%;
	border: none;
	display: block;
}

#fancybox-left, #fancybox-right {
	position: absolute;
	bottom: 0px;
	height: 100%;
	width: 35%;
	cursor: pointer;
	outline: none;
	background: transparent url('app/Styles/images/fancybox/blank.gif');
	z-index: 1102;
	display: none;
}

#fancybox-left {
	left: 0px;
}

#fancybox-right {
	right: 0px;
}

#fancybox-left-ico, #fancybox-right-ico {
	position: absolute;
	top: 50%;
	left: -9999px;
	width: 30px;
	height: 30px;
	margin-top: -15px;
	cursor: pointer;
	z-index: 1102;
	display: block;
}

#fancybox-left-ico {
	background-image: url('app/Styles/images/fancybox/fancybox.png');
	background-position: -40px -30px;
}

#fancybox-right-ico {
	background-image: url('app/Styles/images/fancybox/fancybox.png');
	background-position: -40px -60px;
}

#fancybox-left:hover, #fancybox-right:hover {
	visibility: visible; /* IE6 */
}

#fancybox-left:hover span {
	left: 20px;
}

#fancybox-right:hover span {
	left: auto;
	right: 20px;
}

.fancybox-bg {
	position: absolute;
	padding: 0;
	margin: 0;
	border: 0;
	width: 20px;
	height: 20px;
	z-index: 1001;
}

#fancybox-bg-n {
	top: -20px;
	left: 0;
	width: 100%;
	background-image: url('app/Styles/images/fancybox/fancybox-x.png');
}

#fancybox-bg-ne {
	top: -20px;
	right: -20px;
	background-image: url('app/Styles/images/fancybox/fancybox.png');
	background-position: -40px -162px;
}

#fancybox-bg-e {
	top: 0;
	right: -20px;
	height: 100%;
	background-image: url('app/Styles/images/fancybox/fancybox-y.png');
	background-position: -20px 0px;
}

#fancybox-bg-se {
	bottom: -20px;
	right: -20px;
	background-image: url('app/Styles/images/fancybox/fancybox.png');
	background-position: -40px -182px; 
}

#fancybox-bg-s {
	bottom: -20px;
	left: 0;
	width: 100%;
	background-image: url('app/Styles/images/fancybox/fancybox-x.png');
	background-position: 0px -20px;
}

#fancybox-bg-sw {
	bottom: -20px;
	left: -20px;
	background-image: url('app/Styles/images/fancybox/fancybox.png');
	background-position: -40px -142px;
}

#fancybox-bg-w {
	top: 0;
	left: -20px;
	height: 100%;
	background-image: url('app/Styles/images/fancybox/fancybox-y.png');
}

#fancybox-bg-nw {
	top: -20px;
	left: -20px;
	background-image: url('app/Styles/images/fancybox/fancybox.png');
	background-position: -40px -122px;
}

#fancybox-title {
	font-family: Helvetica;
	font-size: 12px;
	z-index: 1102;
}

.fancybox-title-inside {
	padding-bottom: 10px;
	text-align: center;
	color: #333;
	background: #fff;
	position: relative;
}

.fancybox-title-outside {
	padding-top: 10px;
	color: #fff;
}

.fancybox-title-over {
	position: absolute;
	bottom: 0;
	left: 0;
	color: #FFF;
	text-align: left;
}

#fancybox-title-over {
	padding: 10px;
	background-image: url('app/Styles/images/fancybox/fancy_title_over.png');
	display: block;
}

.fancybox-title-float {
	position: absolute;
	left: 0;
	bottom: -20px;
	height: 32px;
}

#fancybox-title-float-wrap {
	border: none;
	border-collapse: collapse;
	width: auto;
}

#fancybox-title-float-wrap td {
	border: none;
	white-space: nowrap;
}

#fancybox-title-float-left {
	padding: 0 0 0 15px;
	background: url('app/Styles/images/fancybox/fancybox.png') -40px -90px no-repeat;
}

#fancybox-title-float-main {
	color: #FFF;
	line-height: 29px;
	font-weight: bold;
	padding: 0 0 3px 0;
	background: url('app/Styles/images/fancybox/fancybox-x.png') 0px -40px;
}

#fancybox-title-float-right {
	padding: 0 0 0 15px;
	background: url('app/Styles/images/fancybox/fancybox.png') -55px -90px no-repeat;
}

div#fancy_inner {border-color:#000;}
div#fancy_close {right:-15px;left:-12px}
div#fancy_bg {background-color: #000; border:1px solid #000;}/* Send to friend popup */
body.fuze-ajax-render_form{background:#fff;}

/* Loading */
#wpdc-loading { position: fixed;top: 50%;left: 50%;width: 40px;height: 40px;margin-top: -20px;margin-left: -20px;cursor: pointer;overflow: hidden;z-index: 9999;display: none;}
	#wpdc-loading div {position: absolute;top: 0;left: 0;width: 40px;height: 480px;}

/* Error handling */
.footer_errors{background: transparent!important;}
.error_message{border:1px solid #e9bdbd;background: #fcd9d9;color: #ff0000;text-align:center;padding:5px 20px;}
.error_message p{margin-bottom:0px;}
.success_message{border:1px solid #c4e9bd;background: #dffcd9;color: #429b57;text-align:center;padding:5px 20px;}

/* Fuze Debug screen */
#fuze-debug{text-align:left;padding:20px;background:#333;}
#fuze-debug,
	#fuze-debug h1,
	#fuze-debug h2,
	#fuze-debug h3,
	#fuze-debug h4,
	#fuze-debug h5,
	#fuze-debug h6,
	#fuze-debug p{font-family:Arial;}

	#fuze-debug h3,
		#fuze-debug-page h3{padding:10px;display:block;color:#fff;background:#b90000;margin-bottom:10px;}

	#fuze-debug-page{background:#fff;margin-right:340px;height:100%;padding:10px;height:400px;overflow-y:scroll;}
		#fuze-debug-page h3{background:#b1b1b1;}
		#fuze-debug-page-details > div.fl{margin-right:10px;padding:10px;border:1px solid #000;}
			#fuze-debug-page-details th{font-size:16px;margin-bottom:10px;display:block;}

	#fuze-errors{color:#000;width:300px;padding:10px;background:#fff;height:400px;overflow-y:scroll;}
		#fuze-errors li{padding:5px 0;border-bottom:1px solid #ddd;}
		#fuze-errors li.priority-high{background: #ffeded;color: #ff0000;border-color:#e9bdbd;}
	#fuze-errors-label{background:#fff;border:1px solid #e9bdbd;border-top:0; color:#000;display:block;padding:5px 10px 5px 35px;}

/* Overlay */
._overlay{ background: #000; position:fixed;height:100%;width: 100%; cursor:pointer;z-index:990;}

/* Google maps fix */
.googlemap_wrapper img{ background-color: transparent !important;}body.compensate-for-scrollbar {
    overflow: hidden;
}

.fancybox-active {
    height: auto;
}

.fancybox-is-hidden {
    left: -9999px;
    margin: 0;
    position: absolute !important;
    top: -9999px;
    visibility: hidden;
}

.fancybox-container {
    -webkit-backface-visibility: hidden;
    height: 100%;
    left: 0;
    outline: none;
    position: fixed;
    -webkit-tap-highlight-color: transparent;
    top: 0;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    transform: translateZ(0);
    width: 100%;
    z-index: 99992;
}

.fancybox-container * {
    box-sizing: border-box;
}

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.fancybox-outer {
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
}

.fancybox-bg {
    background: rgb(30, 30, 30);
    opacity: 0;
    transition-duration: inherit;
    transition-property: opacity;
    transition-timing-function: cubic-bezier(.47, 0, .74, .71);
}

.fancybox-is-open .fancybox-bg {
    opacity: .9;
    transition-timing-function: cubic-bezier(.22, .61, .36, 1);
}

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
    direction: ltr;
    opacity: 0;
    position: absolute;
    transition: opacity .25s ease, visibility 0s ease .25s;
    visibility: hidden;
    z-index: 99997;
}

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
    opacity: 1;
    transition: opacity .25s ease 0s, visibility 0s ease 0s;
    visibility: visible;
}

.fancybox-infobar {
    color: #ccc;
    font-size: 13px;
    -webkit-font-smoothing: subpixel-antialiased;
    height: 44px;
    left: 0;
    line-height: 44px;
    min-width: 44px;
    mix-blend-mode: difference;
    padding: 0 10px;
    pointer-events: none;
    top: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.fancybox-toolbar {
    right: 0;
    top: 0;
}

.fancybox-stage {
    direction: ltr;
    overflow: visible;
    transform: translateZ(0);
    z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
    overflow: hidden;
}

.fancybox-slide {
    -webkit-backface-visibility: hidden;
    /* Using without prefix would break IE11 */
    display: none;
    height: 100%;
    left: 0;
    outline: none;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 44px;
    position: absolute;
    text-align: center;
    top: 0;
    transition-property: transform, opacity;
    white-space: normal;
    width: 100%;
    z-index: 99994;
}

.fancybox-slide::before {
    content: '';
    display: inline-block;
    font-size: 0;
    height: 100%;
    vertical-align: middle;
    width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
    display: block;
}

.fancybox-slide--image {
    overflow: hidden;
    padding: 44px 0;
}

.fancybox-slide--image::before {
    display: none;
}

.fancybox-slide--html {
    padding: 6px;
}

.fancybox-content {
    background: #fff;
    display: inline-block;
    margin: 0;
    max-width: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 44px;
    position: relative;
    text-align: left;
    vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
    animation-timing-function: cubic-bezier(.5, 0, .14, 1);
    -webkit-backface-visibility: hidden;
    background: transparent;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    left: 0;
    max-width: none;
    overflow: visible;
    padding: 0;
    position: absolute;
    top: 0;
    -ms-transform-origin: top left;
    transform-origin: top left;
    transition-property: transform, opacity;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
    cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
    cursor: zoom-in;
}

.fancybox-can-swipe .fancybox-content,
.fancybox-can-pan .fancybox-content {
    cursor: -webkit-grab;
    cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}

.fancybox-container [data-selectable='true'] {
    cursor: text;
}

.fancybox-image,
.fancybox-spaceball {
    background: transparent;
    border: 0;
    height: 100%;
    left: 0;
    margin: 0;
    max-height: none;
    max-width: none;
    padding: 0;
    position: absolute;
    top: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%;
}

.fancybox-spaceball {
    z-index: 1;
}

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
    height: 100%;
    overflow: visible;
    padding: 0;
    width: 100%;
}

.fancybox-slide--video .fancybox-content {
    background: #000;
}

.fancybox-slide--map .fancybox-content {
    background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
    background: #fff;
}

.fancybox-video,
.fancybox-iframe {
    background: transparent;
    border: 0;
    display: block;
    height: 100%;
    margin: 0;
    overflow: hidden;
    padding: 0;
    width: 100%;
}

/* Fix iOS */
.fancybox-iframe {
    left: 0;
    position: absolute;
    top: 0;
}

.fancybox-error {
    background: #fff;
    cursor: default;
    max-width: 400px;
    padding: 40px;
    width: 100%;
}

.fancybox-error p {
    color: #444;
    font-size: 16px;
    line-height: 20px;
    margin: 0;
    padding: 0;
}

/* Buttons */

.fancybox-button {
    background: rgba(30, 30, 30, .6);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    cursor: pointer;
    display: inline-block;
    height: 44px;
    margin: 0;
    padding: 10px;
    position: relative;
    transition: color .2s;
    vertical-align: top;
    visibility: inherit;
    width: 44px;
}

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
    color: #ccc;
}

.fancybox-button:hover {
    color: #fff;
}

.fancybox-button:focus {
    outline: none;
}

.fancybox-button.fancybox-focus {
    outline: 1px dotted;
}

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
    color: #888;
    cursor: default;
    outline: none;
}

/* Fix IE11 */
.fancybox-button div {
    height: 100%;
}

.fancybox-button svg {
    display: block;
    height: 100%;
    overflow: visible;
    position: relative;
    width: 100%;
}

.fancybox-button svg path {
    fill: currentColor;
    stroke-width: 0;
}

.fancybox-button--play svg:nth-child(2),
.fancybox-button--fsenter svg:nth-child(2) {
    display: none;
}

.fancybox-button--pause svg:nth-child(1),
.fancybox-button--fsexit svg:nth-child(1) {
    display: none;
}

.fancybox-progress {
    background: #ff5268;
    height: 2px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -ms-transform-origin: 0;
    transform-origin: 0;
    transition-property: transform;
    transition-timing-function: linear;
    z-index: 99998;
}

/* Close button on the top right corner of html content */

.fancybox-close-small {
    background: transparent;
    border: 0;
    border-radius: 0;
    color: #ccc;
    cursor: pointer;
    opacity: .8;
    padding: 8px;
    position: absolute;
    right: -12px;
    top: -44px;
    z-index: 401;
}

.fancybox-close-small:hover {
    color: #fff;
    opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
    color: currentColor;
    padding: 10px;
    right: 0;
    top: 0;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
    overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
    display: none;
}

/* Navigation arrows */

.fancybox-navigation .fancybox-button {
    background-clip: content-box;
    height: 100px;
    opacity: 0;
    position: absolute;
    top: calc(50% - 50px);
    width: 70px;
}

.fancybox-navigation .fancybox-button div {
    padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
    left: 0;
    left: env(safe-area-inset-left);
    padding: 31px 26px 31px 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
    padding: 31px 6px 31px 26px;
    right: 0;
    right: env(safe-area-inset-right);
}

/* Caption */

.fancybox-caption {
    background: linear-gradient(to top,
        rgba(0, 0, 0, .85) 0%,
        rgba(0, 0, 0, .3) 50%,
        rgba(0, 0, 0, .15) 65%,
        rgba(0, 0, 0, .075) 75.5%,
        rgba(0, 0, 0, .037) 82.85%,
        rgba(0, 0, 0, .019) 88%,
        rgba(0, 0, 0, 0) 100%);
    bottom: 0;
    color: #eee;
    font-size: 14px;
    font-weight: 400;
    left: 0;
    line-height: 1.5;
    padding: 75px 44px 25px 44px;
    pointer-events: none;
    right: 0;
    text-align: center;
    z-index: 99996;
}

@supports (padding: max(0px)) {
    .fancybox-caption {
        padding: 75px max(44px, env(safe-area-inset-right)) max(25px, env(safe-area-inset-bottom)) max(44px, env(safe-area-inset-left));
    }
}

.fancybox-caption--separate {
    margin-top: -50px;
}

.fancybox-caption__body {
    max-height: 50vh;
    overflow: auto;
    pointer-events: all;
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
    color: #ccc;
    text-decoration: none;
}

.fancybox-caption a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Loading indicator */

.fancybox-loading {
    animation: fancybox-rotate 1s linear infinite;
    background: transparent;
    border: 4px solid #888;
    border-bottom-color: #fff;
    border-radius: 50%;
    height: 50px;
    left: 50%;
    margin: -25px 0 0 -25px;
    opacity: .7;
    padding: 0;
    position: absolute;
    top: 50%;
    width: 50px;
    z-index: 99999;
}

@keyframes fancybox-rotate {
    100% {
        transform: rotate(360deg);
    }
}

/* Transition effects */

.fancybox-animated {
    transition-timing-function: cubic-bezier(0, 0, .25, 1);
}

/* transitionEffect: slide */

.fancybox-fx-slide.fancybox-slide--previous {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* transitionEffect: fade */

.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
    opacity: 0;
    transition-timing-function: cubic-bezier(.19, 1, .22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
    opacity: 1;
}

/* transitionEffect: zoom-in-out */

.fancybox-fx-zoom-in-out.fancybox-slide--previous {
    opacity: 0;
    transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
    opacity: 0;
    transform: scale3d(.5, .5, .5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
    opacity: 1;
    transform: scale3d(1, 1, 1);
}

/* transitionEffect: rotate */

.fancybox-fx-rotate.fancybox-slide--previous {
    opacity: 0;
    -ms-transform: rotate(-360deg);
    transform: rotate(-360deg);
}

.fancybox-fx-rotate.fancybox-slide--next {
    opacity: 0;
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

.fancybox-fx-rotate.fancybox-slide--current {
    opacity: 1;
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

/* transitionEffect: circular */

.fancybox-fx-circular.fancybox-slide--previous {
    opacity: 0;
    transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
    opacity: 0;
    transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
    opacity: 1;
    transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}

/* transitionEffect: tube */

.fancybox-fx-tube.fancybox-slide--previous {
    transform: translate3d(-100%, 0, 0) scale(.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
    transform: translate3d(100%, 0, 0) scale(.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
    transform: translate3d(0, 0, 0) scale(1);
}

/* Styling for Small-Screen Devices */
@media all and (max-height: 576px) {
    .fancybox-slide {
        padding-left: 6px;
        padding-right: 6px;
    }

    .fancybox-slide--image {
        padding: 6px 0;
    }

    .fancybox-close-small {
        right: -6px;
    }

    .fancybox-slide--image .fancybox-close-small {
        background: #4e4e4e;
        color: #f2f4f6;
        height: 36px;
        opacity: 1;
        padding: 6px;
        right: 0;
        top: 0;
        width: 36px;
    }

    .fancybox-caption {
        padding-left: 12px;
        padding-right: 12px;
    }

    @supports (padding: max(0px)) {
        .fancybox-caption {
            padding-left: max(12px, env(safe-area-inset-left));
            padding-right: max(12px, env(safe-area-inset-right));
        }
    }
}
/* Share */

.fancybox-share {
    background: #f4f4f4;
    border-radius: 3px;
    max-width: 90%;
    padding: 30px;
    text-align: center;
}

.fancybox-share h1 {
    color: #222;
    font-size: 35px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.fancybox-share p {
    margin: 0;
    padding: 0;
}

.fancybox-share__button {
    border: 0;
    border-radius: 3px;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    line-height: 40px;
    margin: 0 5px 10px 5px;
    min-width: 130px;
    padding: 0 15px;
    text-decoration: none;
    transition: all .2s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
}

.fancybox-share__button:visited,
.fancybox-share__button:link {
    color: #fff;
}

.fancybox-share__button:hover {
    text-decoration: none;
}

.fancybox-share__button--fb {
    background: #3b5998;
}

.fancybox-share__button--fb:hover {
    background: #344e86;
}

.fancybox-share__button--pt {
    background: #bd081d;
}

.fancybox-share__button--pt:hover {
    background: #aa0719;
}

.fancybox-share__button--tw {
    background: #1da1f2;
}

.fancybox-share__button--tw:hover {
    background: #0d95e8;
}

.fancybox-share__button svg {
    height: 25px;
    margin-right: 7px;
    position: relative;
    top: -1px;
    vertical-align: middle;
    width: 25px;
}

.fancybox-share__button svg path {
    fill: #fff;
}

.fancybox-share__input {
    background: transparent;
    border: 0;
    border-bottom: 1px solid #d7d7d7;
    border-radius: 0;
    color: #5d5b5b;
    font-size: 14px;
    margin: 10px 0 0 0;
    outline: none;
    padding: 10px 15px;
    width: 100%;
}
/* Thumbs */

.fancybox-thumbs {
    background: #ddd;
    bottom: 0;
    display: none;
    margin: 0;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    padding: 2px 2px 4px 2px;
    position: absolute;
    right: 0;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    top: 0;
    width: 212px;
    z-index: 99995;
}

.fancybox-thumbs-x {
    overflow-x: auto;
    overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
    display: block;
}

.fancybox-show-thumbs .fancybox-inner {
    right: 212px;
}

.fancybox-thumbs__list {
    font-size: 0;
    height: 100%;
    list-style: none;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0;
    position: absolute;
    position: relative;
    white-space: nowrap;
    width: 100%;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
    overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
    width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: 10px;
}

.fancybox-thumbs__list a {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-color: rgba(0, 0, 0, .1);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
    float: left;
    height: 75px;
    margin: 2px;
    max-height: calc(100% - 8px);
    max-width: calc(50% - 4px);
    outline: none;
    overflow: hidden;
    padding: 0;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    width: 100px;
}

.fancybox-thumbs__list a::before {
    border: 6px solid #ff5268;
    bottom: 0;
    content: '';
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: all .2s cubic-bezier(.25, .46, .45, .94);
    z-index: 99991;
}

.fancybox-thumbs__list a:focus::before {
    opacity: .5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active::before {
    opacity: 1;
}

/* Styling for Small-Screen Devices */
@media all and (max-width: 576px) {
    .fancybox-thumbs {
        width: 110px;
    }

    .fancybox-show-thumbs .fancybox-inner {
        right: 110px;
    }

    .fancybox-thumbs__list a {
        max-width: calc(100% - 10px);
    }
}/*!
 * Font Awesome Pro 5.9.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 */
.fa,
.fas,
.far,
.fal,
.fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1; }

.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -.0667em; }

.fa-xs {
  font-size: .75em; }

.fa-sm {
  font-size: .875em; }

.fa-1x {
  font-size: 1em; }

.fa-2x {
  font-size: 2em; }

.fa-3x {
  font-size: 3em; }

.fa-4x {
  font-size: 4em; }

.fa-5x {
  font-size: 5em; }

.fa-6x {
  font-size: 6em; }

.fa-7x {
  font-size: 7em; }

.fa-8x {
  font-size: 8em; }

.fa-9x {
  font-size: 9em; }

.fa-10x {
  font-size: 10em; }

.fa-fw {
  text-align: center;
  width: 1.25em; }

.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0; }
  .fa-ul > li {
    position: relative; }

.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit; }

.fa-border {
  border: solid 0.08em #eee;
  border-radius: .1em;
  padding: .2em .25em .15em; }

.fa-pull-left {
  float: left; }

.fa-pull-right {
  float: right; }

.fa.fa-pull-left,
.fas.fa-pull-left,
.far.fa-pull-left,
.fal.fa-pull-left,
.fab.fa-pull-left {
  margin-right: .3em; }

.fa.fa-pull-right,
.fas.fa-pull-right,
.far.fa-pull-right,
.fal.fa-pull-right,
.fab.fa-pull-right {
  margin-left: .3em; }

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
          animation: fa-spin 2s infinite linear; }

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
          animation: fa-spin 1s infinite steps(8); }

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg); }

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg); }

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg); }

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1); }

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1); }

.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(-1, -1);
          transform: scale(-1, -1); }

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-flip-both {
  -webkit-filter: none;
          filter: none; }

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em; }

.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%; }

.fa-stack-1x {
  line-height: inherit; }

.fa-stack-2x {
  font-size: 2em; }

.fa-inverse {
  color: #fff; }

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.fa-500px:before {
  content: "\f26e"; }

.fa-abacus:before {
  content: "\f640"; }

.fa-accessible-icon:before {
  content: "\f368"; }

.fa-accusoft:before {
  content: "\f369"; }

.fa-acorn:before {
  content: "\f6ae"; }

.fa-acquisitions-incorporated:before {
  content: "\f6af"; }

.fa-ad:before {
  content: "\f641"; }

.fa-address-book:before {
  content: "\f2b9"; }

.fa-address-card:before {
  content: "\f2bb"; }

.fa-adjust:before {
  content: "\f042"; }

.fa-adn:before {
  content: "\f170"; }

.fa-adobe:before {
  content: "\f778"; }

.fa-adversal:before {
  content: "\f36a"; }

.fa-affiliatetheme:before {
  content: "\f36b"; }

.fa-air-freshener:before {
  content: "\f5d0"; }

.fa-airbnb:before {
  content: "\f834"; }

.fa-alarm-clock:before {
  content: "\f34e"; }

.fa-alarm-exclamation:before {
  content: "\f843"; }

.fa-alarm-plus:before {
  content: "\f844"; }

.fa-alarm-snooze:before {
  content: "\f845"; }

.fa-algolia:before {
  content: "\f36c"; }

.fa-alicorn:before {
  content: "\f6b0"; }

.fa-align-center:before {
  content: "\f037"; }

.fa-align-justify:before {
  content: "\f039"; }

.fa-align-left:before {
  content: "\f036"; }

.fa-align-right:before {
  content: "\f038"; }

.fa-align-slash:before {
  content: "\f846"; }

.fa-alipay:before {
  content: "\f642"; }

.fa-allergies:before {
  content: "\f461"; }

.fa-amazon:before {
  content: "\f270"; }

.fa-amazon-pay:before {
  content: "\f42c"; }

.fa-ambulance:before {
  content: "\f0f9"; }

.fa-american-sign-language-interpreting:before {
  content: "\f2a3"; }

.fa-amilia:before {
  content: "\f36d"; }

.fa-analytics:before {
  content: "\f643"; }

.fa-anchor:before {
  content: "\f13d"; }

.fa-android:before {
  content: "\f17b"; }

.fa-angel:before {
  content: "\f779"; }

.fa-angellist:before {
  content: "\f209"; }

.fa-angle-double-down:before {
  content: "\f103"; }

.fa-angle-double-left:before {
  content: "\f100"; }

.fa-angle-double-right:before {
  content: "\f101"; }

.fa-angle-double-up:before {
  content: "\f102"; }

.fa-angle-down:before {
  content: "\f107"; }

.fa-angle-left:before {
  content: "\f104"; }

.fa-angle-right:before {
  content: "\f105"; }

.fa-angle-up:before {
  content: "\f106"; }

.fa-angry:before {
  content: "\f556"; }

.fa-angrycreative:before {
  content: "\f36e"; }

.fa-angular:before {
  content: "\f420"; }

.fa-ankh:before {
  content: "\f644"; }

.fa-app-store:before {
  content: "\f36f"; }

.fa-app-store-ios:before {
  content: "\f370"; }

.fa-apper:before {
  content: "\f371"; }

.fa-apple:before {
  content: "\f179"; }

.fa-apple-alt:before {
  content: "\f5d1"; }

.fa-apple-crate:before {
  content: "\f6b1"; }

.fa-apple-pay:before {
  content: "\f415"; }

.fa-archive:before {
  content: "\f187"; }

.fa-archway:before {
  content: "\f557"; }

.fa-arrow-alt-circle-down:before {
  content: "\f358"; }

.fa-arrow-alt-circle-left:before {
  content: "\f359"; }

.fa-arrow-alt-circle-right:before {
  content: "\f35a"; }

.fa-arrow-alt-circle-up:before {
  content: "\f35b"; }

.fa-arrow-alt-down:before {
  content: "\f354"; }

.fa-arrow-alt-from-bottom:before {
  content: "\f346"; }

.fa-arrow-alt-from-left:before {
  content: "\f347"; }

.fa-arrow-alt-from-right:before {
  content: "\f348"; }

.fa-arrow-alt-from-top:before {
  content: "\f349"; }

.fa-arrow-alt-left:before {
  content: "\f355"; }

.fa-arrow-alt-right:before {
  content: "\f356"; }

.fa-arrow-alt-square-down:before {
  content: "\f350"; }

.fa-arrow-alt-square-left:before {
  content: "\f351"; }

.fa-arrow-alt-square-right:before {
  content: "\f352"; }

.fa-arrow-alt-square-up:before {
  content: "\f353"; }

.fa-arrow-alt-to-bottom:before {
  content: "\f34a"; }

.fa-arrow-alt-to-left:before {
  content: "\f34b"; }

.fa-arrow-alt-to-right:before {
  content: "\f34c"; }

.fa-arrow-alt-to-top:before {
  content: "\f34d"; }

.fa-arrow-alt-up:before {
  content: "\f357"; }

.fa-arrow-circle-down:before {
  content: "\f0ab"; }

.fa-arrow-circle-left:before {
  content: "\f0a8"; }

.fa-arrow-circle-right:before {
  content: "\f0a9"; }

.fa-arrow-circle-up:before {
  content: "\f0aa"; }

.fa-arrow-down:before {
  content: "\f063"; }

.fa-arrow-from-bottom:before {
  content: "\f342"; }

.fa-arrow-from-left:before {
  content: "\f343"; }

.fa-arrow-from-right:before {
  content: "\f344"; }

.fa-arrow-from-top:before {
  content: "\f345"; }

.fa-arrow-left:before {
  content: "\f060"; }

.fa-arrow-right:before {
  content: "\f061"; }

.fa-arrow-square-down:before {
  content: "\f339"; }

.fa-arrow-square-left:before {
  content: "\f33a"; }

.fa-arrow-square-right:before {
  content: "\f33b"; }

.fa-arrow-square-up:before {
  content: "\f33c"; }

.fa-arrow-to-bottom:before {
  content: "\f33d"; }

.fa-arrow-to-left:before {
  content: "\f33e"; }

.fa-arrow-to-right:before {
  content: "\f340"; }

.fa-arrow-to-top:before {
  content: "\f341"; }

.fa-arrow-up:before {
  content: "\f062"; }

.fa-arrows:before {
  content: "\f047"; }

.fa-arrows-alt:before {
  content: "\f0b2"; }

.fa-arrows-alt-h:before {
  content: "\f337"; }

.fa-arrows-alt-v:before {
  content: "\f338"; }

.fa-arrows-h:before {
  content: "\f07e"; }

.fa-arrows-v:before {
  content: "\f07d"; }

.fa-artstation:before {
  content: "\f77a"; }

.fa-assistive-listening-systems:before {
  content: "\f2a2"; }

.fa-asterisk:before {
  content: "\f069"; }

.fa-asymmetrik:before {
  content: "\f372"; }

.fa-at:before {
  content: "\f1fa"; }

.fa-atlas:before {
  content: "\f558"; }

.fa-atlassian:before {
  content: "\f77b"; }

.fa-atom:before {
  content: "\f5d2"; }

.fa-atom-alt:before {
  content: "\f5d3"; }

.fa-audible:before {
  content: "\f373"; }

.fa-audio-description:before {
  content: "\f29e"; }

.fa-autoprefixer:before {
  content: "\f41c"; }

.fa-avianex:before {
  content: "\f374"; }

.fa-aviato:before {
  content: "\f421"; }

.fa-award:before {
  content: "\f559"; }

.fa-aws:before {
  content: "\f375"; }

.fa-axe:before {
  content: "\f6b2"; }

.fa-axe-battle:before {
  content: "\f6b3"; }

.fa-baby:before {
  content: "\f77c"; }

.fa-baby-carriage:before {
  content: "\f77d"; }

.fa-backpack:before {
  content: "\f5d4"; }

.fa-backspace:before {
  content: "\f55a"; }

.fa-backward:before {
  content: "\f04a"; }

.fa-bacon:before {
  content: "\f7e5"; }

.fa-badge:before {
  content: "\f335"; }

.fa-badge-check:before {
  content: "\f336"; }

.fa-badge-dollar:before {
  content: "\f645"; }

.fa-badge-percent:before {
  content: "\f646"; }

.fa-badger-honey:before {
  content: "\f6b4"; }

.fa-bags-shopping:before {
  content: "\f847"; }

.fa-balance-scale:before {
  content: "\f24e"; }

.fa-balance-scale-left:before {
  content: "\f515"; }

.fa-balance-scale-right:before {
  content: "\f516"; }

.fa-ball-pile:before {
  content: "\f77e"; }

.fa-ballot:before {
  content: "\f732"; }

.fa-ballot-check:before {
  content: "\f733"; }

.fa-ban:before {
  content: "\f05e"; }

.fa-band-aid:before {
  content: "\f462"; }

.fa-bandcamp:before {
  content: "\f2d5"; }

.fa-barcode:before {
  content: "\f02a"; }

.fa-barcode-alt:before {
  content: "\f463"; }

.fa-barcode-read:before {
  content: "\f464"; }

.fa-barcode-scan:before {
  content: "\f465"; }

.fa-bars:before {
  content: "\f0c9"; }

.fa-baseball:before {
  content: "\f432"; }

.fa-baseball-ball:before {
  content: "\f433"; }

.fa-basketball-ball:before {
  content: "\f434"; }

.fa-basketball-hoop:before {
  content: "\f435"; }

.fa-bat:before {
  content: "\f6b5"; }

.fa-bath:before {
  content: "\f2cd"; }

.fa-battery-bolt:before {
  content: "\f376"; }

.fa-battery-empty:before {
  content: "\f244"; }

.fa-battery-full:before {
  content: "\f240"; }

.fa-battery-half:before {
  content: "\f242"; }

.fa-battery-quarter:before {
  content: "\f243"; }

.fa-battery-slash:before {
  content: "\f377"; }

.fa-battery-three-quarters:before {
  content: "\f241"; }

.fa-battle-net:before {
  content: "\f835"; }

.fa-bed:before {
  content: "\f236"; }

.fa-beer:before {
  content: "\f0fc"; }

.fa-behance:before {
  content: "\f1b4"; }

.fa-behance-square:before {
  content: "\f1b5"; }

.fa-bell:before {
  content: "\f0f3"; }

.fa-bell-exclamation:before {
  content: "\f848"; }

.fa-bell-plus:before {
  content: "\f849"; }

.fa-bell-school:before {
  content: "\f5d5"; }

.fa-bell-school-slash:before {
  content: "\f5d6"; }

.fa-bell-slash:before {
  content: "\f1f6"; }

.fa-bells:before {
  content: "\f77f"; }

.fa-bezier-curve:before {
  content: "\f55b"; }

.fa-bible:before {
  content: "\f647"; }

.fa-bicycle:before {
  content: "\f206"; }

.fa-biking:before {
  content: "\f84a"; }

.fa-biking-mountain:before {
  content: "\f84b"; }

.fa-bimobject:before {
  content: "\f378"; }

.fa-binoculars:before {
  content: "\f1e5"; }

.fa-biohazard:before {
  content: "\f780"; }

.fa-birthday-cake:before {
  content: "\f1fd"; }

.fa-bitbucket:before {
  content: "\f171"; }

.fa-bitcoin:before {
  content: "\f379"; }

.fa-bity:before {
  content: "\f37a"; }

.fa-black-tie:before {
  content: "\f27e"; }

.fa-blackberry:before {
  content: "\f37b"; }

.fa-blanket:before {
  content: "\f498"; }

.fa-blender:before {
  content: "\f517"; }

.fa-blender-phone:before {
  content: "\f6b6"; }

.fa-blind:before {
  content: "\f29d"; }

.fa-blog:before {
  content: "\f781"; }

.fa-blogger:before {
  content: "\f37c"; }

.fa-blogger-b:before {
  content: "\f37d"; }

.fa-bluetooth:before {
  content: "\f293"; }

.fa-bluetooth-b:before {
  content: "\f294"; }

.fa-bold:before {
  content: "\f032"; }

.fa-bolt:before {
  content: "\f0e7"; }

.fa-bomb:before {
  content: "\f1e2"; }

.fa-bone:before {
  content: "\f5d7"; }

.fa-bone-break:before {
  content: "\f5d8"; }

.fa-bong:before {
  content: "\f55c"; }

.fa-book:before {
  content: "\f02d"; }

.fa-book-alt:before {
  content: "\f5d9"; }

.fa-book-dead:before {
  content: "\f6b7"; }

.fa-book-heart:before {
  content: "\f499"; }

.fa-book-medical:before {
  content: "\f7e6"; }

.fa-book-open:before {
  content: "\f518"; }

.fa-book-reader:before {
  content: "\f5da"; }

.fa-book-spells:before {
  content: "\f6b8"; }

.fa-book-user:before {
  content: "\f7e7"; }

.fa-bookmark:before {
  content: "\f02e"; }

.fa-books:before {
  content: "\f5db"; }

.fa-books-medical:before {
  content: "\f7e8"; }

.fa-boot:before {
  content: "\f782"; }

.fa-booth-curtain:before {
  content: "\f734"; }

.fa-bootstrap:before {
  content: "\f836"; }

.fa-border-all:before {
  content: "\f84c"; }

.fa-border-bottom:before {
  content: "\f84d"; }

.fa-border-inner:before {
  content: "\f84e"; }

.fa-border-left:before {
  content: "\f84f"; }

.fa-border-none:before {
  content: "\f850"; }

.fa-border-outer:before {
  content: "\f851"; }

.fa-border-right:before {
  content: "\f852"; }

.fa-border-style:before {
  content: "\f853"; }

.fa-border-style-alt:before {
  content: "\f854"; }

.fa-border-top:before {
  content: "\f855"; }

.fa-bow-arrow:before {
  content: "\f6b9"; }

.fa-bowling-ball:before {
  content: "\f436"; }

.fa-bowling-pins:before {
  content: "\f437"; }

.fa-box:before {
  content: "\f466"; }

.fa-box-alt:before {
  content: "\f49a"; }

.fa-box-ballot:before {
  content: "\f735"; }

.fa-box-check:before {
  content: "\f467"; }

.fa-box-fragile:before {
  content: "\f49b"; }

.fa-box-full:before {
  content: "\f49c"; }

.fa-box-heart:before {
  content: "\f49d"; }

.fa-box-open:before {
  content: "\f49e"; }

.fa-box-up:before {
  content: "\f49f"; }

.fa-box-usd:before {
  content: "\f4a0"; }

.fa-boxes:before {
  content: "\f468"; }

.fa-boxes-alt:before {
  content: "\f4a1"; }

.fa-boxing-glove:before {
  content: "\f438"; }

.fa-brackets:before {
  content: "\f7e9"; }

.fa-brackets-curly:before {
  content: "\f7ea"; }

.fa-braille:before {
  content: "\f2a1"; }

.fa-brain:before {
  content: "\f5dc"; }

.fa-bread-loaf:before {
  content: "\f7eb"; }

.fa-bread-slice:before {
  content: "\f7ec"; }

.fa-briefcase:before {
  content: "\f0b1"; }

.fa-briefcase-medical:before {
  content: "\f469"; }

.fa-bring-forward:before {
  content: "\f856"; }

.fa-bring-front:before {
  content: "\f857"; }

.fa-broadcast-tower:before {
  content: "\f519"; }

.fa-broom:before {
  content: "\f51a"; }

.fa-browser:before {
  content: "\f37e"; }

.fa-brush:before {
  content: "\f55d"; }

.fa-btc:before {
  content: "\f15a"; }

.fa-buffer:before {
  content: "\f837"; }

.fa-bug:before {
  content: "\f188"; }

.fa-building:before {
  content: "\f1ad"; }

.fa-bullhorn:before {
  content: "\f0a1"; }

.fa-bullseye:before {
  content: "\f140"; }

.fa-bullseye-arrow:before {
  content: "\f648"; }

.fa-bullseye-pointer:before {
  content: "\f649"; }

.fa-burger-soda:before {
  content: "\f858"; }

.fa-burn:before {
  content: "\f46a"; }

.fa-buromobelexperte:before {
  content: "\f37f"; }

.fa-burrito:before {
  content: "\f7ed"; }

.fa-bus:before {
  content: "\f207"; }

.fa-bus-alt:before {
  content: "\f55e"; }

.fa-bus-school:before {
  content: "\f5dd"; }

.fa-business-time:before {
  content: "\f64a"; }

.fa-buysellads:before {
  content: "\f20d"; }

.fa-cabinet-filing:before {
  content: "\f64b"; }

.fa-calculator:before {
  content: "\f1ec"; }

.fa-calculator-alt:before {
  content: "\f64c"; }

.fa-calendar:before {
  content: "\f133"; }

.fa-calendar-alt:before {
  content: "\f073"; }

.fa-calendar-check:before {
  content: "\f274"; }

.fa-calendar-day:before {
  content: "\f783"; }

.fa-calendar-edit:before {
  content: "\f333"; }

.fa-calendar-exclamation:before {
  content: "\f334"; }

.fa-calendar-minus:before {
  content: "\f272"; }

.fa-calendar-plus:before {
  content: "\f271"; }

.fa-calendar-star:before {
  content: "\f736"; }

.fa-calendar-times:before {
  content: "\f273"; }

.fa-calendar-week:before {
  content: "\f784"; }

.fa-camera:before {
  content: "\f030"; }

.fa-camera-alt:before {
  content: "\f332"; }

.fa-camera-retro:before {
  content: "\f083"; }

.fa-campfire:before {
  content: "\f6ba"; }

.fa-campground:before {
  content: "\f6bb"; }

.fa-canadian-maple-leaf:before {
  content: "\f785"; }

.fa-candle-holder:before {
  content: "\f6bc"; }

.fa-candy-cane:before {
  content: "\f786"; }

.fa-candy-corn:before {
  content: "\f6bd"; }

.fa-cannabis:before {
  content: "\f55f"; }

.fa-capsules:before {
  content: "\f46b"; }

.fa-car:before {
  content: "\f1b9"; }

.fa-car-alt:before {
  content: "\f5de"; }

.fa-car-battery:before {
  content: "\f5df"; }

.fa-car-building:before {
  content: "\f859"; }

.fa-car-bump:before {
  content: "\f5e0"; }

.fa-car-bus:before {
  content: "\f85a"; }

.fa-car-crash:before {
  content: "\f5e1"; }

.fa-car-garage:before {
  content: "\f5e2"; }

.fa-car-mechanic:before {
  content: "\f5e3"; }

.fa-car-side:before {
  content: "\f5e4"; }

.fa-car-tilt:before {
  content: "\f5e5"; }

.fa-car-wash:before {
  content: "\f5e6"; }

.fa-caret-circle-down:before {
  content: "\f32d"; }

.fa-caret-circle-left:before {
  content: "\f32e"; }

.fa-caret-circle-right:before {
  content: "\f330"; }

.fa-caret-circle-up:before {
  content: "\f331"; }

.fa-caret-down:before {
  content: "\f0d7"; }

.fa-caret-left:before {
  content: "\f0d9"; }

.fa-caret-right:before {
  content: "\f0da"; }

.fa-caret-square-down:before {
  content: "\f150"; }

.fa-caret-square-left:before {
  content: "\f191"; }

.fa-caret-square-right:before {
  content: "\f152"; }

.fa-caret-square-up:before {
  content: "\f151"; }

.fa-caret-up:before {
  content: "\f0d8"; }

.fa-carrot:before {
  content: "\f787"; }

.fa-cars:before {
  content: "\f85b"; }

.fa-cart-arrow-down:before {
  content: "\f218"; }

.fa-cart-plus:before {
  content: "\f217"; }

.fa-cash-register:before {
  content: "\f788"; }

.fa-cat:before {
  content: "\f6be"; }

.fa-cauldron:before {
  content: "\f6bf"; }

.fa-cc-amazon-pay:before {
  content: "\f42d"; }

.fa-cc-amex:before {
  content: "\f1f3"; }

.fa-cc-apple-pay:before {
  content: "\f416"; }

.fa-cc-diners-club:before {
  content: "\f24c"; }

.fa-cc-discover:before {
  content: "\f1f2"; }

.fa-cc-jcb:before {
  content: "\f24b"; }

.fa-cc-mastercard:before {
  content: "\f1f1"; }

.fa-cc-paypal:before {
  content: "\f1f4"; }

.fa-cc-stripe:before {
  content: "\f1f5"; }

.fa-cc-visa:before {
  content: "\f1f0"; }

.fa-centercode:before {
  content: "\f380"; }

.fa-centos:before {
  content: "\f789"; }

.fa-certificate:before {
  content: "\f0a3"; }

.fa-chair:before {
  content: "\f6c0"; }

.fa-chair-office:before {
  content: "\f6c1"; }

.fa-chalkboard:before {
  content: "\f51b"; }

.fa-chalkboard-teacher:before {
  content: "\f51c"; }

.fa-charging-station:before {
  content: "\f5e7"; }

.fa-chart-area:before {
  content: "\f1fe"; }

.fa-chart-bar:before {
  content: "\f080"; }

.fa-chart-line:before {
  content: "\f201"; }

.fa-chart-line-down:before {
  content: "\f64d"; }

.fa-chart-network:before {
  content: "\f78a"; }

.fa-chart-pie:before {
  content: "\f200"; }

.fa-chart-pie-alt:before {
  content: "\f64e"; }

.fa-chart-scatter:before {
  content: "\f7ee"; }

.fa-check:before {
  content: "\f00c"; }

.fa-check-circle:before {
  content: "\f058"; }

.fa-check-double:before {
  content: "\f560"; }

.fa-check-square:before {
  content: "\f14a"; }

.fa-cheese:before {
  content: "\f7ef"; }

.fa-cheese-swiss:before {
  content: "\f7f0"; }

.fa-cheeseburger:before {
  content: "\f7f1"; }

.fa-chess:before {
  content: "\f439"; }

.fa-chess-bishop:before {
  content: "\f43a"; }

.fa-chess-bishop-alt:before {
  content: "\f43b"; }

.fa-chess-board:before {
  content: "\f43c"; }

.fa-chess-clock:before {
  content: "\f43d"; }

.fa-chess-clock-alt:before {
  content: "\f43e"; }

.fa-chess-king:before {
  content: "\f43f"; }

.fa-chess-king-alt:before {
  content: "\f440"; }

.fa-chess-knight:before {
  content: "\f441"; }

.fa-chess-knight-alt:before {
  content: "\f442"; }

.fa-chess-pawn:before {
  content: "\f443"; }

.fa-chess-pawn-alt:before {
  content: "\f444"; }

.fa-chess-queen:before {
  content: "\f445"; }

.fa-chess-queen-alt:before {
  content: "\f446"; }

.fa-chess-rook:before {
  content: "\f447"; }

.fa-chess-rook-alt:before {
  content: "\f448"; }

.fa-chevron-circle-down:before {
  content: "\f13a"; }

.fa-chevron-circle-left:before {
  content: "\f137"; }

.fa-chevron-circle-right:before {
  content: "\f138"; }

.fa-chevron-circle-up:before {
  content: "\f139"; }

.fa-chevron-double-down:before {
  content: "\f322"; }

.fa-chevron-double-left:before {
  content: "\f323"; }

.fa-chevron-double-right:before {
  content: "\f324"; }

.fa-chevron-double-up:before {
  content: "\f325"; }

.fa-chevron-down:before {
  content: "\f078"; }

.fa-chevron-left:before {
  content: "\f053"; }

.fa-chevron-right:before {
  content: "\f054"; }

.fa-chevron-square-down:before {
  content: "\f329"; }

.fa-chevron-square-left:before {
  content: "\f32a"; }

.fa-chevron-square-right:before {
  content: "\f32b"; }

.fa-chevron-square-up:before {
  content: "\f32c"; }

.fa-chevron-up:before {
  content: "\f077"; }

.fa-child:before {
  content: "\f1ae"; }

.fa-chimney:before {
  content: "\f78b"; }

.fa-chrome:before {
  content: "\f268"; }

.fa-chromecast:before {
  content: "\f838"; }

.fa-church:before {
  content: "\f51d"; }

.fa-circle:before {
  content: "\f111"; }

.fa-circle-notch:before {
  content: "\f1ce"; }

.fa-city:before {
  content: "\f64f"; }

.fa-claw-marks:before {
  content: "\f6c2"; }

.fa-clinic-medical:before {
  content: "\f7f2"; }

.fa-clipboard:before {
  content: "\f328"; }

.fa-clipboard-check:before {
  content: "\f46c"; }

.fa-clipboard-list:before {
  content: "\f46d"; }

.fa-clipboard-list-check:before {
  content: "\f737"; }

.fa-clipboard-prescription:before {
  content: "\f5e8"; }

.fa-clipboard-user:before {
  content: "\f7f3"; }

.fa-clock:before {
  content: "\f017"; }

.fa-clone:before {
  content: "\f24d"; }

.fa-closed-captioning:before {
  content: "\f20a"; }

.fa-cloud:before {
  content: "\f0c2"; }

.fa-cloud-download:before {
  content: "\f0ed"; }

.fa-cloud-download-alt:before {
  content: "\f381"; }

.fa-cloud-drizzle:before {
  content: "\f738"; }

.fa-cloud-hail:before {
  content: "\f739"; }

.fa-cloud-hail-mixed:before {
  content: "\f73a"; }

.fa-cloud-meatball:before {
  content: "\f73b"; }

.fa-cloud-moon:before {
  content: "\f6c3"; }

.fa-cloud-moon-rain:before {
  content: "\f73c"; }

.fa-cloud-rain:before {
  content: "\f73d"; }

.fa-cloud-rainbow:before {
  content: "\f73e"; }

.fa-cloud-showers:before {
  content: "\f73f"; }

.fa-cloud-showers-heavy:before {
  content: "\f740"; }

.fa-cloud-sleet:before {
  content: "\f741"; }

.fa-cloud-snow:before {
  content: "\f742"; }

.fa-cloud-sun:before {
  content: "\f6c4"; }

.fa-cloud-sun-rain:before {
  content: "\f743"; }

.fa-cloud-upload:before {
  content: "\f0ee"; }

.fa-cloud-upload-alt:before {
  content: "\f382"; }

.fa-clouds:before {
  content: "\f744"; }

.fa-clouds-moon:before {
  content: "\f745"; }

.fa-clouds-sun:before {
  content: "\f746"; }

.fa-cloudscale:before {
  content: "\f383"; }

.fa-cloudsmith:before {
  content: "\f384"; }

.fa-cloudversify:before {
  content: "\f385"; }

.fa-club:before {
  content: "\f327"; }

.fa-cocktail:before {
  content: "\f561"; }

.fa-code:before {
  content: "\f121"; }

.fa-code-branch:before {
  content: "\f126"; }

.fa-code-commit:before {
  content: "\f386"; }

.fa-code-merge:before {
  content: "\f387"; }

.fa-codepen:before {
  content: "\f1cb"; }

.fa-codiepie:before {
  content: "\f284"; }

.fa-coffee:before {
  content: "\f0f4"; }

.fa-coffee-togo:before {
  content: "\f6c5"; }

.fa-coffin:before {
  content: "\f6c6"; }

.fa-cog:before {
  content: "\f013"; }

.fa-cogs:before {
  content: "\f085"; }

.fa-coin:before {
  content: "\f85c"; }

.fa-coins:before {
  content: "\f51e"; }

.fa-columns:before {
  content: "\f0db"; }

.fa-comment:before {
  content: "\f075"; }

.fa-comment-alt:before {
  content: "\f27a"; }

.fa-comment-alt-check:before {
  content: "\f4a2"; }

.fa-comment-alt-dollar:before {
  content: "\f650"; }

.fa-comment-alt-dots:before {
  content: "\f4a3"; }

.fa-comment-alt-edit:before {
  content: "\f4a4"; }

.fa-comment-alt-exclamation:before {
  content: "\f4a5"; }

.fa-comment-alt-lines:before {
  content: "\f4a6"; }

.fa-comment-alt-medical:before {
  content: "\f7f4"; }

.fa-comment-alt-minus:before {
  content: "\f4a7"; }

.fa-comment-alt-plus:before {
  content: "\f4a8"; }

.fa-comment-alt-slash:before {
  content: "\f4a9"; }

.fa-comment-alt-smile:before {
  content: "\f4aa"; }

.fa-comment-alt-times:before {
  content: "\f4ab"; }

.fa-comment-check:before {
  content: "\f4ac"; }

.fa-comment-dollar:before {
  content: "\f651"; }

.fa-comment-dots:before {
  content: "\f4ad"; }

.fa-comment-edit:before {
  content: "\f4ae"; }

.fa-comment-exclamation:before {
  content: "\f4af"; }

.fa-comment-lines:before {
  content: "\f4b0"; }

.fa-comment-medical:before {
  content: "\f7f5"; }

.fa-comment-minus:before {
  content: "\f4b1"; }

.fa-comment-plus:before {
  content: "\f4b2"; }

.fa-comment-slash:before {
  content: "\f4b3"; }

.fa-comment-smile:before {
  content: "\f4b4"; }

.fa-comment-times:before {
  content: "\f4b5"; }

.fa-comments:before {
  content: "\f086"; }

.fa-comments-alt:before {
  content: "\f4b6"; }

.fa-comments-alt-dollar:before {
  content: "\f652"; }

.fa-comments-dollar:before {
  content: "\f653"; }

.fa-compact-disc:before {
  content: "\f51f"; }

.fa-compass:before {
  content: "\f14e"; }

.fa-compass-slash:before {
  content: "\f5e9"; }

.fa-compress:before {
  content: "\f066"; }

.fa-compress-alt:before {
  content: "\f422"; }

.fa-compress-arrows-alt:before {
  content: "\f78c"; }

.fa-compress-wide:before {
  content: "\f326"; }

.fa-concierge-bell:before {
  content: "\f562"; }

.fa-confluence:before {
  content: "\f78d"; }

.fa-connectdevelop:before {
  content: "\f20e"; }

.fa-construction:before {
  content: "\f85d"; }

.fa-container-storage:before {
  content: "\f4b7"; }

.fa-contao:before {
  content: "\f26d"; }

.fa-conveyor-belt:before {
  content: "\f46e"; }

.fa-conveyor-belt-alt:before {
  content: "\f46f"; }

.fa-cookie:before {
  content: "\f563"; }

.fa-cookie-bite:before {
  content: "\f564"; }

.fa-copy:before {
  content: "\f0c5"; }

.fa-copyright:before {
  content: "\f1f9"; }

.fa-corn:before {
  content: "\f6c7"; }

.fa-couch:before {
  content: "\f4b8"; }

.fa-cow:before {
  content: "\f6c8"; }

.fa-cpanel:before {
  content: "\f388"; }

.fa-creative-commons:before {
  content: "\f25e"; }

.fa-creative-commons-by:before {
  content: "\f4e7"; }

.fa-creative-commons-nc:before {
  content: "\f4e8"; }

.fa-creative-commons-nc-eu:before {
  content: "\f4e9"; }

.fa-creative-commons-nc-jp:before {
  content: "\f4ea"; }

.fa-creative-commons-nd:before {
  content: "\f4eb"; }

.fa-creative-commons-pd:before {
  content: "\f4ec"; }

.fa-creative-commons-pd-alt:before {
  content: "\f4ed"; }

.fa-creative-commons-remix:before {
  content: "\f4ee"; }

.fa-creative-commons-sa:before {
  content: "\f4ef"; }

.fa-creative-commons-sampling:before {
  content: "\f4f0"; }

.fa-creative-commons-sampling-plus:before {
  content: "\f4f1"; }

.fa-creative-commons-share:before {
  content: "\f4f2"; }

.fa-creative-commons-zero:before {
  content: "\f4f3"; }

.fa-credit-card:before {
  content: "\f09d"; }

.fa-credit-card-blank:before {
  content: "\f389"; }

.fa-credit-card-front:before {
  content: "\f38a"; }

.fa-cricket:before {
  content: "\f449"; }

.fa-critical-role:before {
  content: "\f6c9"; }

.fa-croissant:before {
  content: "\f7f6"; }

.fa-crop:before {
  content: "\f125"; }

.fa-crop-alt:before {
  content: "\f565"; }

.fa-cross:before {
  content: "\f654"; }

.fa-crosshairs:before {
  content: "\f05b"; }

.fa-crow:before {
  content: "\f520"; }

.fa-crown:before {
  content: "\f521"; }

.fa-crutch:before {
  content: "\f7f7"; }

.fa-crutches:before {
  content: "\f7f8"; }

.fa-css3:before {
  content: "\f13c"; }

.fa-css3-alt:before {
  content: "\f38b"; }

.fa-cube:before {
  content: "\f1b2"; }

.fa-cubes:before {
  content: "\f1b3"; }

.fa-curling:before {
  content: "\f44a"; }

.fa-cut:before {
  content: "\f0c4"; }

.fa-cuttlefish:before {
  content: "\f38c"; }

.fa-d-and-d:before {
  content: "\f38d"; }

.fa-d-and-d-beyond:before {
  content: "\f6ca"; }

.fa-dagger:before {
  content: "\f6cb"; }

.fa-dashcube:before {
  content: "\f210"; }

.fa-database:before {
  content: "\f1c0"; }

.fa-deaf:before {
  content: "\f2a4"; }

.fa-debug:before {
  content: "\f7f9"; }

.fa-deer:before {
  content: "\f78e"; }

.fa-deer-rudolph:before {
  content: "\f78f"; }

.fa-delicious:before {
  content: "\f1a5"; }

.fa-democrat:before {
  content: "\f747"; }

.fa-deploydog:before {
  content: "\f38e"; }

.fa-deskpro:before {
  content: "\f38f"; }

.fa-desktop:before {
  content: "\f108"; }

.fa-desktop-alt:before {
  content: "\f390"; }

.fa-dev:before {
  content: "\f6cc"; }

.fa-deviantart:before {
  content: "\f1bd"; }

.fa-dewpoint:before {
  content: "\f748"; }

.fa-dharmachakra:before {
  content: "\f655"; }

.fa-dhl:before {
  content: "\f790"; }

.fa-diagnoses:before {
  content: "\f470"; }

.fa-diamond:before {
  content: "\f219"; }

.fa-diaspora:before {
  content: "\f791"; }

.fa-dice:before {
  content: "\f522"; }

.fa-dice-d10:before {
  content: "\f6cd"; }

.fa-dice-d12:before {
  content: "\f6ce"; }

.fa-dice-d20:before {
  content: "\f6cf"; }

.fa-dice-d4:before {
  content: "\f6d0"; }

.fa-dice-d6:before {
  content: "\f6d1"; }

.fa-dice-d8:before {
  content: "\f6d2"; }

.fa-dice-five:before {
  content: "\f523"; }

.fa-dice-four:before {
  content: "\f524"; }

.fa-dice-one:before {
  content: "\f525"; }

.fa-dice-six:before {
  content: "\f526"; }

.fa-dice-three:before {
  content: "\f527"; }

.fa-dice-two:before {
  content: "\f528"; }

.fa-digg:before {
  content: "\f1a6"; }

.fa-digging:before {
  content: "\f85e"; }

.fa-digital-ocean:before {
  content: "\f391"; }

.fa-digital-tachograph:before {
  content: "\f566"; }

.fa-diploma:before {
  content: "\f5ea"; }

.fa-directions:before {
  content: "\f5eb"; }

.fa-discord:before {
  content: "\f392"; }

.fa-discourse:before {
  content: "\f393"; }

.fa-disease:before {
  content: "\f7fa"; }

.fa-divide:before {
  content: "\f529"; }

.fa-dizzy:before {
  content: "\f567"; }

.fa-dna:before {
  content: "\f471"; }

.fa-do-not-enter:before {
  content: "\f5ec"; }

.fa-dochub:before {
  content: "\f394"; }

.fa-docker:before {
  content: "\f395"; }

.fa-dog:before {
  content: "\f6d3"; }

.fa-dog-leashed:before {
  content: "\f6d4"; }

.fa-dollar-sign:before {
  content: "\f155"; }

.fa-dolly:before {
  content: "\f472"; }

.fa-dolly-empty:before {
  content: "\f473"; }

.fa-dolly-flatbed:before {
  content: "\f474"; }

.fa-dolly-flatbed-alt:before {
  content: "\f475"; }

.fa-dolly-flatbed-empty:before {
  content: "\f476"; }

.fa-donate:before {
  content: "\f4b9"; }

.fa-door-closed:before {
  content: "\f52a"; }

.fa-door-open:before {
  content: "\f52b"; }

.fa-dot-circle:before {
  content: "\f192"; }

.fa-dove:before {
  content: "\f4ba"; }

.fa-download:before {
  content: "\f019"; }

.fa-draft2digital:before {
  content: "\f396"; }

.fa-drafting-compass:before {
  content: "\f568"; }

.fa-dragon:before {
  content: "\f6d5"; }

.fa-draw-circle:before {
  content: "\f5ed"; }

.fa-draw-polygon:before {
  content: "\f5ee"; }

.fa-draw-square:before {
  content: "\f5ef"; }

.fa-dreidel:before {
  content: "\f792"; }

.fa-dribbble:before {
  content: "\f17d"; }

.fa-dribbble-square:before {
  content: "\f397"; }

.fa-drone:before {
  content: "\f85f"; }

.fa-drone-alt:before {
  content: "\f860"; }

.fa-dropbox:before {
  content: "\f16b"; }

.fa-drum:before {
  content: "\f569"; }

.fa-drum-steelpan:before {
  content: "\f56a"; }

.fa-drumstick:before {
  content: "\f6d6"; }

.fa-drumstick-bite:before {
  content: "\f6d7"; }

.fa-drupal:before {
  content: "\f1a9"; }

.fa-dryer:before {
  content: "\f861"; }

.fa-dryer-alt:before {
  content: "\f862"; }

.fa-duck:before {
  content: "\f6d8"; }

.fa-dumbbell:before {
  content: "\f44b"; }

.fa-dumpster:before {
  content: "\f793"; }

.fa-dumpster-fire:before {
  content: "\f794"; }

.fa-dungeon:before {
  content: "\f6d9"; }

.fa-dyalog:before {
  content: "\f399"; }

.fa-ear:before {
  content: "\f5f0"; }

.fa-ear-muffs:before {
  content: "\f795"; }

.fa-earlybirds:before {
  content: "\f39a"; }

.fa-ebay:before {
  content: "\f4f4"; }

.fa-eclipse:before {
  content: "\f749"; }

.fa-eclipse-alt:before {
  content: "\f74a"; }

.fa-edge:before {
  content: "\f282"; }

.fa-edit:before {
  content: "\f044"; }

.fa-egg:before {
  content: "\f7fb"; }

.fa-egg-fried:before {
  content: "\f7fc"; }

.fa-eject:before {
  content: "\f052"; }

.fa-elementor:before {
  content: "\f430"; }

.fa-elephant:before {
  content: "\f6da"; }

.fa-ellipsis-h:before {
  content: "\f141"; }

.fa-ellipsis-h-alt:before {
  content: "\f39b"; }

.fa-ellipsis-v:before {
  content: "\f142"; }

.fa-ellipsis-v-alt:before {
  content: "\f39c"; }

.fa-ello:before {
  content: "\f5f1"; }

.fa-ember:before {
  content: "\f423"; }

.fa-empire:before {
  content: "\f1d1"; }

.fa-empty-set:before {
  content: "\f656"; }

.fa-engine-warning:before {
  content: "\f5f2"; }

.fa-envelope:before {
  content: "\f0e0"; }

.fa-envelope-open:before {
  content: "\f2b6"; }

.fa-envelope-open-dollar:before {
  content: "\f657"; }

.fa-envelope-open-text:before {
  content: "\f658"; }

.fa-envelope-square:before {
  content: "\f199"; }

.fa-envira:before {
  content: "\f299"; }

.fa-equals:before {
  content: "\f52c"; }

.fa-eraser:before {
  content: "\f12d"; }

.fa-erlang:before {
  content: "\f39d"; }

.fa-ethereum:before {
  content: "\f42e"; }

.fa-ethernet:before {
  content: "\f796"; }

.fa-etsy:before {
  content: "\f2d7"; }

.fa-euro-sign:before {
  content: "\f153"; }

.fa-evernote:before {
  content: "\f839"; }

.fa-exchange:before {
  content: "\f0ec"; }

.fa-exchange-alt:before {
  content: "\f362"; }

.fa-exclamation:before {
  content: "\f12a"; }

.fa-exclamation-circle:before {
  content: "\f06a"; }

.fa-exclamation-square:before {
  content: "\f321"; }

.fa-exclamation-triangle:before {
  content: "\f071"; }

.fa-expand:before {
  content: "\f065"; }

.fa-expand-alt:before {
  content: "\f424"; }

.fa-expand-arrows:before {
  content: "\f31d"; }

.fa-expand-arrows-alt:before {
  content: "\f31e"; }

.fa-expand-wide:before {
  content: "\f320"; }

.fa-expeditedssl:before {
  content: "\f23e"; }

.fa-external-link:before {
  content: "\f08e"; }

.fa-external-link-alt:before {
  content: "\f35d"; }

.fa-external-link-square:before {
  content: "\f14c"; }

.fa-external-link-square-alt:before {
  content: "\f360"; }

.fa-eye:before {
  content: "\f06e"; }

.fa-eye-dropper:before {
  content: "\f1fb"; }

.fa-eye-evil:before {
  content: "\f6db"; }

.fa-eye-slash:before {
  content: "\f070"; }

.fa-facebook:before {
  content: "\f09a"; }

.fa-facebook-f:before {
  content: "\f39e"; }

.fa-facebook-messenger:before {
  content: "\f39f"; }

.fa-facebook-square:before {
  content: "\f082"; }

.fa-fan:before {
  content: "\f863"; }

.fa-fantasy-flight-games:before {
  content: "\f6dc"; }

.fa-farm:before {
  content: "\f864"; }

.fa-fast-backward:before {
  content: "\f049"; }

.fa-fast-forward:before {
  content: "\f050"; }

.fa-fax:before {
  content: "\f1ac"; }

.fa-feather:before {
  content: "\f52d"; }

.fa-feather-alt:before {
  content: "\f56b"; }

.fa-fedex:before {
  content: "\f797"; }

.fa-fedora:before {
  content: "\f798"; }

.fa-female:before {
  content: "\f182"; }

.fa-field-hockey:before {
  content: "\f44c"; }

.fa-fighter-jet:before {
  content: "\f0fb"; }

.fa-figma:before {
  content: "\f799"; }

.fa-file:before {
  content: "\f15b"; }

.fa-file-alt:before {
  content: "\f15c"; }

.fa-file-archive:before {
  content: "\f1c6"; }

.fa-file-audio:before {
  content: "\f1c7"; }

.fa-file-certificate:before {
  content: "\f5f3"; }

.fa-file-chart-line:before {
  content: "\f659"; }

.fa-file-chart-pie:before {
  content: "\f65a"; }

.fa-file-check:before {
  content: "\f316"; }

.fa-file-code:before {
  content: "\f1c9"; }

.fa-file-contract:before {
  content: "\f56c"; }

.fa-file-csv:before {
  content: "\f6dd"; }

.fa-file-download:before {
  content: "\f56d"; }

.fa-file-edit:before {
  content: "\f31c"; }

.fa-file-excel:before {
  content: "\f1c3"; }

.fa-file-exclamation:before {
  content: "\f31a"; }

.fa-file-export:before {
  content: "\f56e"; }

.fa-file-image:before {
  content: "\f1c5"; }

.fa-file-import:before {
  content: "\f56f"; }

.fa-file-invoice:before {
  content: "\f570"; }

.fa-file-invoice-dollar:before {
  content: "\f571"; }

.fa-file-medical:before {
  content: "\f477"; }

.fa-file-medical-alt:before {
  content: "\f478"; }

.fa-file-minus:before {
  content: "\f318"; }

.fa-file-pdf:before {
  content: "\f1c1"; }

.fa-file-plus:before {
  content: "\f319"; }

.fa-file-powerpoint:before {
  content: "\f1c4"; }

.fa-file-prescription:before {
  content: "\f572"; }

.fa-file-search:before {
  content: "\f865"; }

.fa-file-signature:before {
  content: "\f573"; }

.fa-file-spreadsheet:before {
  content: "\f65b"; }

.fa-file-times:before {
  content: "\f317"; }

.fa-file-upload:before {
  content: "\f574"; }

.fa-file-user:before {
  content: "\f65c"; }

.fa-file-video:before {
  content: "\f1c8"; }

.fa-file-word:before {
  content: "\f1c2"; }

.fa-files-medical:before {
  content: "\f7fd"; }

.fa-fill:before {
  content: "\f575"; }

.fa-fill-drip:before {
  content: "\f576"; }

.fa-film:before {
  content: "\f008"; }

.fa-film-alt:before {
  content: "\f3a0"; }

.fa-filter:before {
  content: "\f0b0"; }

.fa-fingerprint:before {
  content: "\f577"; }

.fa-fire:before {
  content: "\f06d"; }

.fa-fire-alt:before {
  content: "\f7e4"; }

.fa-fire-extinguisher:before {
  content: "\f134"; }

.fa-fire-smoke:before {
  content: "\f74b"; }

.fa-firefox:before {
  content: "\f269"; }

.fa-fireplace:before {
  content: "\f79a"; }

.fa-first-aid:before {
  content: "\f479"; }

.fa-first-order:before {
  content: "\f2b0"; }

.fa-first-order-alt:before {
  content: "\f50a"; }

.fa-firstdraft:before {
  content: "\f3a1"; }

.fa-fish:before {
  content: "\f578"; }

.fa-fish-cooked:before {
  content: "\f7fe"; }

.fa-fist-raised:before {
  content: "\f6de"; }

.fa-flag:before {
  content: "\f024"; }

.fa-flag-alt:before {
  content: "\f74c"; }

.fa-flag-checkered:before {
  content: "\f11e"; }

.fa-flag-usa:before {
  content: "\f74d"; }

.fa-flame:before {
  content: "\f6df"; }

.fa-flask:before {
  content: "\f0c3"; }

.fa-flask-poison:before {
  content: "\f6e0"; }

.fa-flask-potion:before {
  content: "\f6e1"; }

.fa-flickr:before {
  content: "\f16e"; }

.fa-flipboard:before {
  content: "\f44d"; }

.fa-flower:before {
  content: "\f7ff"; }

.fa-flower-daffodil:before {
  content: "\f800"; }

.fa-flower-tulip:before {
  content: "\f801"; }

.fa-flushed:before {
  content: "\f579"; }

.fa-fly:before {
  content: "\f417"; }

.fa-fog:before {
  content: "\f74e"; }

.fa-folder:before {
  content: "\f07b"; }

.fa-folder-minus:before {
  content: "\f65d"; }

.fa-folder-open:before {
  content: "\f07c"; }

.fa-folder-plus:before {
  content: "\f65e"; }

.fa-folder-times:before {
  content: "\f65f"; }

.fa-folder-tree:before {
  content: "\f802"; }

.fa-folders:before {
  content: "\f660"; }

.fa-font:before {
  content: "\f031"; }

.fa-font-awesome:before {
  content: "\f2b4"; }

.fa-font-awesome-alt:before {
  content: "\f35c"; }

.fa-font-awesome-flag:before {
  content: "\f425"; }

.fa-font-awesome-logo-full:before {
  content: "\f4e6"; }

.fa-font-case:before {
  content: "\f866"; }

.fa-fonticons:before {
  content: "\f280"; }

.fa-fonticons-fi:before {
  content: "\f3a2"; }

.fa-football-ball:before {
  content: "\f44e"; }

.fa-football-helmet:before {
  content: "\f44f"; }

.fa-forklift:before {
  content: "\f47a"; }

.fa-fort-awesome:before {
  content: "\f286"; }

.fa-fort-awesome-alt:before {
  content: "\f3a3"; }

.fa-forumbee:before {
  content: "\f211"; }

.fa-forward:before {
  content: "\f04e"; }

.fa-foursquare:before {
  content: "\f180"; }

.fa-fragile:before {
  content: "\f4bb"; }

.fa-free-code-camp:before {
  content: "\f2c5"; }

.fa-freebsd:before {
  content: "\f3a4"; }

.fa-french-fries:before {
  content: "\f803"; }

.fa-frog:before {
  content: "\f52e"; }

.fa-frosty-head:before {
  content: "\f79b"; }

.fa-frown:before {
  content: "\f119"; }

.fa-frown-open:before {
  content: "\f57a"; }

.fa-fulcrum:before {
  content: "\f50b"; }

.fa-function:before {
  content: "\f661"; }

.fa-funnel-dollar:before {
  content: "\f662"; }

.fa-futbol:before {
  content: "\f1e3"; }

.fa-galactic-republic:before {
  content: "\f50c"; }

.fa-galactic-senate:before {
  content: "\f50d"; }

.fa-game-board:before {
  content: "\f867"; }

.fa-game-board-alt:before {
  content: "\f868"; }

.fa-gamepad:before {
  content: "\f11b"; }

.fa-gas-pump:before {
  content: "\f52f"; }

.fa-gas-pump-slash:before {
  content: "\f5f4"; }

.fa-gavel:before {
  content: "\f0e3"; }

.fa-gem:before {
  content: "\f3a5"; }

.fa-genderless:before {
  content: "\f22d"; }

.fa-get-pocket:before {
  content: "\f265"; }

.fa-gg:before {
  content: "\f260"; }

.fa-gg-circle:before {
  content: "\f261"; }

.fa-ghost:before {
  content: "\f6e2"; }

.fa-gift:before {
  content: "\f06b"; }

.fa-gift-card:before {
  content: "\f663"; }

.fa-gifts:before {
  content: "\f79c"; }

.fa-gingerbread-man:before {
  content: "\f79d"; }

.fa-git:before {
  content: "\f1d3"; }

.fa-git-alt:before {
  content: "\f841"; }

.fa-git-square:before {
  content: "\f1d2"; }

.fa-github:before {
  content: "\f09b"; }

.fa-github-alt:before {
  content: "\f113"; }

.fa-github-square:before {
  content: "\f092"; }

.fa-gitkraken:before {
  content: "\f3a6"; }

.fa-gitlab:before {
  content: "\f296"; }

.fa-gitter:before {
  content: "\f426"; }

.fa-glass:before {
  content: "\f804"; }

.fa-glass-champagne:before {
  content: "\f79e"; }

.fa-glass-cheers:before {
  content: "\f79f"; }

.fa-glass-citrus:before {
  content: "\f869"; }

.fa-glass-martini:before {
  content: "\f000"; }

.fa-glass-martini-alt:before {
  content: "\f57b"; }

.fa-glass-whiskey:before {
  content: "\f7a0"; }

.fa-glass-whiskey-rocks:before {
  content: "\f7a1"; }

.fa-glasses:before {
  content: "\f530"; }

.fa-glasses-alt:before {
  content: "\f5f5"; }

.fa-glide:before {
  content: "\f2a5"; }

.fa-glide-g:before {
  content: "\f2a6"; }

.fa-globe:before {
  content: "\f0ac"; }

.fa-globe-africa:before {
  content: "\f57c"; }

.fa-globe-americas:before {
  content: "\f57d"; }

.fa-globe-asia:before {
  content: "\f57e"; }

.fa-globe-europe:before {
  content: "\f7a2"; }

.fa-globe-snow:before {
  content: "\f7a3"; }

.fa-globe-stand:before {
  content: "\f5f6"; }

.fa-gofore:before {
  content: "\f3a7"; }

.fa-golf-ball:before {
  content: "\f450"; }

.fa-golf-club:before {
  content: "\f451"; }

.fa-goodreads:before {
  content: "\f3a8"; }

.fa-goodreads-g:before {
  content: "\f3a9"; }

.fa-google:before {
  content: "\f1a0"; }

.fa-google-drive:before {
  content: "\f3aa"; }

.fa-google-play:before {
  content: "\f3ab"; }

.fa-google-plus:before {
  content: "\f2b3"; }

.fa-google-plus-g:before {
  content: "\f0d5"; }

.fa-google-plus-square:before {
  content: "\f0d4"; }

.fa-google-wallet:before {
  content: "\f1ee"; }

.fa-gopuram:before {
  content: "\f664"; }

.fa-graduation-cap:before {
  content: "\f19d"; }

.fa-gratipay:before {
  content: "\f184"; }

.fa-grav:before {
  content: "\f2d6"; }

.fa-greater-than:before {
  content: "\f531"; }

.fa-greater-than-equal:before {
  content: "\f532"; }

.fa-grimace:before {
  content: "\f57f"; }

.fa-grin:before {
  content: "\f580"; }

.fa-grin-alt:before {
  content: "\f581"; }

.fa-grin-beam:before {
  content: "\f582"; }

.fa-grin-beam-sweat:before {
  content: "\f583"; }

.fa-grin-hearts:before {
  content: "\f584"; }

.fa-grin-squint:before {
  content: "\f585"; }

.fa-grin-squint-tears:before {
  content: "\f586"; }

.fa-grin-stars:before {
  content: "\f587"; }

.fa-grin-tears:before {
  content: "\f588"; }

.fa-grin-tongue:before {
  content: "\f589"; }

.fa-grin-tongue-squint:before {
  content: "\f58a"; }

.fa-grin-tongue-wink:before {
  content: "\f58b"; }

.fa-grin-wink:before {
  content: "\f58c"; }

.fa-grip-horizontal:before {
  content: "\f58d"; }

.fa-grip-lines:before {
  content: "\f7a4"; }

.fa-grip-lines-vertical:before {
  content: "\f7a5"; }

.fa-grip-vertical:before {
  content: "\f58e"; }

.fa-gripfire:before {
  content: "\f3ac"; }

.fa-grunt:before {
  content: "\f3ad"; }

.fa-guitar:before {
  content: "\f7a6"; }

.fa-gulp:before {
  content: "\f3ae"; }

.fa-h-square:before {
  content: "\f0fd"; }

.fa-h1:before {
  content: "\f313"; }

.fa-h2:before {
  content: "\f314"; }

.fa-h3:before {
  content: "\f315"; }

.fa-h4:before {
  content: "\f86a"; }

.fa-hacker-news:before {
  content: "\f1d4"; }

.fa-hacker-news-square:before {
  content: "\f3af"; }

.fa-hackerrank:before {
  content: "\f5f7"; }

.fa-hamburger:before {
  content: "\f805"; }

.fa-hammer:before {
  content: "\f6e3"; }

.fa-hammer-war:before {
  content: "\f6e4"; }

.fa-hamsa:before {
  content: "\f665"; }

.fa-hand-heart:before {
  content: "\f4bc"; }

.fa-hand-holding:before {
  content: "\f4bd"; }

.fa-hand-holding-box:before {
  content: "\f47b"; }

.fa-hand-holding-heart:before {
  content: "\f4be"; }

.fa-hand-holding-magic:before {
  content: "\f6e5"; }

.fa-hand-holding-seedling:before {
  content: "\f4bf"; }

.fa-hand-holding-usd:before {
  content: "\f4c0"; }

.fa-hand-holding-water:before {
  content: "\f4c1"; }

.fa-hand-lizard:before {
  content: "\f258"; }

.fa-hand-middle-finger:before {
  content: "\f806"; }

.fa-hand-paper:before {
  content: "\f256"; }

.fa-hand-peace:before {
  content: "\f25b"; }

.fa-hand-point-down:before {
  content: "\f0a7"; }

.fa-hand-point-left:before {
  content: "\f0a5"; }

.fa-hand-point-right:before {
  content: "\f0a4"; }

.fa-hand-point-up:before {
  content: "\f0a6"; }

.fa-hand-pointer:before {
  content: "\f25a"; }

.fa-hand-receiving:before {
  content: "\f47c"; }

.fa-hand-rock:before {
  content: "\f255"; }

.fa-hand-scissors:before {
  content: "\f257"; }

.fa-hand-spock:before {
  content: "\f259"; }

.fa-hands:before {
  content: "\f4c2"; }

.fa-hands-heart:before {
  content: "\f4c3"; }

.fa-hands-helping:before {
  content: "\f4c4"; }

.fa-hands-usd:before {
  content: "\f4c5"; }

.fa-handshake:before {
  content: "\f2b5"; }

.fa-handshake-alt:before {
  content: "\f4c6"; }

.fa-hanukiah:before {
  content: "\f6e6"; }

.fa-hard-hat:before {
  content: "\f807"; }

.fa-hashtag:before {
  content: "\f292"; }

.fa-hat-chef:before {
  content: "\f86b"; }

.fa-hat-santa:before {
  content: "\f7a7"; }

.fa-hat-winter:before {
  content: "\f7a8"; }

.fa-hat-witch:before {
  content: "\f6e7"; }

.fa-hat-wizard:before {
  content: "\f6e8"; }

.fa-haykal:before {
  content: "\f666"; }

.fa-hdd:before {
  content: "\f0a0"; }

.fa-head-side:before {
  content: "\f6e9"; }

.fa-head-side-brain:before {
  content: "\f808"; }

.fa-head-side-medical:before {
  content: "\f809"; }

.fa-head-vr:before {
  content: "\f6ea"; }

.fa-heading:before {
  content: "\f1dc"; }

.fa-headphones:before {
  content: "\f025"; }

.fa-headphones-alt:before {
  content: "\f58f"; }

.fa-headset:before {
  content: "\f590"; }

.fa-heart:before {
  content: "\f004"; }

.fa-heart-broken:before {
  content: "\f7a9"; }

.fa-heart-circle:before {
  content: "\f4c7"; }

.fa-heart-rate:before {
  content: "\f5f8"; }

.fa-heart-square:before {
  content: "\f4c8"; }

.fa-heartbeat:before {
  content: "\f21e"; }

.fa-helicopter:before {
  content: "\f533"; }

.fa-helmet-battle:before {
  content: "\f6eb"; }

.fa-hexagon:before {
  content: "\f312"; }

.fa-highlighter:before {
  content: "\f591"; }

.fa-hiking:before {
  content: "\f6ec"; }

.fa-hippo:before {
  content: "\f6ed"; }

.fa-hips:before {
  content: "\f452"; }

.fa-hire-a-helper:before {
  content: "\f3b0"; }

.fa-history:before {
  content: "\f1da"; }

.fa-hockey-mask:before {
  content: "\f6ee"; }

.fa-hockey-puck:before {
  content: "\f453"; }

.fa-hockey-sticks:before {
  content: "\f454"; }

.fa-holly-berry:before {
  content: "\f7aa"; }

.fa-home:before {
  content: "\f015"; }

.fa-home-alt:before {
  content: "\f80a"; }

.fa-home-heart:before {
  content: "\f4c9"; }

.fa-home-lg:before {
  content: "\f80b"; }

.fa-home-lg-alt:before {
  content: "\f80c"; }

.fa-hood-cloak:before {
  content: "\f6ef"; }

.fa-hooli:before {
  content: "\f427"; }

.fa-horizontal-rule:before {
  content: "\f86c"; }

.fa-hornbill:before {
  content: "\f592"; }

.fa-horse:before {
  content: "\f6f0"; }

.fa-horse-head:before {
  content: "\f7ab"; }

.fa-hospital:before {
  content: "\f0f8"; }

.fa-hospital-alt:before {
  content: "\f47d"; }

.fa-hospital-symbol:before {
  content: "\f47e"; }

.fa-hospital-user:before {
  content: "\f80d"; }

.fa-hospitals:before {
  content: "\f80e"; }

.fa-hot-tub:before {
  content: "\f593"; }

.fa-hotdog:before {
  content: "\f80f"; }

.fa-hotel:before {
  content: "\f594"; }

.fa-hotjar:before {
  content: "\f3b1"; }

.fa-hourglass:before {
  content: "\f254"; }

.fa-hourglass-end:before {
  content: "\f253"; }

.fa-hourglass-half:before {
  content: "\f252"; }

.fa-hourglass-start:before {
  content: "\f251"; }

.fa-house-damage:before {
  content: "\f6f1"; }

.fa-house-flood:before {
  content: "\f74f"; }

.fa-houzz:before {
  content: "\f27c"; }

.fa-hryvnia:before {
  content: "\f6f2"; }

.fa-html5:before {
  content: "\f13b"; }

.fa-hubspot:before {
  content: "\f3b2"; }

.fa-humidity:before {
  content: "\f750"; }

.fa-hurricane:before {
  content: "\f751"; }

.fa-i-cursor:before {
  content: "\f246"; }

.fa-ice-cream:before {
  content: "\f810"; }

.fa-ice-skate:before {
  content: "\f7ac"; }

.fa-icicles:before {
  content: "\f7ad"; }

.fa-icons:before {
  content: "\f86d"; }

.fa-icons-alt:before {
  content: "\f86e"; }

.fa-id-badge:before {
  content: "\f2c1"; }

.fa-id-card:before {
  content: "\f2c2"; }

.fa-id-card-alt:before {
  content: "\f47f"; }

.fa-igloo:before {
  content: "\f7ae"; }

.fa-image:before {
  content: "\f03e"; }

.fa-images:before {
  content: "\f302"; }

.fa-imdb:before {
  content: "\f2d8"; }

.fa-inbox:before {
  content: "\f01c"; }

.fa-inbox-in:before {
  content: "\f310"; }

.fa-inbox-out:before {
  content: "\f311"; }

.fa-indent:before {
  content: "\f03c"; }

.fa-industry:before {
  content: "\f275"; }

.fa-industry-alt:before {
  content: "\f3b3"; }

.fa-infinity:before {
  content: "\f534"; }

.fa-info:before {
  content: "\f129"; }

.fa-info-circle:before {
  content: "\f05a"; }

.fa-info-square:before {
  content: "\f30f"; }

.fa-inhaler:before {
  content: "\f5f9"; }

.fa-instagram:before {
  content: "\f16d"; }

.fa-integral:before {
  content: "\f667"; }

.fa-intercom:before {
  content: "\f7af"; }

.fa-internet-explorer:before {
  content: "\f26b"; }

.fa-intersection:before {
  content: "\f668"; }

.fa-inventory:before {
  content: "\f480"; }

.fa-invision:before {
  content: "\f7b0"; }

.fa-ioxhost:before {
  content: "\f208"; }

.fa-island-tropical:before {
  content: "\f811"; }

.fa-italic:before {
  content: "\f033"; }

.fa-itch-io:before {
  content: "\f83a"; }

.fa-itunes:before {
  content: "\f3b4"; }

.fa-itunes-note:before {
  content: "\f3b5"; }

.fa-jack-o-lantern:before {
  content: "\f30e"; }

.fa-java:before {
  content: "\f4e4"; }

.fa-jedi:before {
  content: "\f669"; }

.fa-jedi-order:before {
  content: "\f50e"; }

.fa-jenkins:before {
  content: "\f3b6"; }

.fa-jira:before {
  content: "\f7b1"; }

.fa-joget:before {
  content: "\f3b7"; }

.fa-joint:before {
  content: "\f595"; }

.fa-joomla:before {
  content: "\f1aa"; }

.fa-journal-whills:before {
  content: "\f66a"; }

.fa-js:before {
  content: "\f3b8"; }

.fa-js-square:before {
  content: "\f3b9"; }

.fa-jsfiddle:before {
  content: "\f1cc"; }

.fa-kaaba:before {
  content: "\f66b"; }

.fa-kaggle:before {
  content: "\f5fa"; }

.fa-kerning:before {
  content: "\f86f"; }

.fa-key:before {
  content: "\f084"; }

.fa-key-skeleton:before {
  content: "\f6f3"; }

.fa-keybase:before {
  content: "\f4f5"; }

.fa-keyboard:before {
  content: "\f11c"; }

.fa-keycdn:before {
  content: "\f3ba"; }

.fa-keynote:before {
  content: "\f66c"; }

.fa-khanda:before {
  content: "\f66d"; }

.fa-kickstarter:before {
  content: "\f3bb"; }

.fa-kickstarter-k:before {
  content: "\f3bc"; }

.fa-kidneys:before {
  content: "\f5fb"; }

.fa-kiss:before {
  content: "\f596"; }

.fa-kiss-beam:before {
  content: "\f597"; }

.fa-kiss-wink-heart:before {
  content: "\f598"; }

.fa-kite:before {
  content: "\f6f4"; }

.fa-kiwi-bird:before {
  content: "\f535"; }

.fa-knife-kitchen:before {
  content: "\f6f5"; }

.fa-korvue:before {
  content: "\f42f"; }

.fa-lambda:before {
  content: "\f66e"; }

.fa-lamp:before {
  content: "\f4ca"; }

.fa-landmark:before {
  content: "\f66f"; }

.fa-landmark-alt:before {
  content: "\f752"; }

.fa-language:before {
  content: "\f1ab"; }

.fa-laptop:before {
  content: "\f109"; }

.fa-laptop-code:before {
  content: "\f5fc"; }

.fa-laptop-medical:before {
  content: "\f812"; }

.fa-laravel:before {
  content: "\f3bd"; }

.fa-lastfm:before {
  content: "\f202"; }

.fa-lastfm-square:before {
  content: "\f203"; }

.fa-laugh:before {
  content: "\f599"; }

.fa-laugh-beam:before {
  content: "\f59a"; }

.fa-laugh-squint:before {
  content: "\f59b"; }

.fa-laugh-wink:before {
  content: "\f59c"; }

.fa-layer-group:before {
  content: "\f5fd"; }

.fa-layer-minus:before {
  content: "\f5fe"; }

.fa-layer-plus:before {
  content: "\f5ff"; }

.fa-leaf:before {
  content: "\f06c"; }

.fa-leaf-heart:before {
  content: "\f4cb"; }

.fa-leaf-maple:before {
  content: "\f6f6"; }

.fa-leaf-oak:before {
  content: "\f6f7"; }

.fa-leanpub:before {
  content: "\f212"; }

.fa-lemon:before {
  content: "\f094"; }

.fa-less:before {
  content: "\f41d"; }

.fa-less-than:before {
  content: "\f536"; }

.fa-less-than-equal:before {
  content: "\f537"; }

.fa-level-down:before {
  content: "\f149"; }

.fa-level-down-alt:before {
  content: "\f3be"; }

.fa-level-up:before {
  content: "\f148"; }

.fa-level-up-alt:before {
  content: "\f3bf"; }

.fa-life-ring:before {
  content: "\f1cd"; }

.fa-lightbulb:before {
  content: "\f0eb"; }

.fa-lightbulb-dollar:before {
  content: "\f670"; }

.fa-lightbulb-exclamation:before {
  content: "\f671"; }

.fa-lightbulb-on:before {
  content: "\f672"; }

.fa-lightbulb-slash:before {
  content: "\f673"; }

.fa-lights-holiday:before {
  content: "\f7b2"; }

.fa-line:before {
  content: "\f3c0"; }

.fa-line-columns:before {
  content: "\f870"; }

.fa-line-height:before {
  content: "\f871"; }

.fa-link:before {
  content: "\f0c1"; }

.fa-linkedin:before {
  content: "\f08c"; }

.fa-linkedin-in:before {
  content: "\f0e1"; }

.fa-linode:before {
  content: "\f2b8"; }

.fa-linux:before {
  content: "\f17c"; }

.fa-lips:before {
  content: "\f600"; }

.fa-lira-sign:before {
  content: "\f195"; }

.fa-list:before {
  content: "\f03a"; }

.fa-list-alt:before {
  content: "\f022"; }

.fa-list-ol:before {
  content: "\f0cb"; }

.fa-list-ul:before {
  content: "\f0ca"; }

.fa-location:before {
  content: "\f601"; }

.fa-location-arrow:before {
  content: "\f124"; }

.fa-location-circle:before {
  content: "\f602"; }

.fa-location-slash:before {
  content: "\f603"; }

.fa-lock:before {
  content: "\f023"; }

.fa-lock-alt:before {
  content: "\f30d"; }

.fa-lock-open:before {
  content: "\f3c1"; }

.fa-lock-open-alt:before {
  content: "\f3c2"; }

.fa-long-arrow-alt-down:before {
  content: "\f309"; }

.fa-long-arrow-alt-left:before {
  content: "\f30a"; }

.fa-long-arrow-alt-right:before {
  content: "\f30b"; }

.fa-long-arrow-alt-up:before {
  content: "\f30c"; }

.fa-long-arrow-down:before {
  content: "\f175"; }

.fa-long-arrow-left:before {
  content: "\f177"; }

.fa-long-arrow-right:before {
  content: "\f178"; }

.fa-long-arrow-up:before {
  content: "\f176"; }

.fa-loveseat:before {
  content: "\f4cc"; }

.fa-low-vision:before {
  content: "\f2a8"; }

.fa-luchador:before {
  content: "\f455"; }

.fa-luggage-cart:before {
  content: "\f59d"; }

.fa-lungs:before {
  content: "\f604"; }

.fa-lyft:before {
  content: "\f3c3"; }

.fa-mace:before {
  content: "\f6f8"; }

.fa-magento:before {
  content: "\f3c4"; }

.fa-magic:before {
  content: "\f0d0"; }

.fa-magnet:before {
  content: "\f076"; }

.fa-mail-bulk:before {
  content: "\f674"; }

.fa-mailbox:before {
  content: "\f813"; }

.fa-mailchimp:before {
  content: "\f59e"; }

.fa-male:before {
  content: "\f183"; }

.fa-mandalorian:before {
  content: "\f50f"; }

.fa-mandolin:before {
  content: "\f6f9"; }

.fa-map:before {
  content: "\f279"; }

.fa-map-marked:before {
  content: "\f59f"; }

.fa-map-marked-alt:before {
  content: "\f5a0"; }

.fa-map-marker:before {
  content: "\f041"; }

.fa-map-marker-alt:before {
  content: "\f3c5"; }

.fa-map-marker-alt-slash:before {
  content: "\f605"; }

.fa-map-marker-check:before {
  content: "\f606"; }

.fa-map-marker-edit:before {
  content: "\f607"; }

.fa-map-marker-exclamation:before {
  content: "\f608"; }

.fa-map-marker-minus:before {
  content: "\f609"; }

.fa-map-marker-plus:before {
  content: "\f60a"; }

.fa-map-marker-question:before {
  content: "\f60b"; }

.fa-map-marker-slash:before {
  content: "\f60c"; }

.fa-map-marker-smile:before {
  content: "\f60d"; }

.fa-map-marker-times:before {
  content: "\f60e"; }

.fa-map-pin:before {
  content: "\f276"; }

.fa-map-signs:before {
  content: "\f277"; }

.fa-markdown:before {
  content: "\f60f"; }

.fa-marker:before {
  content: "\f5a1"; }

.fa-mars:before {
  content: "\f222"; }

.fa-mars-double:before {
  content: "\f227"; }

.fa-mars-stroke:before {
  content: "\f229"; }

.fa-mars-stroke-h:before {
  content: "\f22b"; }

.fa-mars-stroke-v:before {
  content: "\f22a"; }

.fa-mask:before {
  content: "\f6fa"; }

.fa-mastodon:before {
  content: "\f4f6"; }

.fa-maxcdn:before {
  content: "\f136"; }

.fa-meat:before {
  content: "\f814"; }

.fa-medal:before {
  content: "\f5a2"; }

.fa-medapps:before {
  content: "\f3c6"; }

.fa-medium:before {
  content: "\f23a"; }

.fa-medium-m:before {
  content: "\f3c7"; }

.fa-medkit:before {
  content: "\f0fa"; }

.fa-medrt:before {
  content: "\f3c8"; }

.fa-meetup:before {
  content: "\f2e0"; }

.fa-megaphone:before {
  content: "\f675"; }

.fa-megaport:before {
  content: "\f5a3"; }

.fa-meh:before {
  content: "\f11a"; }

.fa-meh-blank:before {
  content: "\f5a4"; }

.fa-meh-rolling-eyes:before {
  content: "\f5a5"; }

.fa-memory:before {
  content: "\f538"; }

.fa-mendeley:before {
  content: "\f7b3"; }

.fa-menorah:before {
  content: "\f676"; }

.fa-mercury:before {
  content: "\f223"; }

.fa-meteor:before {
  content: "\f753"; }

.fa-microchip:before {
  content: "\f2db"; }

.fa-microphone:before {
  content: "\f130"; }

.fa-microphone-alt:before {
  content: "\f3c9"; }

.fa-microphone-alt-slash:before {
  content: "\f539"; }

.fa-microphone-slash:before {
  content: "\f131"; }

.fa-microscope:before {
  content: "\f610"; }

.fa-microsoft:before {
  content: "\f3ca"; }

.fa-mind-share:before {
  content: "\f677"; }

.fa-minus:before {
  content: "\f068"; }

.fa-minus-circle:before {
  content: "\f056"; }

.fa-minus-hexagon:before {
  content: "\f307"; }

.fa-minus-octagon:before {
  content: "\f308"; }

.fa-minus-square:before {
  content: "\f146"; }

.fa-mistletoe:before {
  content: "\f7b4"; }

.fa-mitten:before {
  content: "\f7b5"; }

.fa-mix:before {
  content: "\f3cb"; }

.fa-mixcloud:before {
  content: "\f289"; }

.fa-mizuni:before {
  content: "\f3cc"; }

.fa-mobile:before {
  content: "\f10b"; }

.fa-mobile-alt:before {
  content: "\f3cd"; }

.fa-mobile-android:before {
  content: "\f3ce"; }

.fa-mobile-android-alt:before {
  content: "\f3cf"; }

.fa-modx:before {
  content: "\f285"; }

.fa-monero:before {
  content: "\f3d0"; }

.fa-money-bill:before {
  content: "\f0d6"; }

.fa-money-bill-alt:before {
  content: "\f3d1"; }

.fa-money-bill-wave:before {
  content: "\f53a"; }

.fa-money-bill-wave-alt:before {
  content: "\f53b"; }

.fa-money-check:before {
  content: "\f53c"; }

.fa-money-check-alt:before {
  content: "\f53d"; }

.fa-money-check-edit:before {
  content: "\f872"; }

.fa-money-check-edit-alt:before {
  content: "\f873"; }

.fa-monitor-heart-rate:before {
  content: "\f611"; }

.fa-monkey:before {
  content: "\f6fb"; }

.fa-monument:before {
  content: "\f5a6"; }

.fa-moon:before {
  content: "\f186"; }

.fa-moon-cloud:before {
  content: "\f754"; }

.fa-moon-stars:before {
  content: "\f755"; }

.fa-mortar-pestle:before {
  content: "\f5a7"; }

.fa-mosque:before {
  content: "\f678"; }

.fa-motorcycle:before {
  content: "\f21c"; }

.fa-mountain:before {
  content: "\f6fc"; }

.fa-mountains:before {
  content: "\f6fd"; }

.fa-mouse-pointer:before {
  content: "\f245"; }

.fa-mug:before {
  content: "\f874"; }

.fa-mug-hot:before {
  content: "\f7b6"; }

.fa-mug-marshmallows:before {
  content: "\f7b7"; }

.fa-mug-tea:before {
  content: "\f875"; }

.fa-music:before {
  content: "\f001"; }

.fa-napster:before {
  content: "\f3d2"; }

.fa-narwhal:before {
  content: "\f6fe"; }

.fa-neos:before {
  content: "\f612"; }

.fa-network-wired:before {
  content: "\f6ff"; }

.fa-neuter:before {
  content: "\f22c"; }

.fa-newspaper:before {
  content: "\f1ea"; }

.fa-nimblr:before {
  content: "\f5a8"; }

.fa-node:before {
  content: "\f419"; }

.fa-node-js:before {
  content: "\f3d3"; }

.fa-not-equal:before {
  content: "\f53e"; }

.fa-notes-medical:before {
  content: "\f481"; }

.fa-npm:before {
  content: "\f3d4"; }

.fa-ns8:before {
  content: "\f3d5"; }

.fa-nutritionix:before {
  content: "\f3d6"; }

.fa-object-group:before {
  content: "\f247"; }

.fa-object-ungroup:before {
  content: "\f248"; }

.fa-octagon:before {
  content: "\f306"; }

.fa-odnoklassniki:before {
  content: "\f263"; }

.fa-odnoklassniki-square:before {
  content: "\f264"; }

.fa-oil-can:before {
  content: "\f613"; }

.fa-oil-temp:before {
  content: "\f614"; }

.fa-old-republic:before {
  content: "\f510"; }

.fa-om:before {
  content: "\f679"; }

.fa-omega:before {
  content: "\f67a"; }

.fa-opencart:before {
  content: "\f23d"; }

.fa-openid:before {
  content: "\f19b"; }

.fa-opera:before {
  content: "\f26a"; }

.fa-optin-monster:before {
  content: "\f23c"; }

.fa-ornament:before {
  content: "\f7b8"; }

.fa-osi:before {
  content: "\f41a"; }

.fa-otter:before {
  content: "\f700"; }

.fa-outdent:before {
  content: "\f03b"; }

.fa-overline:before {
  content: "\f876"; }

.fa-page-break:before {
  content: "\f877"; }

.fa-page4:before {
  content: "\f3d7"; }

.fa-pagelines:before {
  content: "\f18c"; }

.fa-pager:before {
  content: "\f815"; }

.fa-paint-brush:before {
  content: "\f1fc"; }

.fa-paint-brush-alt:before {
  content: "\f5a9"; }

.fa-paint-roller:before {
  content: "\f5aa"; }

.fa-palette:before {
  content: "\f53f"; }

.fa-palfed:before {
  content: "\f3d8"; }

.fa-pallet:before {
  content: "\f482"; }

.fa-pallet-alt:before {
  content: "\f483"; }

.fa-paper-plane:before {
  content: "\f1d8"; }

.fa-paperclip:before {
  content: "\f0c6"; }

.fa-parachute-box:before {
  content: "\f4cd"; }

.fa-paragraph:before {
  content: "\f1dd"; }

.fa-paragraph-rtl:before {
  content: "\f878"; }

.fa-parking:before {
  content: "\f540"; }

.fa-parking-circle:before {
  content: "\f615"; }

.fa-parking-circle-slash:before {
  content: "\f616"; }

.fa-parking-slash:before {
  content: "\f617"; }

.fa-passport:before {
  content: "\f5ab"; }

.fa-pastafarianism:before {
  content: "\f67b"; }

.fa-paste:before {
  content: "\f0ea"; }

.fa-patreon:before {
  content: "\f3d9"; }

.fa-pause:before {
  content: "\f04c"; }

.fa-pause-circle:before {
  content: "\f28b"; }

.fa-paw:before {
  content: "\f1b0"; }

.fa-paw-alt:before {
  content: "\f701"; }

.fa-paw-claws:before {
  content: "\f702"; }

.fa-paypal:before {
  content: "\f1ed"; }

.fa-peace:before {
  content: "\f67c"; }

.fa-pegasus:before {
  content: "\f703"; }

.fa-pen:before {
  content: "\f304"; }

.fa-pen-alt:before {
  content: "\f305"; }

.fa-pen-fancy:before {
  content: "\f5ac"; }

.fa-pen-nib:before {
  content: "\f5ad"; }

.fa-pen-square:before {
  content: "\f14b"; }

.fa-pencil:before {
  content: "\f040"; }

.fa-pencil-alt:before {
  content: "\f303"; }

.fa-pencil-paintbrush:before {
  content: "\f618"; }

.fa-pencil-ruler:before {
  content: "\f5ae"; }

.fa-pennant:before {
  content: "\f456"; }

.fa-penny-arcade:before {
  content: "\f704"; }

.fa-people-carry:before {
  content: "\f4ce"; }

.fa-pepper-hot:before {
  content: "\f816"; }

.fa-percent:before {
  content: "\f295"; }

.fa-percentage:before {
  content: "\f541"; }

.fa-periscope:before {
  content: "\f3da"; }

.fa-person-booth:before {
  content: "\f756"; }

.fa-person-carry:before {
  content: "\f4cf"; }

.fa-person-dolly:before {
  content: "\f4d0"; }

.fa-person-dolly-empty:before {
  content: "\f4d1"; }

.fa-person-sign:before {
  content: "\f757"; }

.fa-phabricator:before {
  content: "\f3db"; }

.fa-phoenix-framework:before {
  content: "\f3dc"; }

.fa-phoenix-squadron:before {
  content: "\f511"; }

.fa-phone:before {
  content: "\f095"; }

.fa-phone-alt:before {
  content: "\f879"; }

.fa-phone-laptop:before {
  content: "\f87a"; }

.fa-phone-office:before {
  content: "\f67d"; }

.fa-phone-plus:before {
  content: "\f4d2"; }

.fa-phone-slash:before {
  content: "\f3dd"; }

.fa-phone-square:before {
  content: "\f098"; }

.fa-phone-square-alt:before {
  content: "\f87b"; }

.fa-phone-volume:before {
  content: "\f2a0"; }

.fa-photo-video:before {
  content: "\f87c"; }

.fa-php:before {
  content: "\f457"; }

.fa-pi:before {
  content: "\f67e"; }

.fa-pie:before {
  content: "\f705"; }

.fa-pied-piper:before {
  content: "\f2ae"; }

.fa-pied-piper-alt:before {
  content: "\f1a8"; }

.fa-pied-piper-hat:before {
  content: "\f4e5"; }

.fa-pied-piper-pp:before {
  content: "\f1a7"; }

.fa-pig:before {
  content: "\f706"; }

.fa-piggy-bank:before {
  content: "\f4d3"; }

.fa-pills:before {
  content: "\f484"; }

.fa-pinterest:before {
  content: "\f0d2"; }

.fa-pinterest-p:before {
  content: "\f231"; }

.fa-pinterest-square:before {
  content: "\f0d3"; }

.fa-pizza:before {
  content: "\f817"; }

.fa-pizza-slice:before {
  content: "\f818"; }

.fa-place-of-worship:before {
  content: "\f67f"; }

.fa-plane:before {
  content: "\f072"; }

.fa-plane-alt:before {
  content: "\f3de"; }

.fa-plane-arrival:before {
  content: "\f5af"; }

.fa-plane-departure:before {
  content: "\f5b0"; }

.fa-play:before {
  content: "\f04b"; }

.fa-play-circle:before {
  content: "\f144"; }

.fa-playstation:before {
  content: "\f3df"; }

.fa-plug:before {
  content: "\f1e6"; }

.fa-plus:before {
  content: "\f067"; }

.fa-plus-circle:before {
  content: "\f055"; }

.fa-plus-hexagon:before {
  content: "\f300"; }

.fa-plus-octagon:before {
  content: "\f301"; }

.fa-plus-square:before {
  content: "\f0fe"; }

.fa-podcast:before {
  content: "\f2ce"; }

.fa-podium:before {
  content: "\f680"; }

.fa-podium-star:before {
  content: "\f758"; }

.fa-poll:before {
  content: "\f681"; }

.fa-poll-h:before {
  content: "\f682"; }

.fa-poll-people:before {
  content: "\f759"; }

.fa-poo:before {
  content: "\f2fe"; }

.fa-poo-storm:before {
  content: "\f75a"; }

.fa-poop:before {
  content: "\f619"; }

.fa-popcorn:before {
  content: "\f819"; }

.fa-portrait:before {
  content: "\f3e0"; }

.fa-pound-sign:before {
  content: "\f154"; }

.fa-power-off:before {
  content: "\f011"; }

.fa-pray:before {
  content: "\f683"; }

.fa-praying-hands:before {
  content: "\f684"; }

.fa-prescription:before {
  content: "\f5b1"; }

.fa-prescription-bottle:before {
  content: "\f485"; }

.fa-prescription-bottle-alt:before {
  content: "\f486"; }

.fa-presentation:before {
  content: "\f685"; }

.fa-print:before {
  content: "\f02f"; }

.fa-print-search:before {
  content: "\f81a"; }

.fa-print-slash:before {
  content: "\f686"; }

.fa-procedures:before {
  content: "\f487"; }

.fa-product-hunt:before {
  content: "\f288"; }

.fa-project-diagram:before {
  content: "\f542"; }

.fa-pumpkin:before {
  content: "\f707"; }

.fa-pushed:before {
  content: "\f3e1"; }

.fa-puzzle-piece:before {
  content: "\f12e"; }

.fa-python:before {
  content: "\f3e2"; }

.fa-qq:before {
  content: "\f1d6"; }

.fa-qrcode:before {
  content: "\f029"; }

.fa-question:before {
  content: "\f128"; }

.fa-question-circle:before {
  content: "\f059"; }

.fa-question-square:before {
  content: "\f2fd"; }

.fa-quidditch:before {
  content: "\f458"; }

.fa-quinscape:before {
  content: "\f459"; }

.fa-quora:before {
  content: "\f2c4"; }

.fa-quote-left:before {
  content: "\f10d"; }

.fa-quote-right:before {
  content: "\f10e"; }

.fa-quran:before {
  content: "\f687"; }

.fa-r-project:before {
  content: "\f4f7"; }

.fa-rabbit:before {
  content: "\f708"; }

.fa-rabbit-fast:before {
  content: "\f709"; }

.fa-racquet:before {
  content: "\f45a"; }

.fa-radiation:before {
  content: "\f7b9"; }

.fa-radiation-alt:before {
  content: "\f7ba"; }

.fa-rainbow:before {
  content: "\f75b"; }

.fa-raindrops:before {
  content: "\f75c"; }

.fa-ram:before {
  content: "\f70a"; }

.fa-ramp-loading:before {
  content: "\f4d4"; }

.fa-random:before {
  content: "\f074"; }

.fa-raspberry-pi:before {
  content: "\f7bb"; }

.fa-ravelry:before {
  content: "\f2d9"; }

.fa-react:before {
  content: "\f41b"; }

.fa-reacteurope:before {
  content: "\f75d"; }

.fa-readme:before {
  content: "\f4d5"; }

.fa-rebel:before {
  content: "\f1d0"; }

.fa-receipt:before {
  content: "\f543"; }

.fa-rectangle-landscape:before {
  content: "\f2fa"; }

.fa-rectangle-portrait:before {
  content: "\f2fb"; }

.fa-rectangle-wide:before {
  content: "\f2fc"; }

.fa-recycle:before {
  content: "\f1b8"; }

.fa-red-river:before {
  content: "\f3e3"; }

.fa-reddit:before {
  content: "\f1a1"; }

.fa-reddit-alien:before {
  content: "\f281"; }

.fa-reddit-square:before {
  content: "\f1a2"; }

.fa-redhat:before {
  content: "\f7bc"; }

.fa-redo:before {
  content: "\f01e"; }

.fa-redo-alt:before {
  content: "\f2f9"; }

.fa-registered:before {
  content: "\f25d"; }

.fa-remove-format:before {
  content: "\f87d"; }

.fa-renren:before {
  content: "\f18b"; }

.fa-repeat:before {
  content: "\f363"; }

.fa-repeat-1:before {
  content: "\f365"; }

.fa-repeat-1-alt:before {
  content: "\f366"; }

.fa-repeat-alt:before {
  content: "\f364"; }

.fa-reply:before {
  content: "\f3e5"; }

.fa-reply-all:before {
  content: "\f122"; }

.fa-replyd:before {
  content: "\f3e6"; }

.fa-republican:before {
  content: "\f75e"; }

.fa-researchgate:before {
  content: "\f4f8"; }

.fa-resolving:before {
  content: "\f3e7"; }

.fa-restroom:before {
  content: "\f7bd"; }

.fa-retweet:before {
  content: "\f079"; }

.fa-retweet-alt:before {
  content: "\f361"; }

.fa-rev:before {
  content: "\f5b2"; }

.fa-ribbon:before {
  content: "\f4d6"; }

.fa-ring:before {
  content: "\f70b"; }

.fa-rings-wedding:before {
  content: "\f81b"; }

.fa-road:before {
  content: "\f018"; }

.fa-robot:before {
  content: "\f544"; }

.fa-rocket:before {
  content: "\f135"; }

.fa-rocketchat:before {
  content: "\f3e8"; }

.fa-rockrms:before {
  content: "\f3e9"; }

.fa-route:before {
  content: "\f4d7"; }

.fa-route-highway:before {
  content: "\f61a"; }

.fa-route-interstate:before {
  content: "\f61b"; }

.fa-rss:before {
  content: "\f09e"; }

.fa-rss-square:before {
  content: "\f143"; }

.fa-ruble-sign:before {
  content: "\f158"; }

.fa-ruler:before {
  content: "\f545"; }

.fa-ruler-combined:before {
  content: "\f546"; }

.fa-ruler-horizontal:before {
  content: "\f547"; }

.fa-ruler-triangle:before {
  content: "\f61c"; }

.fa-ruler-vertical:before {
  content: "\f548"; }

.fa-running:before {
  content: "\f70c"; }

.fa-rupee-sign:before {
  content: "\f156"; }

.fa-rv:before {
  content: "\f7be"; }

.fa-sack:before {
  content: "\f81c"; }

.fa-sack-dollar:before {
  content: "\f81d"; }

.fa-sad-cry:before {
  content: "\f5b3"; }

.fa-sad-tear:before {
  content: "\f5b4"; }

.fa-safari:before {
  content: "\f267"; }

.fa-salad:before {
  content: "\f81e"; }

.fa-salesforce:before {
  content: "\f83b"; }

.fa-sandwich:before {
  content: "\f81f"; }

.fa-sass:before {
  content: "\f41e"; }

.fa-satellite:before {
  content: "\f7bf"; }

.fa-satellite-dish:before {
  content: "\f7c0"; }

.fa-sausage:before {
  content: "\f820"; }

.fa-save:before {
  content: "\f0c7"; }

.fa-scalpel:before {
  content: "\f61d"; }

.fa-scalpel-path:before {
  content: "\f61e"; }

.fa-scanner:before {
  content: "\f488"; }

.fa-scanner-keyboard:before {
  content: "\f489"; }

.fa-scanner-touchscreen:before {
  content: "\f48a"; }

.fa-scarecrow:before {
  content: "\f70d"; }

.fa-scarf:before {
  content: "\f7c1"; }

.fa-schlix:before {
  content: "\f3ea"; }

.fa-school:before {
  content: "\f549"; }

.fa-screwdriver:before {
  content: "\f54a"; }

.fa-scribd:before {
  content: "\f28a"; }

.fa-scroll:before {
  content: "\f70e"; }

.fa-scroll-old:before {
  content: "\f70f"; }

.fa-scrubber:before {
  content: "\f2f8"; }

.fa-scythe:before {
  content: "\f710"; }

.fa-sd-card:before {
  content: "\f7c2"; }

.fa-search:before {
  content: "\f002"; }

.fa-search-dollar:before {
  content: "\f688"; }

.fa-search-location:before {
  content: "\f689"; }

.fa-search-minus:before {
  content: "\f010"; }

.fa-search-plus:before {
  content: "\f00e"; }

.fa-searchengin:before {
  content: "\f3eb"; }

.fa-seedling:before {
  content: "\f4d8"; }

.fa-sellcast:before {
  content: "\f2da"; }

.fa-sellsy:before {
  content: "\f213"; }

.fa-send-back:before {
  content: "\f87e"; }

.fa-send-backward:before {
  content: "\f87f"; }

.fa-server:before {
  content: "\f233"; }

.fa-servicestack:before {
  content: "\f3ec"; }

.fa-shapes:before {
  content: "\f61f"; }

.fa-share:before {
  content: "\f064"; }

.fa-share-all:before {
  content: "\f367"; }

.fa-share-alt:before {
  content: "\f1e0"; }

.fa-share-alt-square:before {
  content: "\f1e1"; }

.fa-share-square:before {
  content: "\f14d"; }

.fa-sheep:before {
  content: "\f711"; }

.fa-shekel-sign:before {
  content: "\f20b"; }

.fa-shield:before {
  content: "\f132"; }

.fa-shield-alt:before {
  content: "\f3ed"; }

.fa-shield-check:before {
  content: "\f2f7"; }

.fa-shield-cross:before {
  content: "\f712"; }

.fa-ship:before {
  content: "\f21a"; }

.fa-shipping-fast:before {
  content: "\f48b"; }

.fa-shipping-timed:before {
  content: "\f48c"; }

.fa-shirtsinbulk:before {
  content: "\f214"; }

.fa-shish-kebab:before {
  content: "\f821"; }

.fa-shoe-prints:before {
  content: "\f54b"; }

.fa-shopping-bag:before {
  content: "\f290"; }

.fa-shopping-basket:before {
  content: "\f291"; }

.fa-shopping-cart:before {
  content: "\f07a"; }

.fa-shopware:before {
  content: "\f5b5"; }

.fa-shovel:before {
  content: "\f713"; }

.fa-shovel-snow:before {
  content: "\f7c3"; }

.fa-shower:before {
  content: "\f2cc"; }

.fa-shredder:before {
  content: "\f68a"; }

.fa-shuttle-van:before {
  content: "\f5b6"; }

.fa-shuttlecock:before {
  content: "\f45b"; }

.fa-sickle:before {
  content: "\f822"; }

.fa-sigma:before {
  content: "\f68b"; }

.fa-sign:before {
  content: "\f4d9"; }

.fa-sign-in:before {
  content: "\f090"; }

.fa-sign-in-alt:before {
  content: "\f2f6"; }

.fa-sign-language:before {
  content: "\f2a7"; }

.fa-sign-out:before {
  content: "\f08b"; }

.fa-sign-out-alt:before {
  content: "\f2f5"; }

.fa-signal:before {
  content: "\f012"; }

.fa-signal-1:before {
  content: "\f68c"; }

.fa-signal-2:before {
  content: "\f68d"; }

.fa-signal-3:before {
  content: "\f68e"; }

.fa-signal-4:before {
  content: "\f68f"; }

.fa-signal-alt:before {
  content: "\f690"; }

.fa-signal-alt-1:before {
  content: "\f691"; }

.fa-signal-alt-2:before {
  content: "\f692"; }

.fa-signal-alt-3:before {
  content: "\f693"; }

.fa-signal-alt-slash:before {
  content: "\f694"; }

.fa-signal-slash:before {
  content: "\f695"; }

.fa-signature:before {
  content: "\f5b7"; }

.fa-sim-card:before {
  content: "\f7c4"; }

.fa-simplybuilt:before {
  content: "\f215"; }

.fa-sistrix:before {
  content: "\f3ee"; }

.fa-sitemap:before {
  content: "\f0e8"; }

.fa-sith:before {
  content: "\f512"; }

.fa-skating:before {
  content: "\f7c5"; }

.fa-skeleton:before {
  content: "\f620"; }

.fa-sketch:before {
  content: "\f7c6"; }

.fa-ski-jump:before {
  content: "\f7c7"; }

.fa-ski-lift:before {
  content: "\f7c8"; }

.fa-skiing:before {
  content: "\f7c9"; }

.fa-skiing-nordic:before {
  content: "\f7ca"; }

.fa-skull:before {
  content: "\f54c"; }

.fa-skull-crossbones:before {
  content: "\f714"; }

.fa-skyatlas:before {
  content: "\f216"; }

.fa-skype:before {
  content: "\f17e"; }

.fa-slack:before {
  content: "\f198"; }

.fa-slack-hash:before {
  content: "\f3ef"; }

.fa-slash:before {
  content: "\f715"; }

.fa-sledding:before {
  content: "\f7cb"; }

.fa-sleigh:before {
  content: "\f7cc"; }

.fa-sliders-h:before {
  content: "\f1de"; }

.fa-sliders-h-square:before {
  content: "\f3f0"; }

.fa-sliders-v:before {
  content: "\f3f1"; }

.fa-sliders-v-square:before {
  content: "\f3f2"; }

.fa-slideshare:before {
  content: "\f1e7"; }

.fa-smile:before {
  content: "\f118"; }

.fa-smile-beam:before {
  content: "\f5b8"; }

.fa-smile-plus:before {
  content: "\f5b9"; }

.fa-smile-wink:before {
  content: "\f4da"; }

.fa-smog:before {
  content: "\f75f"; }

.fa-smoke:before {
  content: "\f760"; }

.fa-smoking:before {
  content: "\f48d"; }

.fa-smoking-ban:before {
  content: "\f54d"; }

.fa-sms:before {
  content: "\f7cd"; }

.fa-snake:before {
  content: "\f716"; }

.fa-snapchat:before {
  content: "\f2ab"; }

.fa-snapchat-ghost:before {
  content: "\f2ac"; }

.fa-snapchat-square:before {
  content: "\f2ad"; }

.fa-snooze:before {
  content: "\f880"; }

.fa-snow-blowing:before {
  content: "\f761"; }

.fa-snowboarding:before {
  content: "\f7ce"; }

.fa-snowflake:before {
  content: "\f2dc"; }

.fa-snowflakes:before {
  content: "\f7cf"; }

.fa-snowman:before {
  content: "\f7d0"; }

.fa-snowmobile:before {
  content: "\f7d1"; }

.fa-snowplow:before {
  content: "\f7d2"; }

.fa-socks:before {
  content: "\f696"; }

.fa-solar-panel:before {
  content: "\f5ba"; }

.fa-sort:before {
  content: "\f0dc"; }

.fa-sort-alpha-down:before {
  content: "\f15d"; }

.fa-sort-alpha-down-alt:before {
  content: "\f881"; }

.fa-sort-alpha-up:before {
  content: "\f15e"; }

.fa-sort-alpha-up-alt:before {
  content: "\f882"; }

.fa-sort-alt:before {
  content: "\f883"; }

.fa-sort-amount-down:before {
  content: "\f160"; }

.fa-sort-amount-down-alt:before {
  content: "\f884"; }

.fa-sort-amount-up:before {
  content: "\f161"; }

.fa-sort-amount-up-alt:before {
  content: "\f885"; }

.fa-sort-down:before {
  content: "\f0dd"; }

.fa-sort-numeric-down:before {
  content: "\f162"; }

.fa-sort-numeric-down-alt:before {
  content: "\f886"; }

.fa-sort-numeric-up:before {
  content: "\f163"; }

.fa-sort-numeric-up-alt:before {
  content: "\f887"; }

.fa-sort-shapes-down:before {
  content: "\f888"; }

.fa-sort-shapes-down-alt:before {
  content: "\f889"; }

.fa-sort-shapes-up:before {
  content: "\f88a"; }

.fa-sort-shapes-up-alt:before {
  content: "\f88b"; }

.fa-sort-size-down:before {
  content: "\f88c"; }

.fa-sort-size-down-alt:before {
  content: "\f88d"; }

.fa-sort-size-up:before {
  content: "\f88e"; }

.fa-sort-size-up-alt:before {
  content: "\f88f"; }

.fa-sort-up:before {
  content: "\f0de"; }

.fa-soundcloud:before {
  content: "\f1be"; }

.fa-soup:before {
  content: "\f823"; }

.fa-sourcetree:before {
  content: "\f7d3"; }

.fa-spa:before {
  content: "\f5bb"; }

.fa-space-shuttle:before {
  content: "\f197"; }

.fa-spade:before {
  content: "\f2f4"; }

.fa-sparkles:before {
  content: "\f890"; }

.fa-speakap:before {
  content: "\f3f3"; }

.fa-speaker-deck:before {
  content: "\f83c"; }

.fa-spell-check:before {
  content: "\f891"; }

.fa-spider:before {
  content: "\f717"; }

.fa-spider-black-widow:before {
  content: "\f718"; }

.fa-spider-web:before {
  content: "\f719"; }

.fa-spinner:before {
  content: "\f110"; }

.fa-spinner-third:before {
  content: "\f3f4"; }

.fa-splotch:before {
  content: "\f5bc"; }

.fa-spotify:before {
  content: "\f1bc"; }

.fa-spray-can:before {
  content: "\f5bd"; }

.fa-square:before {
  content: "\f0c8"; }

.fa-square-full:before {
  content: "\f45c"; }

.fa-square-root:before {
  content: "\f697"; }

.fa-square-root-alt:before {
  content: "\f698"; }

.fa-squarespace:before {
  content: "\f5be"; }

.fa-squirrel:before {
  content: "\f71a"; }

.fa-stack-exchange:before {
  content: "\f18d"; }

.fa-stack-overflow:before {
  content: "\f16c"; }

.fa-stackpath:before {
  content: "\f842"; }

.fa-staff:before {
  content: "\f71b"; }

.fa-stamp:before {
  content: "\f5bf"; }

.fa-star:before {
  content: "\f005"; }

.fa-star-and-crescent:before {
  content: "\f699"; }

.fa-star-christmas:before {
  content: "\f7d4"; }

.fa-star-exclamation:before {
  content: "\f2f3"; }

.fa-star-half:before {
  content: "\f089"; }

.fa-star-half-alt:before {
  content: "\f5c0"; }

.fa-star-of-david:before {
  content: "\f69a"; }

.fa-star-of-life:before {
  content: "\f621"; }

.fa-stars:before {
  content: "\f762"; }

.fa-staylinked:before {
  content: "\f3f5"; }

.fa-steak:before {
  content: "\f824"; }

.fa-steam:before {
  content: "\f1b6"; }

.fa-steam-square:before {
  content: "\f1b7"; }

.fa-steam-symbol:before {
  content: "\f3f6"; }

.fa-steering-wheel:before {
  content: "\f622"; }

.fa-step-backward:before {
  content: "\f048"; }

.fa-step-forward:before {
  content: "\f051"; }

.fa-stethoscope:before {
  content: "\f0f1"; }

.fa-sticker-mule:before {
  content: "\f3f7"; }

.fa-sticky-note:before {
  content: "\f249"; }

.fa-stocking:before {
  content: "\f7d5"; }

.fa-stomach:before {
  content: "\f623"; }

.fa-stop:before {
  content: "\f04d"; }

.fa-stop-circle:before {
  content: "\f28d"; }

.fa-stopwatch:before {
  content: "\f2f2"; }

.fa-store:before {
  content: "\f54e"; }

.fa-store-alt:before {
  content: "\f54f"; }

.fa-strava:before {
  content: "\f428"; }

.fa-stream:before {
  content: "\f550"; }

.fa-street-view:before {
  content: "\f21d"; }

.fa-stretcher:before {
  content: "\f825"; }

.fa-strikethrough:before {
  content: "\f0cc"; }

.fa-stripe:before {
  content: "\f429"; }

.fa-stripe-s:before {
  content: "\f42a"; }

.fa-stroopwafel:before {
  content: "\f551"; }

.fa-studiovinari:before {
  content: "\f3f8"; }

.fa-stumbleupon:before {
  content: "\f1a4"; }

.fa-stumbleupon-circle:before {
  content: "\f1a3"; }

.fa-subscript:before {
  content: "\f12c"; }

.fa-subway:before {
  content: "\f239"; }

.fa-suitcase:before {
  content: "\f0f2"; }

.fa-suitcase-rolling:before {
  content: "\f5c1"; }

.fa-sun:before {
  content: "\f185"; }

.fa-sun-cloud:before {
  content: "\f763"; }

.fa-sun-dust:before {
  content: "\f764"; }

.fa-sun-haze:before {
  content: "\f765"; }

.fa-sunglasses:before {
  content: "\f892"; }

.fa-sunrise:before {
  content: "\f766"; }

.fa-sunset:before {
  content: "\f767"; }

.fa-superpowers:before {
  content: "\f2dd"; }

.fa-superscript:before {
  content: "\f12b"; }

.fa-supple:before {
  content: "\f3f9"; }

.fa-surprise:before {
  content: "\f5c2"; }

.fa-suse:before {
  content: "\f7d6"; }

.fa-swatchbook:before {
  content: "\f5c3"; }

.fa-swimmer:before {
  content: "\f5c4"; }

.fa-swimming-pool:before {
  content: "\f5c5"; }

.fa-sword:before {
  content: "\f71c"; }

.fa-swords:before {
  content: "\f71d"; }

.fa-symfony:before {
  content: "\f83d"; }

.fa-synagogue:before {
  content: "\f69b"; }

.fa-sync:before {
  content: "\f021"; }

.fa-sync-alt:before {
  content: "\f2f1"; }

.fa-syringe:before {
  content: "\f48e"; }

.fa-table:before {
  content: "\f0ce"; }

.fa-table-tennis:before {
  content: "\f45d"; }

.fa-tablet:before {
  content: "\f10a"; }

.fa-tablet-alt:before {
  content: "\f3fa"; }

.fa-tablet-android:before {
  content: "\f3fb"; }

.fa-tablet-android-alt:before {
  content: "\f3fc"; }

.fa-tablet-rugged:before {
  content: "\f48f"; }

.fa-tablets:before {
  content: "\f490"; }

.fa-tachometer:before {
  content: "\f0e4"; }

.fa-tachometer-alt:before {
  content: "\f3fd"; }

.fa-tachometer-alt-average:before {
  content: "\f624"; }

.fa-tachometer-alt-fast:before {
  content: "\f625"; }

.fa-tachometer-alt-fastest:before {
  content: "\f626"; }

.fa-tachometer-alt-slow:before {
  content: "\f627"; }

.fa-tachometer-alt-slowest:before {
  content: "\f628"; }

.fa-tachometer-average:before {
  content: "\f629"; }

.fa-tachometer-fast:before {
  content: "\f62a"; }

.fa-tachometer-fastest:before {
  content: "\f62b"; }

.fa-tachometer-slow:before {
  content: "\f62c"; }

.fa-tachometer-slowest:before {
  content: "\f62d"; }

.fa-taco:before {
  content: "\f826"; }

.fa-tag:before {
  content: "\f02b"; }

.fa-tags:before {
  content: "\f02c"; }

.fa-tally:before {
  content: "\f69c"; }

.fa-tanakh:before {
  content: "\f827"; }

.fa-tape:before {
  content: "\f4db"; }

.fa-tasks:before {
  content: "\f0ae"; }

.fa-tasks-alt:before {
  content: "\f828"; }

.fa-taxi:before {
  content: "\f1ba"; }

.fa-teamspeak:before {
  content: "\f4f9"; }

.fa-teeth:before {
  content: "\f62e"; }

.fa-teeth-open:before {
  content: "\f62f"; }

.fa-telegram:before {
  content: "\f2c6"; }

.fa-telegram-plane:before {
  content: "\f3fe"; }

.fa-temperature-frigid:before {
  content: "\f768"; }

.fa-temperature-high:before {
  content: "\f769"; }

.fa-temperature-hot:before {
  content: "\f76a"; }

.fa-temperature-low:before {
  content: "\f76b"; }

.fa-tencent-weibo:before {
  content: "\f1d5"; }

.fa-tenge:before {
  content: "\f7d7"; }

.fa-tennis-ball:before {
  content: "\f45e"; }

.fa-terminal:before {
  content: "\f120"; }

.fa-text:before {
  content: "\f893"; }

.fa-text-height:before {
  content: "\f034"; }

.fa-text-size:before {
  content: "\f894"; }

.fa-text-width:before {
  content: "\f035"; }

.fa-th:before {
  content: "\f00a"; }

.fa-th-large:before {
  content: "\f009"; }

.fa-th-list:before {
  content: "\f00b"; }

.fa-the-red-yeti:before {
  content: "\f69d"; }

.fa-theater-masks:before {
  content: "\f630"; }

.fa-themeco:before {
  content: "\f5c6"; }

.fa-themeisle:before {
  content: "\f2b2"; }

.fa-thermometer:before {
  content: "\f491"; }

.fa-thermometer-empty:before {
  content: "\f2cb"; }

.fa-thermometer-full:before {
  content: "\f2c7"; }

.fa-thermometer-half:before {
  content: "\f2c9"; }

.fa-thermometer-quarter:before {
  content: "\f2ca"; }

.fa-thermometer-three-quarters:before {
  content: "\f2c8"; }

.fa-theta:before {
  content: "\f69e"; }

.fa-think-peaks:before {
  content: "\f731"; }

.fa-thumbs-down:before {
  content: "\f165"; }

.fa-thumbs-up:before {
  content: "\f164"; }

.fa-thumbtack:before {
  content: "\f08d"; }

.fa-thunderstorm:before {
  content: "\f76c"; }

.fa-thunderstorm-moon:before {
  content: "\f76d"; }

.fa-thunderstorm-sun:before {
  content: "\f76e"; }

.fa-ticket:before {
  content: "\f145"; }

.fa-ticket-alt:before {
  content: "\f3ff"; }

.fa-tilde:before {
  content: "\f69f"; }

.fa-times:before {
  content: "\f00d"; }

.fa-times-circle:before {
  content: "\f057"; }

.fa-times-hexagon:before {
  content: "\f2ee"; }

.fa-times-octagon:before {
  content: "\f2f0"; }

.fa-times-square:before {
  content: "\f2d3"; }

.fa-tint:before {
  content: "\f043"; }

.fa-tint-slash:before {
  content: "\f5c7"; }

.fa-tire:before {
  content: "\f631"; }

.fa-tire-flat:before {
  content: "\f632"; }

.fa-tire-pressure-warning:before {
  content: "\f633"; }

.fa-tire-rugged:before {
  content: "\f634"; }

.fa-tired:before {
  content: "\f5c8"; }

.fa-toggle-off:before {
  content: "\f204"; }

.fa-toggle-on:before {
  content: "\f205"; }

.fa-toilet:before {
  content: "\f7d8"; }

.fa-toilet-paper:before {
  content: "\f71e"; }

.fa-toilet-paper-alt:before {
  content: "\f71f"; }

.fa-tombstone:before {
  content: "\f720"; }

.fa-tombstone-alt:before {
  content: "\f721"; }

.fa-toolbox:before {
  content: "\f552"; }

.fa-tools:before {
  content: "\f7d9"; }

.fa-tooth:before {
  content: "\f5c9"; }

.fa-toothbrush:before {
  content: "\f635"; }

.fa-torah:before {
  content: "\f6a0"; }

.fa-torii-gate:before {
  content: "\f6a1"; }

.fa-tornado:before {
  content: "\f76f"; }

.fa-tractor:before {
  content: "\f722"; }

.fa-trade-federation:before {
  content: "\f513"; }

.fa-trademark:before {
  content: "\f25c"; }

.fa-traffic-cone:before {
  content: "\f636"; }

.fa-traffic-light:before {
  content: "\f637"; }

.fa-traffic-light-go:before {
  content: "\f638"; }

.fa-traffic-light-slow:before {
  content: "\f639"; }

.fa-traffic-light-stop:before {
  content: "\f63a"; }

.fa-train:before {
  content: "\f238"; }

.fa-tram:before {
  content: "\f7da"; }

.fa-transgender:before {
  content: "\f224"; }

.fa-transgender-alt:before {
  content: "\f225"; }

.fa-trash:before {
  content: "\f1f8"; }

.fa-trash-alt:before {
  content: "\f2ed"; }

.fa-trash-restore:before {
  content: "\f829"; }

.fa-trash-restore-alt:before {
  content: "\f82a"; }

.fa-trash-undo:before {
  content: "\f895"; }

.fa-trash-undo-alt:before {
  content: "\f896"; }

.fa-treasure-chest:before {
  content: "\f723"; }

.fa-tree:before {
  content: "\f1bb"; }

.fa-tree-alt:before {
  content: "\f400"; }

.fa-tree-christmas:before {
  content: "\f7db"; }

.fa-tree-decorated:before {
  content: "\f7dc"; }

.fa-tree-large:before {
  content: "\f7dd"; }

.fa-tree-palm:before {
  content: "\f82b"; }

.fa-trees:before {
  content: "\f724"; }

.fa-trello:before {
  content: "\f181"; }

.fa-triangle:before {
  content: "\f2ec"; }

.fa-tripadvisor:before {
  content: "\f262"; }

.fa-trophy:before {
  content: "\f091"; }

.fa-trophy-alt:before {
  content: "\f2eb"; }

.fa-truck:before {
  content: "\f0d1"; }

.fa-truck-container:before {
  content: "\f4dc"; }

.fa-truck-couch:before {
  content: "\f4dd"; }

.fa-truck-loading:before {
  content: "\f4de"; }

.fa-truck-monster:before {
  content: "\f63b"; }

.fa-truck-moving:before {
  content: "\f4df"; }

.fa-truck-pickup:before {
  content: "\f63c"; }

.fa-truck-plow:before {
  content: "\f7de"; }

.fa-truck-ramp:before {
  content: "\f4e0"; }

.fa-tshirt:before {
  content: "\f553"; }

.fa-tty:before {
  content: "\f1e4"; }

.fa-tumblr:before {
  content: "\f173"; }

.fa-tumblr-square:before {
  content: "\f174"; }

.fa-turkey:before {
  content: "\f725"; }

.fa-turtle:before {
  content: "\f726"; }

.fa-tv:before {
  content: "\f26c"; }

.fa-tv-retro:before {
  content: "\f401"; }

.fa-twitch:before {
  content: "\f1e8"; }

.fa-twitter:before {
  content: "\f099"; }

.fa-twitter-square:before {
  content: "\f081"; }

.fa-typo3:before {
  content: "\f42b"; }

.fa-uber:before {
  content: "\f402"; }

.fa-ubuntu:before {
  content: "\f7df"; }

.fa-uikit:before {
  content: "\f403"; }

.fa-umbrella:before {
  content: "\f0e9"; }

.fa-umbrella-beach:before {
  content: "\f5ca"; }

.fa-underline:before {
  content: "\f0cd"; }

.fa-undo:before {
  content: "\f0e2"; }

.fa-undo-alt:before {
  content: "\f2ea"; }

.fa-unicorn:before {
  content: "\f727"; }

.fa-union:before {
  content: "\f6a2"; }

.fa-uniregistry:before {
  content: "\f404"; }

.fa-universal-access:before {
  content: "\f29a"; }

.fa-university:before {
  content: "\f19c"; }

.fa-unlink:before {
  content: "\f127"; }

.fa-unlock:before {
  content: "\f09c"; }

.fa-unlock-alt:before {
  content: "\f13e"; }

.fa-untappd:before {
  content: "\f405"; }

.fa-upload:before {
  content: "\f093"; }

.fa-ups:before {
  content: "\f7e0"; }

.fa-usb:before {
  content: "\f287"; }

.fa-usd-circle:before {
  content: "\f2e8"; }

.fa-usd-square:before {
  content: "\f2e9"; }

.fa-user:before {
  content: "\f007"; }

.fa-user-alt:before {
  content: "\f406"; }

.fa-user-alt-slash:before {
  content: "\f4fa"; }

.fa-user-astronaut:before {
  content: "\f4fb"; }

.fa-user-chart:before {
  content: "\f6a3"; }

.fa-user-check:before {
  content: "\f4fc"; }

.fa-user-circle:before {
  content: "\f2bd"; }

.fa-user-clock:before {
  content: "\f4fd"; }

.fa-user-cog:before {
  content: "\f4fe"; }

.fa-user-crown:before {
  content: "\f6a4"; }

.fa-user-edit:before {
  content: "\f4ff"; }

.fa-user-friends:before {
  content: "\f500"; }

.fa-user-graduate:before {
  content: "\f501"; }

.fa-user-hard-hat:before {
  content: "\f82c"; }

.fa-user-headset:before {
  content: "\f82d"; }

.fa-user-injured:before {
  content: "\f728"; }

.fa-user-lock:before {
  content: "\f502"; }

.fa-user-md:before {
  content: "\f0f0"; }

.fa-user-md-chat:before {
  content: "\f82e"; }

.fa-user-minus:before {
  content: "\f503"; }

.fa-user-ninja:before {
  content: "\f504"; }

.fa-user-nurse:before {
  content: "\f82f"; }

.fa-user-plus:before {
  content: "\f234"; }

.fa-user-secret:before {
  content: "\f21b"; }

.fa-user-shield:before {
  content: "\f505"; }

.fa-user-slash:before {
  content: "\f506"; }

.fa-user-tag:before {
  content: "\f507"; }

.fa-user-tie:before {
  content: "\f508"; }

.fa-user-times:before {
  content: "\f235"; }

.fa-users:before {
  content: "\f0c0"; }

.fa-users-class:before {
  content: "\f63d"; }

.fa-users-cog:before {
  content: "\f509"; }

.fa-users-crown:before {
  content: "\f6a5"; }

.fa-users-medical:before {
  content: "\f830"; }

.fa-usps:before {
  content: "\f7e1"; }

.fa-ussunnah:before {
  content: "\f407"; }

.fa-utensil-fork:before {
  content: "\f2e3"; }

.fa-utensil-knife:before {
  content: "\f2e4"; }

.fa-utensil-spoon:before {
  content: "\f2e5"; }

.fa-utensils:before {
  content: "\f2e7"; }

.fa-utensils-alt:before {
  content: "\f2e6"; }

.fa-vaadin:before {
  content: "\f408"; }

.fa-value-absolute:before {
  content: "\f6a6"; }

.fa-vector-square:before {
  content: "\f5cb"; }

.fa-venus:before {
  content: "\f221"; }

.fa-venus-double:before {
  content: "\f226"; }

.fa-venus-mars:before {
  content: "\f228"; }

.fa-viacoin:before {
  content: "\f237"; }

.fa-viadeo:before {
  content: "\f2a9"; }

.fa-viadeo-square:before {
  content: "\f2aa"; }

.fa-vial:before {
  content: "\f492"; }

.fa-vials:before {
  content: "\f493"; }

.fa-viber:before {
  content: "\f409"; }

.fa-video:before {
  content: "\f03d"; }

.fa-video-plus:before {
  content: "\f4e1"; }

.fa-video-slash:before {
  content: "\f4e2"; }

.fa-vihara:before {
  content: "\f6a7"; }

.fa-vimeo:before {
  content: "\f40a"; }

.fa-vimeo-square:before {
  content: "\f194"; }

.fa-vimeo-v:before {
  content: "\f27d"; }

.fa-vine:before {
  content: "\f1ca"; }

.fa-vk:before {
  content: "\f189"; }

.fa-vnv:before {
  content: "\f40b"; }

.fa-voicemail:before {
  content: "\f897"; }

.fa-volcano:before {
  content: "\f770"; }

.fa-volleyball-ball:before {
  content: "\f45f"; }

.fa-volume:before {
  content: "\f6a8"; }

.fa-volume-down:before {
  content: "\f027"; }

.fa-volume-mute:before {
  content: "\f6a9"; }

.fa-volume-off:before {
  content: "\f026"; }

.fa-volume-slash:before {
  content: "\f2e2"; }

.fa-volume-up:before {
  content: "\f028"; }

.fa-vote-nay:before {
  content: "\f771"; }

.fa-vote-yea:before {
  content: "\f772"; }

.fa-vr-cardboard:before {
  content: "\f729"; }

.fa-vuejs:before {
  content: "\f41f"; }

.fa-walker:before {
  content: "\f831"; }

.fa-walking:before {
  content: "\f554"; }

.fa-wallet:before {
  content: "\f555"; }

.fa-wand:before {
  content: "\f72a"; }

.fa-wand-magic:before {
  content: "\f72b"; }

.fa-warehouse:before {
  content: "\f494"; }

.fa-warehouse-alt:before {
  content: "\f495"; }

.fa-washer:before {
  content: "\f898"; }

.fa-watch:before {
  content: "\f2e1"; }

.fa-watch-fitness:before {
  content: "\f63e"; }

.fa-water:before {
  content: "\f773"; }

.fa-water-lower:before {
  content: "\f774"; }

.fa-water-rise:before {
  content: "\f775"; }

.fa-wave-sine:before {
  content: "\f899"; }

.fa-wave-square:before {
  content: "\f83e"; }

.fa-wave-triangle:before {
  content: "\f89a"; }

.fa-waze:before {
  content: "\f83f"; }

.fa-webcam:before {
  content: "\f832"; }

.fa-webcam-slash:before {
  content: "\f833"; }

.fa-weebly:before {
  content: "\f5cc"; }

.fa-weibo:before {
  content: "\f18a"; }

.fa-weight:before {
  content: "\f496"; }

.fa-weight-hanging:before {
  content: "\f5cd"; }

.fa-weixin:before {
  content: "\f1d7"; }

.fa-whale:before {
  content: "\f72c"; }

.fa-whatsapp:before {
  content: "\f232"; }

.fa-whatsapp-square:before {
  content: "\f40c"; }

.fa-wheat:before {
  content: "\f72d"; }

.fa-wheelchair:before {
  content: "\f193"; }

.fa-whistle:before {
  content: "\f460"; }

.fa-whmcs:before {
  content: "\f40d"; }

.fa-wifi:before {
  content: "\f1eb"; }

.fa-wifi-1:before {
  content: "\f6aa"; }

.fa-wifi-2:before {
  content: "\f6ab"; }

.fa-wifi-slash:before {
  content: "\f6ac"; }

.fa-wikipedia-w:before {
  content: "\f266"; }

.fa-wind:before {
  content: "\f72e"; }

.fa-wind-turbine:before {
  content: "\f89b"; }

.fa-wind-warning:before {
  content: "\f776"; }

.fa-window:before {
  content: "\f40e"; }

.fa-window-alt:before {
  content: "\f40f"; }

.fa-window-close:before {
  content: "\f410"; }

.fa-window-maximize:before {
  content: "\f2d0"; }

.fa-window-minimize:before {
  content: "\f2d1"; }

.fa-window-restore:before {
  content: "\f2d2"; }

.fa-windows:before {
  content: "\f17a"; }

.fa-windsock:before {
  content: "\f777"; }

.fa-wine-bottle:before {
  content: "\f72f"; }

.fa-wine-glass:before {
  content: "\f4e3"; }

.fa-wine-glass-alt:before {
  content: "\f5ce"; }

.fa-wix:before {
  content: "\f5cf"; }

.fa-wizards-of-the-coast:before {
  content: "\f730"; }

.fa-wolf-pack-battalion:before {
  content: "\f514"; }

.fa-won-sign:before {
  content: "\f159"; }

.fa-wordpress:before {
  content: "\f19a"; }

.fa-wordpress-simple:before {
  content: "\f411"; }

.fa-wpbeginner:before {
  content: "\f297"; }

.fa-wpexplorer:before {
  content: "\f2de"; }

.fa-wpforms:before {
  content: "\f298"; }

.fa-wpressr:before {
  content: "\f3e4"; }

.fa-wreath:before {
  content: "\f7e2"; }

.fa-wrench:before {
  content: "\f0ad"; }

.fa-x-ray:before {
  content: "\f497"; }

.fa-xbox:before {
  content: "\f412"; }

.fa-xing:before {
  content: "\f168"; }

.fa-xing-square:before {
  content: "\f169"; }

.fa-y-combinator:before {
  content: "\f23b"; }

.fa-yahoo:before {
  content: "\f19e"; }

.fa-yammer:before {
  content: "\f840"; }

.fa-yandex:before {
  content: "\f413"; }

.fa-yandex-international:before {
  content: "\f414"; }

.fa-yarn:before {
  content: "\f7e3"; }

.fa-yelp:before {
  content: "\f1e9"; }

.fa-yen-sign:before {
  content: "\f157"; }

.fa-yin-yang:before {
  content: "\f6ad"; }

.fa-yoast:before {
  content: "\f2b1"; }

.fa-youtube:before {
  content: "\f167"; }

.fa-youtube-square:before {
  content: "\f431"; }

.fa-zhihu:before {
  content: "\f63f"; }

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.sr-only-focusable:active, .sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto; }

  @font-face {
    font-family: 'Font Awesome 5 Brands';
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/fa-brands-400.eot");
    src: url("../fonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("../fonts/fa-brands-400.woff2") format("woff2"), url("../fonts/fa-brands-400.woff") format("woff"), url("../fonts/fa-brands-400.ttf") format("truetype"), url("../fonts/fa-brands-400.svg#fontawesome") format("svg"); }

  .fab {
    font-family: 'Font Awesome 5 Brands'; }
  @font-face {
    font-family: 'Font Awesome 5 Pro';
    font-style: normal;
    font-weight: 300;
    src: url("../fonts/fa-light-300.eot");
    src: url("../fonts/fa-light-300.eot?#iefix") format("embedded-opentype"), url("../fonts/fa-light-300.woff2") format("woff2"), url("../fonts/fa-light-300.woff") format("woff"), url("../fonts/fa-light-300.ttf") format("truetype"), url("../fonts/fa-light-300.svg#fontawesome") format("svg"); }

  .fal {
    font-family: 'Font Awesome 5 Pro';
    font-weight: 300; }
  @font-face {
    font-family: 'Font Awesome 5 Pro';
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/fa-regular-400.eot");
    src: url("../fonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("../fonts/fa-regular-400.woff2") format("woff2"), url("../fonts/fa-regular-400.woff") format("woff"), url("../fonts/fa-regular-400.ttf") format("truetype"), url("../fonts/fa-regular-400.svg#fontawesome") format("svg"); }

  .far {
    font-family: 'Font Awesome 5 Pro';
    font-weight: 400; }
  @font-face {
    font-family: 'Font Awesome 5 Pro';
    font-style: normal;
    font-weight: 900;
    src: url("../fonts/fa-solid-900.eot");
    src: url("../fonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("../fonts/fa-solid-900.woff2") format("woff2"), url("../fonts/fa-solid-900.woff") format("woff"), url("../fonts/fa-solid-900.ttf") format("truetype"), url("../fonts/fa-solid-900.svg#fontawesome") format("svg"); }

  .fa,
  .fas {
    font-family: 'Font Awesome 5 Pro';
    font-weight: 900; }.woocommerce .col2-set{
    display: flex;
    justify-content: space-between;
}

.woocommerce .col2-set .col-1,
.woocommerce .col2-set .col-2{
    width: calc(50% - 25px);
}

.form-row-wide input{
    width: 100%;
}

.woocommerce-form-login__rememberme{
    margin-left: 15px;
}

.form-row.form-row-first{
    float: left;
    width: calc(50% - 25px);
}

.form-row.form-row-last{
    float: right;
    width: calc(50% - 25px);
}

.form-row label{
    display: block;
}

.form-row input{
    width: 100%;
}

.clear{
    display: block;
    clear: both;
}

/* .woocommerce form .button {
    margin-top: 15px;
} */

.edit-account .button,
.woocommerce-address-fields .button{
    margin-top: 26px;
}

fieldset legend{
    font-size: 28px;
    line-height: 38px;
    font-family: "Dosis", sans-serif;
    margin-bottom: 15px;
}

.woocommerce-message{
    background: #53B56D;
    border: 1px solid #4FAB67;
    color: #fff;
    text-align: left;
    line-height: 26px;
    padding: 16px 30px;
    margin-bottom: 12px;
    width:100%;
    text-align: center;

    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}


/* Account navigation
----------------------------------------------------------*/

main .woocommerce-MyAccount-navigation{
    margin-bottom: 45px;
}

main .woocommerce-MyAccount-navigation ul{
    display: flex;
    flex-flow: wrap;
    background: #F2EDDD;
}

main .woocommerce-MyAccount-navigation ul li{
    padding: 0px;
}

main .woocommerce-MyAccount-navigation ul li::before{
    display: none;
}

main .woocommerce-MyAccount-navigation ul li a{
    display: block;
    padding: 13px 45px;
    color: #000000 !important;
    text-decoration: none;
    transition: all 0.1s ease;
}

main .woocommerce-MyAccount-navigation ul li.is-active a,
main .woocommerce-MyAccount-navigation ul li a:hover{
    background: #D8D1BB;
}

/* Dashboard
----------------------------------------------------------*/

.dashboard-container{
    width: 50%;
}

/* Account address
----------------------------------------------------------*/

.woocommerce-Address .button{
    margin-top: 15px;
}

/* Account orders
----------------------------------------------------------*/

.woocommerce .shop_table{
    width: 100%;
    margin-bottom: 45px;
}

.woocommerce .shop_table thead tr th{
    padding: 12px 18px;
    font-weight: bold;
}

.woocommerce .shop_table tbody tr th,
.woocommerce .shop_table tbody tr td{
    padding: 12px 18px;
    /* vertical-align: top; */
}

.woocommerce .shop_table tbody tr:nth-child(odd) th,
.woocommerce .shop_table tbody tr:nth-child(odd) td{
    background: #FBFAF5;
}

.woocommerce .shop_table tbody tr td.product-total{
    width: 400px;
}

.woocommerce .shop_table tfoot tr th,
.woocommerce .shop_table tfoot tr td{
    padding: 12px 18px;
    vertical-align: top;
}

/* .woocommerce .shop_table tfoot tr th{
    text-align: right;
    font-weight: bold;
} */

/* .woocommerce .shop_table tfoot tr:first-child th,
.woocommerce .shop_table tfoot tr:first-child td{
    border-top: 30px solid #fff;
} */

.woocommerce .shop_table tfoot tr:nth-child(odd) th,
.woocommerce .shop_table tfoot tr:nth-child(odd) td{
    background: #FBFAF5;
}

.woocommerce .shop_table thead tr th:last-child,
.woocommerce .shop_table tbody tr td:last-child,
.woocommerce .shop_table tfoot tr td:last-child{
    text-align: right;
}

.woocommerce-orders-table__cell-order-actions{
    direction: rtl;
}

.woocommerce-orders-table__cell-order-actions .button:not(:first-child){
    margin-right: 10px;
}

.woocommerce-orders-table__cell-order-actions .button{
    padding: 12px 15px;
}

.woocommerce .includes_tax{
    display: block;
    color: #596572;
}

.woocommerce mark {
    background-color: transparent !important;
    font-weight: bold;
}

.woocommerce .order-again{
    margin-bottom: 45px;
}

/* Cart
----------------------------------------------------------*/

main .woocommerce .product-thumbnail{
    width: 120px;
}

main .woocommerce .product-thumbnail img{
    max-height: 75px;
    width: auto;
}

main .woocommerce .product-name a{
    font-family: "Dosis", sans-serif;
    font-size: 18px;
    color: #000000 !important;
    text-decoration: none;
}

main .woocommerce .product-quantity{
    width: 120px;
}

main .woocommerce .product-remove{
    width: 50px;
}

main .woocommerce .product-quantity .wac-quantity{
    background: #F2EDDD;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    -webkit-border-radius: 23px;
    -moz-border-radius: 23px;
    border-radius: 23px;
}

main .woocommerce .product-quantity .wac-quantity .input-text{
    width: 50px;
    min-width: auto;
    text-align: center;
    background: transparent;
    border: 0px;
    line-height: 22px;
    padding: 12px 0px 12px 10px;
}

main .woocommerce .product-quantity .wac-quantity .wac-qty-button{
    background: transparent;
    padding: 12px 18px;
    line-height: 22px;
    font-family: "Dosis", sans-serif;
    font-size: 18px !important;
    font-weight: normal;
    width: 50px;
    position: relative;
    color: #47422F;
}

main .woocommerce .product-quantity .wac-quantity .wac-qty-button::before{
    position: absolute;
    pointer-events: none;
    background: #F2EDDD;
    font-family: "Font Awesome 5 Pro";
    left: 18px;
}

main .woocommerce .product-quantity .wac-quantity .wac-qty-button.wac-btn-sub::before{
    content: "\f068";
}

main .woocommerce .product-quantity .wac-quantity .wac-qty-button.wac-btn-inc::before{
    content: "\f067";
}

main .woocommerce .product-subtotal{
    font-size: 18px;
}

main .woocommerce .coupon .button{
    white-space: nowrap;
}

main .woocommerce .coupon label{
    margin-right: 30px;
}

main .woocommerce .button[name='update_cart']{
    display: none;
}

main .woocommerce .cart-collaterals,
main .woocommerce .woocommerce-checkout-payment{
    float: right;
    width: 50%;
}

main .woocommerce .cart-collaterals .woocommerce-shipping-methods{
    margin-bottom: 0px;
}

main .woocommerce .cart-collaterals .woocommerce-shipping-methods li::before{
    display: none;
}

main .woocommerce .cart-collaterals .woocommerce-shipping-destination{
    display: none;
}

main .woocommerce .cart-collaterals .woocommerce-shipping-methods li{
    text-align: left;
    margin-bottom: 5px;
}

main .woocommerce .cart-collaterals .woocommerce-shipping-methods li input[type="radio"]{
    position: absolute;
    margin-top: 6px;
}

main .woocommerce .cart-collaterals .woocommerce-shipping-methods li label{
    display: block;
    padding-left: 30px;
}

main .woocommerce .cart-collaterals .woocommerce-shipping-methods li label::after{
    content: '';
    clear: both;
    display: block;
}

main .woocommerce .cart-collaterals .woocommerce-shipping-methods li label .woocommerce-Price-amount{
    float: right;
}

main .woocommerce .dhlpwc-shipping-method-parcelshop-option{
    margin-top: 8px;
}

main .woocommerce input.dhlpwc-parcelshop-option-change{
    padding: 0px !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #e71b23 !important;
    text-decoration: underline !important;
    font-family: "Dosis", sans-serif !important;
    font-size: 16px !important;
    cursor: pointer;
}

main .woocommerce input.dhlpwc-parcelshop-option-change:hover{
    text-decoration: none !important;
}

main .woocommerce .dhlpwc_notice{
    color: #596572;
}

main .woocommerce .cart-collaterals .checkout-button,
main .woocommerce .woocommerce-checkout-payment .button{
    width: 100%;
}


main .woocommerce .woocommerce-info.wc_points_rewards_earn_points{
    background: #FBFAF5;
    border: 1px solid #F2EDDD;
    text-align: center;
    line-height: 26px;
    padding: 16px 30px;
    margin-bottom: 28px;

    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

main .woocommerce .woocommerce-info.wc_points_rewards_earn_points strong{
    font-weight: normal;
}

main .woocommerce .woocommerce-info.wc_points_redeem_earn_points{
    margin-bottom: 28px;
    text-align: center;
    width:100%;

    background: #FBFAF5;
    border: 1px solid #F2EDDD;
    text-align: center;
    line-height: 26px;
    padding: 16px 30px;
    margin-bottom: 28px;

    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

main .woocommerce .woocommerce-info.wc_points_redeem_earn_points .button{
    margin-top: 0px;
    margin-left: 30px;
}

main .woocommerce .woocommerce-info.wc_points_redeem_earn_points strong{
    font-weight: normal;
}

/* Checkout
----------------------------------------------------------*/

main .woocommerce .woocommerce-form-coupon-toggle{
    background: #FBFAF5;
    border: 1px solid #F2EDDD;
    text-align: center;
    line-height: 26px;
    padding: 16px 30px;
    margin-bottom: 28px;

    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

main .woocommerce .checkout_coupon.woocommerce-form-coupon .button{
    margin-top: 0px;
    white-space: nowrap;
}

form .form-row.notes .woocommerce-input-wrapper{
    width: 100%;
    display: block;
}

main .woocommerce #order_review_heading{
    margin-top: 55px;
}

main .woocommerce .woocommerce-checkout-payment li{
    padding: 12px 18px;
}

main .woocommerce .woocommerce-checkout-payment li::before{
    content: "";
}

main .woocommerce .woocommerce-checkout-payment li.wc_payment_method:nth-child(odd){
    background: #FBFAF5;
}

main .woocommerce .woocommerce-checkout-payment li input[type="radio"] {
    position: absolute;
    margin-top: 6px;
}

main .woocommerce .woocommerce-checkout-payment li label{
    display: block;
    padding-left: 30px;
}

main .woocommerce .woocommerce-checkout-payment li label img{
    max-width: 36px;
    position: absolute;
    right: 18px;
    top: 12px;
}

main .woocommerce .woocommerce-checkout-payment li .payment_box {
    margin-top: 8px;
}

main .woocommerce .woocommerce-terms-and-conditions-wrapper > *{
    margin: 18px 0px;
}

main .woocommerce .form-row input[type="checkbox"]{
    width: auto;
}/**
 * Swiper 6.5.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2021 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: March 5, 2021
 */

@font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA') format('woff');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper-container{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-container-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-container-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-container-multirow>.swiper-wrapper{flex-wrap:wrap}.swiper-container-multirow-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-container-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-container-pointer-events{touch-action:pan-y}.swiper-container-pointer-events.swiper-container-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-container-autoheight,.swiper-container-autoheight .swiper-slide{height:auto}.swiper-container-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-container-3d{perspective:1200px}.swiper-container-3d .swiper-cube-shadow,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-container-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-container-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-container-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-container-horizontal.swiper-container-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-container-vertical.swiper-container-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(-1 * var(--swiper-navigation-size)/ 2);z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;text-transform:none;font-variant:initial;line-height:1}.swiper-button-prev,.swiper-container-rtl .swiper-button-next{left:10px;right:auto}.swiper-button-prev:after,.swiper-container-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-container-rtl .swiper-button-prev{right:10px;left:auto}.swiper-button-next:after,.swiper-container-rtl .swiper-button-prev:after{content:'next'}.swiper-button-next.swiper-button-white,.swiper-button-prev.swiper-button-white{--swiper-navigation-color:#ffffff}.swiper-button-next.swiper-button-black,.swiper-button-prev.swiper-button-black{--swiper-navigation-color:#000000}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-container-horizontal>.swiper-pagination-bullets,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:8px;height:8px;display:inline-block;border-radius:50%;background:#000;opacity:.2}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;-moz-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet-active{opacity:1;background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-container-vertical>.swiper-pagination-bullets{right:10px;top:50%;transform:translate3d(0px,-50%,0)}.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:6px 0;display:block}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 4px}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-container-horizontal>.swiper-pagination-progressbar,.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-container-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-white{--swiper-pagination-color:#ffffff}.swiper-pagination-black{--swiper-pagination-color:#000000}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-container-horizontal>.swiper-scrollbar{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-container-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;animation:swiper-preloader-spin 1s infinite linear;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{100%{transform:rotate(360deg)}}.swiper-container .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-container-fade.swiper-container-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-container-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-container-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-fade .swiper-slide-active,.swiper-container-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube{overflow:visible}.swiper-container-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-container-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-cube.swiper-container-rtl .swiper-slide{transform-origin:100% 0}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-next,.swiper-container-cube .swiper-slide-next+.swiper-slide,.swiper-container-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-container-cube .swiper-slide-shadow-bottom,.swiper-container-cube .swiper-slide-shadow-left,.swiper-container-cube .swiper-slide-shadow-right,.swiper-container-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-container-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-container-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;-webkit-filter:blur(50px);filter:blur(50px)}.swiper-container-flip{overflow:visible}.swiper-container-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-container-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-flip .swiper-slide-active,.swiper-container-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-flip .swiper-slide-shadow-bottom,.swiper-container-flip .swiper-slide-shadow-left,.swiper-container-flip .swiper-slide-shadow-right,.swiper-container-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}/*
	© FUZE Framework - Ebbers Media BV
*/

@media handheld, screen and (max-width: 1380px) {
	.colfull{
		padding: 0px 20px;
	}

	section.content.author .colfull.wide{
		padding: 0px;
	}

	#header .bottom-header .inner-bottom-header{
		padding-left: 235px;
	}

	footer .top-footer .bottom .snackfinder .button{
		float: left;
	}

	div#posts-products article.product-item .product-item-inner{
		grid-template-rows: 1fr 158px;
	}

	div#posts-products article.product-item form .atc-container{
		grid-template-columns: 1fr 50px;
	}

	div#posts-products article.product-item .price,
	div#posts-products article.product-item .sale_price{
		grid-column: 1/-1;
	}
	
}

@media handheld, screen and (max-width: 1150px) {

	#header .top-header .top-nav .resnav-opener{
		display: block;
		color: #ffffff;
		line-height: 38px;
		font-size: 14px;
		cursor: pointer;
	}

	#header .top-header .top-nav .menu-top-menu-container{
		display: none;
	}

	#header .search-header #searchform{
		margin-left: 240px;
		width: calc(100% - 520px);
	}

	#header .bottom-header .inner-bottom-header > ul > li:not(:first-child){
		margin-left: 45px;
	}

	section.content.categories ul li{
		padding: 23px 0px;
	}

	section.product-single-top .product-single-top-column .product-atc{
		width: 100%;
	}
	
	footer .top-footer .bottom ul.category-nav li:not(:last-child){
		margin-right: 35px;
	}

	footer .bottom-footer .top .newsletter{
		padding-left: 35px;
	}
}

@media handheld, screen and (max-width: 1024px) {
	#header .search-header #searchform{
		width: calc(100% - 440px);
	}

	#header .search-header .right-search-header{
		width: 180px;
	}

	#header .search-header .right-search-header > ul > li.page-account a span.label{
		display: none;
	}

	#header .search-header .right-search-header > ul > li:not(:first-child){
		margin-right: 24px;
	}

	.colfull.small{
		width: 75%;
		min-width: 484px;
	}

	section.content.threecolumn article a span{
		font-size: 20px;
		line-height: 30px;
	}

	section.content.contenthalf.image.alt .colfull .content{
		padding: 30px 60px 30px 30px;
	}
	section.content.contenthalf.image.alt .colfull img {
    	max-width: calc(100vw - 10px);
	}

	section.content.contenthalf.nieuws .colfull .content{
		padding: 30px 30px 30px 60px;
	}

	section.content.contenthalf.image .colfull .content{
		margin-top: 80px;
	}

	section.content.contenthalf .colfull .nieuw-container{
		margin-top: 150px;
	}

	section.content.product-highlight{
		padding-top: 0px;
	}

	section.content.contenthalf + section.content.nieuws{
		padding-top: 0px;
	}

	section.content.contenthalf.alt .colfull picture, 
	section.content.contenthalf.alt .colfull .nieuw-container{
		left: -30px;
	}

	section.content.contenthalf .colfull .nieuw-container > div,
	section.content.contenthalf .colfull picture img{
		width: calc(100% + 30px);
	}

	section.content.contenthalf .colfull .nieuw-container div#posts-nieuws{
		flex-flow: row-reverse;
	}

	section.content.contenthalf .colfull .nieuw-container div#posts-nieuws article.nieuw-item{
		width: calc(100% - 20px) !important;
		max-width: 350px;
		float: right;
	}

	section.content.contenthalf .colfull .nieuw-container div#posts-nieuws article.nieuw-item:last-child{
		display: none;
	}

	section.product-single-top .product-single-top-column > div{
		width: calc(50% - 30px);
	}

	section.product-single-top .product-single-top-column .product-atc .variation_input{
		display: block;
	}

	section.product-single-top .product-single-top-column .product-atc .variation_input .label,
	section.product-single-top .product-single-top-column .product-atc .variation_input .input{
		width: 100%;
	}
	

	section.product-single-top .product-single-top-column .product-atc .button[type="submit"]{
		width: calc(100% - 70px);
	}

	section.product-single-top .product-single-top-column .product-atc .add-to-favorite{
		width: 54px;
		padding: 12px 0px;
	}

	section.product-single-top .product-single-top-column .product-atc .add-to-favorite i{
		margin: 0px;
	}

	section.product-single-top .product-single-top-column .product-atc .add-to-favorite span{
		display: none;
	}

	section.product-single-top .product-single-top-column .product_usp {
		width: calc(200% + 60px);
		margin-left: calc(-100% - 60px);
	}

	section.product-single-top .product-single-top-column .product_usp ul{
		justify-content: space-evenly;
	}

	section.product-single-bottom .colfull + .colfull,
	section.product-single-bottom .colfull .attributes .product-share{
		padding-top: 30px;
	}

	section.product-single-bottom .colfull .usp, 
	section.product-single-bottom .colfull .attributes{
		width: 50%;
		padding-right: 15px;
	}

	section.product-single-bottom .colfull .description, 
	section.product-single-bottom .colfull .reviews{
		width: 50%;
		padding-left: 15px;
	}

	section.product-single-bottom .colfull .reviews article{
		display: block;
		padding: 15px;
	}

	section.product-single-bottom .colfull .reviews article .left{
		margin-bottom: 15px;
	}

	section.product-single-bottom .colfull .reviews article .left,
	section.product-single-bottom .colfull .reviews article .right{
		width: 100%;
	}

	section.product-single-atc .colfull{
		max-width: 75%;
	}

	section.product-single-atc .colfull > .inner{
		padding: 30px;
	}

	section.content.shop .colfull .shop-container .sidebar{
		width: calc(25% - 0px);
	}

	section.content.shop .colfull .shop-container .sidebar .inner{
		padding: 20px 20px 0px;
		margin-bottom: 0px;
	}

	section.content.shop .colfull .shop-container .sidebar .filter-element:not(:first-child) {
		margin-top: 20px;
	}

	section.content.shop .colfull .shop-container .sidebar .inner .filter-footer .button{
		padding: 12px 20px;
	}

	section.content.shop .colfull .shop-container .content{
		width: calc(75% - 20px);
	}

	section.content.shop .colfull .shop-container .content .categorie-info .image{
		display: none;
	}

	section.content.shop .colfull .shop-container .content .categorie-info .text{
		padding-right: 0px;
	}
	
	section.content.shop + section.content.snackfinder-cta .colfull .inner{
		padding-left: 0px;
	}

	section.content.shop + section.content.snackfinder-cta + section.content.nieuws .colfull .inner{
		padding-left: 0px;
	}

	div#posts-products .products-inner{
		width: calc(100% + 20px);
		margin-left: -10px;
	}

	div#posts-products article.product-item {
    	width: calc(33.33% - 20px);
		margin: 0px 10px 20px;
	}

	div#posts-products article.product-item .product-item-inner{
		padding: 10px 20px 20px;
	}

	div#posts-products article.product-item a .stock_container{
		display: none;
	}

	/* div#posts-products article.product-item form .product_weight{
		width: calc(100% - 60px);
	} */
	
}

@media handheld, screen and (max-width: 980px) {
	main {
		margin-top: 158px;
	}

	#header .top-header #logo,
	#header .top-header #logo img{
		transform: skewY(0deg);
	}

	#header .top-header #logo{
		margin-top: 0px;
		bottom: -76px;
		margin-left: -30px;
		height: 75px;
		transform: skewX(-5deg);
		padding: 11px 20px 12px 30px;
	}

	#header .top-header #logo img{
		transform: skewX(5deg);
		width: 117px;
	}

	#header .top-header .notification,
	#header .top-header .top-nav .resnav-opener,
	#header .top-header ul#menu-top-menu > li > a{
		line-height: 32px;
	}

	#header .search-header #searchform {
		margin-left: 170px;
		width: calc(100% - 380px);
	}

	#header .bottom-header .inner-bottom-header{
		padding-left: 20px;
	}

	/* div#posts-products article.product-item form.product-atc{
		display: none;
	} */

	section.content.header .breadcrumb{
		margin-top: 15px;
	}

	section.content.header .flexbox{
		min-height: 280px;
	}

	section.content.product-highlight #posts-products{
		overflow-x: scroll;
		overflow-y: hidden;
		margin-left: -20px;
		margin-right: -20px;
	}

	section.content.product-highlight #posts-products .products-inner{
		width: 980px;
		padding: 0px 20px;
	}

	section.content.category .columns.columns-2 .column{
		width: calc(50% - 10px);
	}

	section.content.faq .category-container ul {
		grid-template-columns: calc(50% - 10px) calc(50% - 10px);
		gap: 20px;
	}

	footer .bottom-footer .top .newsletter input[type="email"] {
		width: calc(100% - 125px);
	}

	footer .bottom-footer .top .newsletter .button{
		padding: 12px 20px;
		width: 120px;
	}

	footer .bottom-footer .bottom .divide.twoThird{
		display: block;
		padding: 25px 0px;
	}

	footer .bottom-footer .bottom > div .colomn.klantvertellen{
		padding: 0px;
		padding-bottom: 15px;
	}

	footer .bottom-footer .bottom > div .colomn.legal-menu li a{
		padding: 0px;
	}


	div#posts-products article.product-item .label span::after{
		display: none;
	}
}

@media handheld, screen and (max-width: 900px) {
	section.content.heroimage .container-klantvertellen{
		display: none;
	}

	#header .top-header .inner-top-header{
		display: block;
	}

	#header .top-header .notification{
		margin-left: 0px;
		line-height: 20px;
		padding: 6px 0px;
	}

	#header .top-header .top-nav .resnav-opener{
		display: none;
	}
	

	#header .top-header ul#menu-top-menu{
		display: none;
	}

	#header .search-header #searchform .resnav-opener{
		display: block;
		line-height: 50px;
		color: #fff;
		margin-right: 30px;
		cursor: pointer;
	}

	#header .search-header #searchform {
		width: calc(100% - 330px);
	}

	#header .search-header .right-search-header {
		width: 145px;
	}

	/* #header .search-header .right-search-header > ul > li:not(:first-child){
		margin-right: 25px;
	} */

	#header .search-header .right-search-header > ul > li.page-cart > a .cart_total{
		display: none;
	}

	#header .bottom-header{
		display: none;
	}

	main {
		margin-top: 88px;
	}
}

@media handheld, screen and (max-width: 800px) {
	section.content.categories ul li{
		max-width: calc(20% - 20px);
	}
}

@media handheld, screen and (max-width: 768px) {
	main {
		margin-top: 110px;
	}

	h1 {
		font-size: 30px;
		line-height: 40px;
	}

	h2 {
		font-size: 24px;
		line-height: 36px;
	}

	h3 {
		font-size: 20px;
		line-height: 30px;
	}

	h4 {
		font-size: 16px;
		line-height: 26px;
	}

	section.content.header{
		margin-bottom: 36px;
	}

	section.content.header .flexbox{
		min-height: 220px;
	}

	section.content.header .title{
		font-size: 30px;
		line-height: 40px;
	}

	section.content.header .image-1,
	section.content.header .image-2,
	section.content.header .image-3{
		display: none;
	}

	section.content.basic.image,
	section.content.basic {
		margin-bottom: 44px;
	}

	section.content.basic.quote blockquote{
		margin: -6px 10px;
	}

	section.content.shop .colfull .shop-container .sidebar{
		position: fixed;
		z-index: 999;
		width: 100%;
		background: rgba(0,0,0,0.3);
		left: 0px;
		top: 0px;
		margin-top: 0px;
		padding: 0px;
		max-height: 100vh;
		overflow-y: scroll;
		overflow-x: hidden;
		margin-bottom: 0px;
		transition: all 0.3s ease;

		opacity: 0;
		visibility: hidden;
	}

	body.filter-open section.content.shop .colfull .shop-container .sidebar{
		opacity: 1;
		visibility: visible;
	}

	section.content.shop .colfull .shop-container .sidebar .inner{
		border: 0px;
		padding-bottom: 80px;
		padding-bottom: calc(80px + env(safe-area-inset-bottom));
		-webkit-border-radius: 0px;
		-moz-border-radius: 0px;
		border-radius: 0px;
	}

	section.content.shop .colfull .shop-container .sidebar .inner .filter-top,
	section.content.shop .colfull .shop-container .sidebar .inner .filter-footer-button{
		display: block;
	}

	section.content.shop .colfull .shop-container .sidebar .inner .filter-footer::after{
		content: "";
		display: block;
		clear: both;
	}

	section.content.shop .colfull .shop-container .sidebar .inner .filter-footer > img{
		float: right;
		max-width: 50%;
	}

	section.content.shop .colfull .shop-container .content{
		width: 100%;
	}

	section.content.shop .colfull .shop-container .content .filter-info {
		display: flex;
		flex-flow: wrap;
	}

	section.content.shop .colfull .shop-container .content .filter-info .res-filters{
    	display: block;
	}

	section.content.shop .colfull .shop-container .content .filter-info .selected-filters {
    	width: 100%;
	}

	section.content.shop .colfull .shop-container .content .filter-info .selected-filters span.label{
		margin-top: 20px;
	}

	section.content.snackfinder .stappen{
		margin-top: 0px;
    	margin-bottom: 22px;
	}

	div#pagination.mobile{
		display: block;
	}

	div#pagination.desktop{
		display: none;
	}

	div#pagination ul li > span{
		line-height: 39px;
		min-width: 45px;
		height: 45px;
		margin: 0px 2px 4px;
		padding: 0px 10px;
	}

	div#pagination.mobile ul li > span span{
		display: none;
	}

	div#pagination.mobile ul li > span i{
		display: block;
		line-height: 39px;
	}

	section#contactform {
		grid-template-columns: 1fr 150px;
	}

	section.product-single-top .product-single-top-column .product-information{
		margin-top: 45px;
	}
	
	footer .bottom-footer .top .newsletter input[type="email"] {
		width: 100%;
	}

	footer .bottom-footer .top .newsletter .button{
		width: 100%;
		margin-top: 5px;
	}
}

@media handheld, screen and (max-width: 767px) {

	section.content.heroimage{
		padding-top: 70px;
		padding-bottom: 120px;
	}

	section.content.categories{
		border: 0px;
		padding-bottom: 0px;
	}

	section.content.categories ul{
		display: block;
    	justify-content: normal;
	}

	section.content.categories ul li{
		position: relative;
		width: 100%;
		max-width: 100%;
		padding: 0px;
		border-bottom: 1px solid #F2F2F2;
	}

	section.content.categories ul li a{
		display: flex;
		flex-flow: wrap;
		padding: 12px 0px;
	}

	section.content.categories ul li a img{
		width: 60px;
		height: 26px;
		margin-right: 20px;
	}

	section.content.categories ul li a span{
		margin-top: 0px;
	}

	section.content.categories ul li a span::after{
		position: absolute;
		right: 10px;
	}

	section.content.usp ul{
		display: block;
		justify-content: normal;
		padding: 15px 0px 25px;
	}

	section.content.usp ul li{
		padding: 5px 10px 5px 26px;
	}

	section.content.threecolumn{
		overflow-x: scroll;
		overflow-y: hidden;
		padding-bottom: 15px;
	}

	section.content.threecolumn .colfull{
		width: 900px;
	}

	section.content.contenthalf{
		padding-bottom: 40px;
	}

	section.content.contenthalf .colfull picture, 
	section.content.contenthalf .colfull .nieuw-container,
	section.content.contenthalf .colfull .content{
		float: none !important;
	}

	section.content.contenthalf .colfull .content{
		width: calc(100% - 20px);
		margin-bottom: 0px;
	}

	section.content.contenthalf.image.alt .colfull .content{
		margin-top: -70px;
		margin-left: 20px;
		padding: 90px 30px 30px 30px;
	}

	section.content.contenthalf.nieuws .colfull .content{
		margin-top: 0px;
		padding: 30px 30px 90px 30px;
	}

	section.content.contenthalf.alt .colfull picture, 
	section.content.contenthalf.alt .colfull .nieuw-container{
		left: 0px;
	}

	section.content.contenthalf .colfull picture img{
    	width: calc(100% - 20px);
	}

	section.content.contenthalf .colfull .nieuw-container{
		width: 100%;
		margin-top: -50px;
	}

	section.content.contenthalf .colfull .nieuw-container > div{
		width: 100%;
	}

	section.content.reviews h2 img{
		left: calc(100% - 60px);
		bottom: 40px;
		width: 120px;
	}

	section.content.product-highlight{
		padding-top: 40px;
		padding-bottom: 40px;
	}

	section.content.product-highlight #posts-products{
		margin-top: 15px;
	}

	section.content.author .colfull.wide{
		display: block;
	}

	section.content.author .colfull.wide .divide{
		width: 100%;
	}

	section.content.author .colfull.wide .twoThird{
		padding: 30px 20px 0px 20px;
	}

	section.content.author .colfull.wide .third{
		display: flex;
		justify-content: space-between;
		padding: 0px 20px 0px 20px;
	}

	section.content.author .colfull.wide .third > img{
		position: relative;
	}

	section.content.author .colfull.wide .third span.label{
		margin-top: 50px;
		margin-left: 50px;
	}

	section.product-single-top .product-single-top-column{
		display: block;
	}

	section.product-single-top .product-single-top-column > div{
		width: 100%;
	}

	section.product-single-top .product-single-top-column .product_usp{
		width: 100%;
    	margin-left: 0px;
	}

	section.product-single-bottom{
		padding-bottom: 30px;
		padding-top: 60px;
	}

	section.product-single-bottom .colfull{
		display: block;
	}

	section.product-single-bottom .colfull + .colfull{
		padding-top: 0px;
	}

	section.product-single-bottom .colfull .usp, 
	section.product-single-bottom .colfull .attributes,
	section.product-single-bottom .colfull .description, 
	section.product-single-bottom .colfull .reviews{
		width: 100%;
		padding-right: 0px;
		padding-left: 0px;
		margin-bottom: 30px;
	}

	section.product-single-bottom .colfull .reviews #review_form_wrapper{
		margin-top: 30px;
	}

	section.product-single-bottom .colfull .attributes ul li span:first-child,
	section.product-single-bottom .colfull .attributes ul li span{
		width: 50%;
	}

	section.product-single-atc .colfull{
		max-width: 100%;
	}

	section.product-single-atc .colfull > .inner{
		padding: 15px;
	}

	section.product-single-atc .colfull > .inner h3{
		margin-bottom: 15px;
	}

	section.product-single-atc .colfull > .inner .product-atc .variation_input{
		display: block;
	}

	section.product-single-atc .colfull > .inner .product-atc .variation_input .label,
	section.product-single-atc .colfull > .inner .product-atc .variation_input .input{
		width: 100%;
	}
	

	section.content.snackfinder-cta{
		padding-top: 60px;
	}

	section.content.category .columns{
		display: block;
	}

	section.content.category .columns.columns-2 .column{
		width: 100%;
	}

	section.content.category .columns.columns-2 .column:last-child{
		margin-top: 20px;
	}

	section.content.snackfinder .step ul {
		width: calc(100% + 20px);
		margin-left: -10px;
	}

	section.content.snackfinder .step ul li{
		width: calc(33.33% - 20px);
		margin: 0px 10px;
	}

	section.content.snackfinder .step ul li label > span{
    	padding: 15px;
	}

	section.content.snackfinder .step ul li label > span img {
		margin-bottom: 15px;
		height: 50px;
	}

	section.content.shop + section.content.snackfinder-cta + section.content.nieuws{
		padding-top: 60px;
	}

	section.content.shop .colfull .shop-container .sidebar .inner .filter-footer .label{
		position: absolute;
		right: 200px;
	}

	footer .top-footer .top ul{
		display: block;
	}

	footer .top-footer .bottom {
		padding: 15px 0px 30px;
	}

	footer .top-footer .bottom .divide{
		width: 100%;
	}

	footer .top-footer .bottom ul.category-nav li a{
		line-height: 36px;
		font-size: 16px;
	}

	footer .top-footer .bottom .divide.snackfinder{
		
	}

	footer .top-footer .bottom .snackfinder span{
		font-size: 16px;
		line-height: 36px;
		padding-bottom: 8px;
    	display: block;
	}

	footer .bottom-footer{
		padding-top: 30px;
	}

	footer .bottom-footer .top .colfull{
		flex-wrap: wrap-reverse;
	}

	footer .bottom-footer .bottom-footer-top-left-container{
		width: 100%;
	}

	footer .bottom-footer .top .newsletter{
		width: 100%;
		padding-left: 0px;
		margin-bottom: 30px;
	}

	footer .bottom-footer .top .newsletter .klantvertellen{
		display: none;
	}

	footer .bottom-footer .bottom > div{
		display: block;
	}

	footer .bottom-footer .bottom .divide.twoThird{
		width: 100%;
	}
}

@media handheld, screen and (max-width: 750px) {
	div#posts-products .no-products-found{
		margin-left: 10px;
		margin-right: 10px;
	}

	body.popup-open .popup .popup-inner{
		max-width: calc(100% - 40px);
		padding: 30px;
	}
}

@media handheld, screen and (max-width: 660px) {

	main .notification,
	main .woocommerce-notices-wrapper .woocommerce-error{
		padding: 12px 20px 12px 40px;
		font-size: 16px;
		line-height: 24px;

		margin-bottom: 12px;
	}

	main .notification::before,
	main .woocommerce-notices-wrapper .woocommerce-error::before {
		left: 20px;
	}

	main .search-mobile{
		display: block;
	}

	#header .search-header #searchform{
		margin: 12.5px 0px 12.5px;
		margin-left: 170px;
	}

	#header .search-header #searchform form{
		display: none;
	}


	
	div#posts-products article.product-item {
    	width: calc(50% - 20px);
	}

	div#posts-products article.product-item{
		/* padding: 15px 16px 16px; */
	}

	div#posts-products article.product-item .product-item-inner{
		grid-template-rows: 1fr 135px;
	}

	div#posts-products article.product-item form select.product_weight{
		height: 50px;
		line-height: 42px;	
		padding: 0px 10px;
	}

	div#posts-products article.product-item form .atc-container input[type="number"] {
		height: 42px;
		padding-right: 0;
	}
	
	div#posts-products article.product-item form .button{
		height: 42px;
	}

	div#posts-products article.product-item form .atc-container .quantity-nav {
		display: none;
	}

	div#posts-products article.product-item form .atc-container .quantity-nav .quantity-button {
		height: 14px;
		line-height: 14px;
	}

	div#posts-products article.product-item form .atc-container{
		display: grid;
		gap: 6px;
		grid-template-columns: 1fr 42px;
	}
	
	div#posts-products article.product-item form .button {
		padding: 6px;
	}

	div#posts-products article.product-item form .button img{
		width: 18px;
	}

	div#posts-products article.product-item .sale_price,
	div#posts-products article.product-item .price{
		height: 36px;
		padding-top: 3px;
		padding-bottom: 3px;
	}

	section.content.shop .colfull:first-child{
		padding-top: 30px;
	}

	section.content.header .breadcrumb, 
	section.content.shop .breadcrumb, 
	section.product-single-top .breadcrumb{
		top: 10px;
	}

	section.content.breadcrumb .breadcrumb{
		margin-top: 10px;
		top: 0px;
	}

	section.content.threecolumn{
		padding-top: 40px;
		padding-bottom: 0px;
	}

	section.content.threecolumn article{
		max-width: calc(33.33% - 15px);
	}

	section.content.threecolumn div#posts-products .products-inner{
		margin-left: -7.5px;
	}

	section.content.product-highlight div#posts-products article.product-item {
		width: calc(25% - 15px);
		margin: 0px 7.5px 15px;
	}

	section.content.threecolumn div#posts-products article.product-item .product-item-inner{
		padding: 15px;
	}

	section.product-single-top .product-single-top-column .product_usp ul{
		display: block;
	}

	section.product-single-top .product-single-top-column .product_usp ul li:not(:first-child){
		margin-left: 0px;
		margin-top: 15px;
	}

	div#posts-nieuws article.nieuw-item {
		width: calc(50% - 15px);
	}

	section#contactform {
		display: grid;
		grid-template-columns: 1fr;
	}

	section#contactform .formillustration{
		display: none;
	}

	footer .top-footer .bottom .divide.snackfinder .button{
		width: 100%;
	}

	footer .bottom-footer .bottom > div .colomn.legal-menu li:not(:last-child){
		margin-right: 24px;
	}
}

@media handheld, screen and (max-width: 575px) {
	section.content.snackfinder .step ul{
		display: block;
		width: 100%;
		margin: 0px;
	}

	section.content.snackfinder .step ul li {
		width: 100%;
		margin: 10px 0px;
	}

	section.content.snackfinder .step ul li label > span{
		display: flex;
		flex-flow: wrap;
		justify-content: left;
		text-align: left;
	}

	section.content.snackfinder .step ul li label > span span{
		display: block;
		line-height: 24px;
		padding: 13px 0px;
	}

	section.content.snackfinder .step ul li label > span img{
		width: 50px;
		height: 50px;
		margin: 0px;
		margin-right: 20px;
	}

	body.popup-open .popup .popup-inner{
		padding: 50px 16px 16px;
	}

	.popup .popup-inner .button{
		width: 100%;

	}

	.popup .popup-inner .button:first-child{
		margin-bottom: 8px;
	}
}

@media handheld, screen and (max-width: 525px) {
	.colfull.small{
		width: calc(100% - 30px);
		min-width: 0px;
	}

	section.content.shop .colfull .shop-container .content .filter-info .res-filters,
	section.content.shop .colfull .shop-container .content .filter-info .order-filters{
		width: 50%;
	}

	section.content.shop .colfull .shop-container .content .filter-info .res-filters{
		padding-right: 5px;
	}
	
	section.content.shop .colfull .shop-container .content .filter-info .order-filters{
		padding-left: 5px;
	}

	section.content.shop .colfull .shop-container .content .filter-info .res-filters .button,
	section.content.shop .colfull .shop-container .content .filter-info .order-filters select{
		width: 100%;
		margin-left: 0px;
	}

	section.content.shop .colfull .shop-container .content .filter-info .order-filters span.label{
		display: none;
	}

	div#posts-products .no-products-found,
	section.content.snackfinder-cta .bottom-content{
		padding: 20px 20px;
	}

	div#posts-products .no-products-found .button{
		display: block;
	}

	div#posts-nieuws article.nieuw-item {
		width: 100%;
	}

	section.content.snackfinder-cta .bottom-content .button{
		width: 100%;
		margin-top: 20px;
	}

	section.content.snackfinder-cta .bottom-content .image-1{
		position: relative;
		bottom: 0px;
		margin-top: 20px;
		margin-bottom: -43px;
		width: 94px;
	}

	section.content.snackfinder .stappen{
		display: none;
	}

	section.content.reviews a.buttonlink {
		display: block;
		padding-left: 0px;
		margin-top: 0.5em;
	}
}

@media handheld, screen and (max-width: 480px) {
	.colfull {
		padding: 0px 10px;
	}

	#header .top-header #logo{
		background: #d5171f;
		margin-left: 35px;
		transform: skewX(-5deg);
		padding: 11px 0px 12px;
	}

	#header .top-header #logo img {
		transform: skewX(5deg);
	}

	#header .search-header #searchform{
		margin-left: 0px;
	}

	#header .search-header #searchform .resnav-opener{
		margin-right: 0px;
	}

	main .search-mobile {
		padding: 9px 10px;
	}

	main .search-mobile .dgwt-wcas-preloader,
	main .search-mobile button[type="submit"]{
		right: 10px;
	}

	section.content.product-highlight #posts-products .products-inner {
		width: 850px;
	}

	section.content.author .colfull.wide .third span.label{
		margin-top: 50px;
		margin-left: 0px;
	}

	section.content.author .colfull.wide .third > img{
		max-height: 180px;
	}

	section.content.reviews h2{
		width: 100%;
		font-size: 26px;
	}

	section.content.reviews h2 img{
		right: 0px;
		left: auto;
		bottom: auto;
		top: -80px;
	}

	section.content.snackfinder .step ul li label > span img{
		height: 40px;
	}

	section.content.snackfinder .step ul li label > span span{
		padding: 8px 0px;
	}

	section.content.faq .faq-container ul li{
		padding-bottom: 12px;
	}

	section.content.faq .faq-container ul li div.title{
		padding: 12px 0px 0px 30px;
	}	
	
	section.content.faq .faq-container ul li div.content .inner{
		margin: 12px 0px 0px;
	}

	section.content.faq .category-container ul {
		grid-template-columns: 100%;
		gap: 8px;
	}

	div#posts-products .products-inner {
		width: calc(100% + 10px);
		margin-left: -5px;
	}

	div#posts-products article.product-item {
		width: calc(50% - 10px);
		margin: 0px 5px 10px;
	}

	div#pagination.mobile{
		margin-top: 15px;
	}

	div#posts-products .no-products-found{
		margin-left: 5px;
		margin-right: 5px;
	}

	section.content.shop .colfull .shop-container .sidebar .inner .filter-footer .label{
		position: relative;
		right: auto;
	}

	footer .bottom-footer .bottom-footer-top-left-container{
		margin-top: 30px;
	}

	footer .bottom-footer .bottom-footer-top-left-container .divide{
		width: 100%;
	}

	footer .bottom-footer .top{
		padding-bottom: 0px;
	}

	footer .bottom-footer .top .menu-footer-menu-container > ul > li > ul{
		margin-top: 15px;
	}

	footer .bottom-footer .top address > span.title{
		margin-top: 30px;
	}

	footer .bottom-footer .top .keurmerk{
		display: none;
		margin-top: 0px;
		margin-bottom: 30px;
	}

	footer .bottom-footer .top .menu-footer-menu-container > ul > li{
		margin-top: 30px;
		width: 100%;
	}

	footer .bottom-footer .top .newsletter{
		margin-bottom: 0px;
	}

	footer .bottom-footer .top address > span.title,
	footer .bottom-footer .top .menu-footer-menu-container > ul > li{
		margin-top: 0px;
		border-top: 1px solid #E0DED8;
		padding: 10px 0px;
	}

	footer .bottom-footer .top .menu-footer-menu-container > ul > li{

	}

	footer .bottom-footer .top .menu-footer-menu-container > ul > li > a{
		display: block;
		position: relative;
	}

	footer .bottom-footer .top .menu-footer-menu-container > ul > li > a::after{
		position: absolute;
		/* color: #A4A8AB; */
		right: 10px;
		font-weight: 100;


		content: "\f107";
		font-family: "Font Awesome 5 Pro";
	}

	footer .bottom-footer .top .menu-footer-menu-container .sub-menu{
		margin-top: 20px;
		display: none;
	}

	footer .bottom-footer .top .menu-footer-menu-container > ul > li:hover .sub-menu{
		display: block;
	}

	footer .bottom-footer .top address > span.title{
		margin-bottom: 5px;
	}

	footer .mobile{
		width: 100%;
		display: flex;
		justify-content: space-between;
	}

	footer .mobile .keurmerk{
		display: block !important;
		margin-top: 45px !important;
		margin-bottom: 0px !important;
	}

	footer .mobile .keurmerk img{
		max-width: 100%;
	}
	footer .mobile .klantvertellen {
		max-width: 75%;
	}
}

@media handheld, screen and (max-width: 380px) {

	#header .search-header .right-search-header > ul > li:not(:first-child){
		margin-right: 15px;
	}

	#header .search-header .right-search-header > ul > li.page-account a img{
		width: 25px;
	}

	#header .search-header .right-search-header > ul > li.page-favorite a img{
		width: 22px;
	}

	#header .search-header .right-search-header > ul > li.page-cart a img{
		width: 30px;
	}

	section.content.heroimage{
		padding-bottom: 70px;
	}

	section.content.heroimage .inner-content h1{
		margin-bottom: 0px;
	}

	section.content.heroimage .inner-content .page-loop p{
		display: none;
	}

	section.content.heroimage .inner-content img{
		display: none;
	}

	footer .bottom-footer .bottom > div .colomn img{
		width: 20%;
	}
}

@media handheld, screen and (max-width: 350px) {
	section.content.snackfinder .step .button{
		padding: 12px 25px;
	}

	div#pagination ul li > span{
		line-height: 34px;
		min-width: 40px;
		height: 40px;
		margin: 0px 2px 4px;
		padding: 0px 10px;
	}

	div#pagination.mobile ul li > span i{
		line-height: 34px;
	}

	div#pagination.mobile ul li.dots > span{
		padding: 0px 2px;
	}
}@media handheld, screen and (max-width: 1250px) {
    .dashboard-container{
        width: 75%;
    }
}

@media handheld, screen and (max-width: 1024px) {
    main .woocommerce-MyAccount-navigation ul li a{
        padding: 13px 20px;
    }

    .woocommerce .shop_table thead tr th:first-child,
    .woocommerce .shop_table tbody tr td:first-child,
    .woocommerce .shop_table tfoot tr th:first-child,
    .woocommerce .shop_table tfoot tr td:first-child{
        padding-right: 3px;
    }

    .woocommerce .shop_table thead tr th:last-child,
    .woocommerce .shop_table tbody tr td:last-child,
    .woocommerce .shop_table tfoot tr th:last-child,
    .woocommerce .shop_table tfoot tr td:last-child{
        padding-left: 3px;
    }

    .woocommerce .shop_table thead tr th:not(:first-child):not(:last-child),
    .woocommerce .shop_table tbody tr td:not(:first-child):not(:last-child),
    .woocommerce .shop_table tfoot tr th:not(:first-child):not(:last-child),
    .woocommerce .shop_table tfoot tr td:not(:first-child):not(:last-child){
        padding-right: 3px;
        padding-left: 3px;
    }

    .dashboard-container{
        width: 100%;
    }

    main .woocommerce .cart-collaterals, 
    main .woocommerce .woocommerce-checkout-payment{
        width: 75%;
    }

    main .woocommerce .product-quantity .wac-quantity .wac-qty-button{
        padding: 12px 10px;
        width: 34px;
    }

    main .woocommerce .product-quantity .wac-quantity .wac-qty-button::before{
        left: 10px;
    }

    main .woocommerce .product-quantity .wac-quantity .input-text{
        width: 40px;
    }
}

@media handheld, screen and (max-width: 767px) {
    main .woocommerce-MyAccount-navigation ul li{
        width: 25%;
    }

    main .woocommerce-MyAccount-navigation ul li a{
        text-align: center;
    }

    main .woocommerce .cart-collaterals, 
    main .woocommerce .woocommerce-checkout-payment{
        width: 100%;
    }

    main .woocommerce .woocommerce-cart-form__contents thead{
        display: none;
    }

    main .woocommerce .woocommerce-cart-form__contents tr{
        display: block;
        position: relative;
    }

    main .woocommerce .woocommerce-cart-form__contents tr td{
        display: block;
        position: relative;
        text-align: right!important;
        width: 100% !important;
        padding: 12px 12px 12px 40% !important;
    }

    main .woocommerce .woocommerce-checkout-payment li{
        padding: 12px;
    }

    main .woocommerce .woocommerce-checkout-payment li input[type="radio"]{
        margin-left: 0px;
    }

    main .woocommerce .woocommerce-checkout-payment li label {
        padding-left: 20px;
    }

    main .woocommerce .woocommerce-cart-form__contents tr td.product-thumbnail,
    main .woocommerce .woocommerce-cart-form__contents tr td.product-price{
        display: none;
    }

    main .woocommerce .woocommerce-cart-form__contents tr td.product-quantity{
        padding-right: 50px !important;
    }

    main .woocommerce .product-quantity .wac-quantity .input-text {
        width: 60px;
    }

    main .woocommerce .woocommerce-cart-form__contents tr td.product-remove{
        margin-top: -60px;
        position: absolute;
        width: 50px !important;
        padding-left: 0px !important;
        right: 0px;
    }

    main .woocommerce .woocommerce-cart-form__contents tr td.actions{
        padding-left: 12px !important;
    }

    main .woocommerce .coupon label{
        width: 100%;
        display: block;
        text-align: left;
    }
    

    main .woocommerce .woocommerce-cart-form__contents tr td::before{
        content:attr(data-title);
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        text-align: left;
    }

    main .woocommerce .woocommerce-cart-form__contents tr td.actions .input-text,
    main .woocommerce .woocommerce-cart-form__contents tr td.actions .button{
        width: 100%;
        margin-top: 8px;
    }

    .cart-collaterals table tr{
        display: flex;
        position: relative;
    }

    .cart-collaterals table tr.woocommerce-shipping-totals{
        display: block;
    }

    .cart-collaterals table tr td,
    .cart-collaterals table tr th{
        display: block;
        position: relative;
        width: 50%;
        padding: 12px !important;
    }

    .cart-collaterals table tr.woocommerce-shipping-totals th,
    .cart-collaterals table tr.woocommerce-shipping-totals td{
        width: 100%;
    }

    .cart-collaterals table tr.woocommerce-shipping-totals td li{
       padding-left: 0px;
    }

    .cart-collaterals table tr.woocommerce-shipping-totals td li input[type="radio"]{
        margin-left: 0px;
    }

    .cart-collaterals table tr.woocommerce-shipping-totals td li label{
        padding-left: 20px !important;
    }

}

@media handheld, screen and (max-width: 660px) {
    main .woocommerce-MyAccount-navigation ul li{
        width: 50%;
    }

    .woocommerce .col2-set{
        display: block;
    }

    .woocommerce .col2-set .col-1,
    .woocommerce .col2-set .col-2,
    .form-row.form-row-first,
    .form-row.form-row-last{
        width: 100%;
        float: none;
    }

    .woocommerce .u-columns.col2-set .u-column2{
        margin-top: 30px;
    }

    .woocommerce-orders-table thead {
		display:none;
	}

	.woocommerce-orders-table td {
		display:block;
		border-bottom:none;
		padding: 3px 10px !important;
        text-align: left !important;
	}

    .woocommerce-orders-table td:first-child{
        padding-top: 12px !important;
    }

    .woocommerce-orders-table td:last-child{
        padding-bottom: 12px !important;
    }

	.woocommerce-orders-table td:before {
		content:attr(data-title);
		display:inline-block;
		font-weight:bold;
		width:150px;
	}

	.woocommerce-orders-table td:first-child {
		padding-top:10px;
	}

	.woocommerce-orders-table td:last-child {
		border-bottom:1px solid #F2F2F2;
		padding-bottom:10px;
	}

    .woocommerce-orders-table__cell-order-actions{
        direction: ltr;
    }

    .woocommerce-orders-table__cell-order-actions .button:not(:first-child){
        margin-left: 10px;
        margin-right: 0px;
    }
}

@media handheld, screen and (max-width: 400px) {
    main .woocommerce-MyAccount-navigation ul li{
        width: 100%;
    }

    .woocommerce-orders-table td:before {
		content:attr(data-title);
		display:inline-block;
		font-weight:bold;
		width:100%;
	}
}