/* #Reset & Basics (Inspired by E. Meyers) 
================================================== */
 html {
     overflow-y: scroll;
}
 html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
     margin: 0;
     padding: 0;
     border: 0;
     font-size: 100%;
     font: inherit;
     vertical-align: baseline;
}
 article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
     display: block;
}
 body {
     line-height: 1;
}
 ol, ul {
     list-style: none;
}
 blockquote, q {
     quotes: none;
}
 blockquote:before, blockquote:after, q:before, q:after {
     content: '';
     content: none;
}
 table {
     border-collapse: collapse;
     border-spacing: 0;
}
/* #Basic Styles 
================================================== */
 body, textarea {
     color: #333;
     background: #fff;
     line-height: 1.45;
     -webkit-text-size-adjust: 100%;
     -webkit-font-smoothing: antialiased;
    /* Fix for webkit rendering */
     font: 14px/24px "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
 label {
     width: 130px;
     font-weight: bold;
     text-align: right;
     vertical-align: top;
     display: inline-block;
}
 button:hover {
     cursor: pointer;
}
 input:active, input:focus, textarea:active, textarea:focus {
     color: #000;
}
/* #Typography 
================================================== */
 html {
     font-size: 0.875em;
}
 h2 {
     font-size: 48px;
}
 h3 {
     font-size: 36px;
}
 h4 {
     font-size: 28px;
}
 h1, h2, h3, h4, h5, h6 {
     color: #394148;
     font-family: Arial, "HelveticaNeue", "Helvetica Neue", Helvetica, sans-serif;
     font-weight: inherit;
     line-height: 1.1;
     margin-bottom: 14px;
}
 h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
     font-weight: inherit;
}
 h1 {
     font-size: 1.5em;
     line-height: 1.4em;
     margin-bottom: 20px;
}
 p {
     margin: 0 0 1em 0;
}
 p img {
     margin: 0;
}
 em {
     font-style: italic;
}
 strong {
     font-weight: bold;
     color: #333;
}
 small {
     font-size: 80%;
}
/* Blockquotes */
 blockquote, blockquote p {
     font-size: 17px;
     line-height: 24px;
     color: #777;
     font-style: italic;
}
 blockquote {
     margin: 0 0 20px;
     padding: 9px 20px 0 19px;
     border-left: 1px solid #ddd;
}
 blockquote cite {
     display: block;
     font-size: 12px;
     color: #555;
}
 blockquote cite:before {
     content: "\2014 \0020";
}
 blockquote cite a, blockquote cite a:visited, blockquote cite a:visited {
     color: #555;
}
 hr {
     border: solid #ddd;
     border-width: 1px 0 0;
     clear: both;
     margin: 10px 0 30px;
     height: 0;
}
/* #Links 
================================================== */
 a, a:visited {
     color: #333;
     text-decoration: none;
     outline: 0;
}
 a:hover, a:focus {
     color: #000;
}
 p a, p a:visited {
     line-height: inherit;
}
/* #Lists 
================================================== */
 ul, ol {
     margin-bottom: 20px;
     font-size: 0;
}
 ul {
     list-style: none outside;
}
 ol {
     list-style: decimal;
}
 ol, ul.square, ul.circle, ul.disc {
     margin-left: 30px;
}
 ul.square {
     list-style: square outside;
}
 ul.circle {
     list-style: circle outside;
}
 ul.disc {
     list-style: disc outside;
}
 ul ul, ul ol, ol ol, ol ul {
     margin: 4px 0 5px 30px;
     font-size: 90%;
}
 ul ul li, ul ol li, ol ol li, ol ul li {
     margin-bottom: 6px;
}
 li {
     line-height: 18px;
     margin-bottom: 12px;
     font-size: 14px;
}
 ul.large li {
     line-height: 21px;
}
 li p {
     line-height: 21px;
}
/* #Images 
================================================== */
 img {
     display: block;
}
 img.scale-with-grid {
     max-width: 100%;
     height: auto;
}

/* #Bootstrap 
================================================== */
 @-ms-viewport {
     width: device-width;
}
 html {
     box-sizing: border-box;
     -ms-overflow-style: scrollbar;
}
 *, *::before, *::after {
     box-sizing: inherit;
}
 .container {
     width: 100%;
     padding-right: 15px;
     padding-left: 15px;
     margin-right: auto;
     margin-left: auto;
}
 @media (min-width: 576px) {
     .container {
         max-width: 540px;
    }
}
 @media (min-width: 768px) {
     .container {
         max-width: 720px;
    }
}
 @media (min-width: 992px) {
     .container {
         max-width: 960px;
    }
}
 @media (min-width: 1200px) {
     .container {
         max-width: 1140px;
    }
}
 .container-fluid {
     width: 100%;
     padding-right: 15px;
     padding-left: 15px;
     margin-right: auto;
     margin-left: auto;
}
 .row {
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -ms-flex-wrap: wrap;
     flex-wrap: wrap;
     margin-right: -15px;
     margin-left: -15px;
}
 .no-gutters {
     margin-right: 0;
     margin-left: 0;
}
 .no-gutters > .col, .no-gutters > [class*="col-"] {
     padding-right: 0;
     padding-left: 0;
}
 .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, .col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, .col-xl-auto {
     position: relative;
     width: 100%;
     min-height: 1px;
     padding-right: 15px;
     padding-left: 15px;
}
 .col {
     -ms-flex-preferred-size: 0;
     flex-basis: 0;
     -webkit-box-flex: 1;
     -ms-flex-positive: 1;
     flex-grow: 1;
     max-width: 100%;
}
 .col-auto {
     -webkit-box-flex: 0;
     -ms-flex: 0 0 auto;
     flex: 0 0 auto;
     width: auto;
     max-width: none;
}
 .col-1 {
     -webkit-box-flex: 0;
     -ms-flex: 0 0 8.333333%;
     flex: 0 0 8.333333%;
     max-width: 8.333333%;
}
 .col-2 {
     -webkit-box-flex: 0;
     -ms-flex: 0 0 16.666667%;
     flex: 0 0 16.666667%;
     max-width: 16.666667%;
}
 .col-3 {
     -webkit-box-flex: 0;
     -ms-flex: 0 0 25%;
     flex: 0 0 25%;
     max-width: 25%;
}
 .col-4 {
     -webkit-box-flex: 0;
     -ms-flex: 0 0 33.333333%;
     flex: 0 0 33.333333%;
     max-width: 33.333333%;
}
 .col-5 {
     -webkit-box-flex: 0;
     -ms-flex: 0 0 41.666667%;
     flex: 0 0 41.666667%;
     max-width: 41.666667%;
}
 .col-6 {
     -webkit-box-flex: 0;
     -ms-flex: 0 0 50%;
     flex: 0 0 50%;
     max-width: 50%;
}
 .col-7 {
     -webkit-box-flex: 0;
     -ms-flex: 0 0 58.333333%;
     flex: 0 0 58.333333%;
     max-width: 58.333333%;
}
 .col-8 {
     -webkit-box-flex: 0;
     -ms-flex: 0 0 66.666667%;
     flex: 0 0 66.666667%;
     max-width: 66.666667%;
}
 .col-9 {
     -webkit-box-flex: 0;
     -ms-flex: 0 0 75%;
     flex: 0 0 75%;
     max-width: 75%;
}
 .col-10 {
     -webkit-box-flex: 0;
     -ms-flex: 0 0 83.333333%;
     flex: 0 0 83.333333%;
     max-width: 83.333333%;
}
 .col-11 {
     -webkit-box-flex: 0;
     -ms-flex: 0 0 91.666667%;
     flex: 0 0 91.666667%;
     max-width: 91.666667%;
}
 .col-12 {
     -webkit-box-flex: 0;
     -ms-flex: 0 0 100%;
     flex: 0 0 100%;
     max-width: 100%;
}
 .order-first {
     -webkit-box-ordinal-group: 0;
     -ms-flex-order: -1;
     order: -1;
}
 .order-last {
     -webkit-box-ordinal-group: 14;
     -ms-flex-order: 13;
     order: 13;
}
 .order-0 {
     -webkit-box-ordinal-group: 1;
     -ms-flex-order: 0;
     order: 0;
}
 .order-1 {
     -webkit-box-ordinal-group: 2;
     -ms-flex-order: 1;
     order: 1;
}
 .order-2 {
     -webkit-box-ordinal-group: 3;
     -ms-flex-order: 2;
     order: 2;
}
 .order-3 {
     -webkit-box-ordinal-group: 4;
     -ms-flex-order: 3;
     order: 3;
}
 .order-4 {
     -webkit-box-ordinal-group: 5;
     -ms-flex-order: 4;
     order: 4;
}
 .order-5 {
     -webkit-box-ordinal-group: 6;
     -ms-flex-order: 5;
     order: 5;
}
 .order-6 {
     -webkit-box-ordinal-group: 7;
     -ms-flex-order: 6;
     order: 6;
}
 .order-7 {
     -webkit-box-ordinal-group: 8;
     -ms-flex-order: 7;
     order: 7;
}
 .order-8 {
     -webkit-box-ordinal-group: 9;
     -ms-flex-order: 8;
     order: 8;
}
 .order-9 {
     -webkit-box-ordinal-group: 10;
     -ms-flex-order: 9;
     order: 9;
}
 .order-10 {
     -webkit-box-ordinal-group: 11;
     -ms-flex-order: 10;
     order: 10;
}
 .order-11 {
     -webkit-box-ordinal-group: 12;
     -ms-flex-order: 11;
     order: 11;
}
 .order-12 {
     -webkit-box-ordinal-group: 13;
     -ms-flex-order: 12;
     order: 12;
}
 .offset-1 {
     margin-left: 8.333333%;
}
 .offset-2 {
     margin-left: 16.666667%;
}
 .offset-3 {
     margin-left: 25%;
}
 .offset-4 {
     margin-left: 33.333333%;
}
 .offset-5 {
     margin-left: 41.666667%;
}
 .offset-6 {
     margin-left: 50%;
}
 .offset-7 {
     margin-left: 58.333333%;
}
 .offset-8 {
     margin-left: 66.666667%;
}
 .offset-9 {
     margin-left: 75%;
}
 .offset-10 {
     margin-left: 83.333333%;
}
 .offset-11 {
     margin-left: 91.666667%;
}
 @media (min-width: 576px) {
     .col-sm {
         -ms-flex-preferred-size: 0;
         flex-basis: 0;
         -webkit-box-flex: 1;
         -ms-flex-positive: 1;
         flex-grow: 1;
         max-width: 100%;
    }
     .col-sm-auto {
         -webkit-box-flex: 0;
         -ms-flex: 0 0 auto;
         flex: 0 0 auto;
         width: auto;
         max-width: none;
    }
     .col-sm-1 {
         -webkit-box-flex: 0;
         -ms-flex: 0 0 8.333333%;
         flex: 0 0 8.333333%;
         max-width: 8.333333%;
    }
     .col-sm-2 {
         -webkit-box-flex: 0;
         -ms-flex: 0 0 16.666667%;
         flex: 0 0 16.666667%;
         max-width: 16.666667%;
    }
     .col-sm-3 {
         -webkit-box-flex: 0;
         -ms-flex: 0 0 25%;
         flex: 0 0 25%;
         max-width: 25%;
    }
     .col-sm-4 {
         -webkit-box-flex: 0;
         -ms-flex: 0 0 33.333333%;
         flex: 0 0 33.333333%;
         max-width: 33.333333%;
    }
     .col-sm-5 {
         -webkit-box-flex: 0;
         -ms-flex: 0 0 41.666667%;
         flex: 0 0 41.666667%;
         max-width: 41.666667%;
    }
     .col-sm-6 {
         -webkit-box-flex: 0;
         -ms-flex: 0 0 50%;
         flex: 0 0 50%;
         max-width: 50%;
    }
     .col-sm-7 {
         -webkit-box-flex: 0;
         -ms-flex: 0 0 58.333333%;
         flex: 0 0 58.333333%;
         max-width: 58.333333%;
    }
     .col-sm-8 {
         -webkit-box-flex: 0;
         -ms-flex: 0 0 66.666667%;
         flex: 0 0 66.666667%;
         max-width: 66.666667%;
    }
     .col-sm-9 {
         -webkit-box-flex: 0;
         -ms-flex: 0 0 75%;
         flex: 0 0 75%;
         max-width: 75%;
    }
     .col-sm-10 {
         -webkit-box-flex: 0;
         -ms-flex: 0 0 83.333333%;
         flex: 0 0 83.333333%;
         max-width: 83.333333%;
    }
     .col-sm-11 {
         -webkit-box-flex: 0;
         -ms-flex: 0 0 91.666667%;
         flex: 0 0 91.666667%;
         max-width: 91.666667%;
    }
     .col-sm-12 {
         -webkit-box-flex: 0;
         -ms-flex: 0 0 100%;
         flex: 0 0 100%;
         max-width: 100%;
    }
     .order-sm-first {
         -webkit-box-ordinal-group: 0;
         -ms-flex-order: -1;
         order: -1;
    }
     .order-sm-last {
         -webkit-box-ordinal-group: 14;
         -ms-flex-order: 13;
         order: 13;
    }
     .order-sm-0 {
         -webkit-box-ordinal-group: 1;
         -ms-flex-order: 0;
         order: 0;
    }
     .order-sm-1 {
         -webkit-box-ordinal-group: 2;
         -ms-flex-order: 1;
         order: 1;
    }
     .order-sm-2 {
         -webkit-box-ordinal-group: 3;
         -ms-flex-order: 2;
         order: 2;
    }
     .order-sm-3 {
         -webkit-box-ordinal-group: 4;
         -ms-flex-order: 3;
         order: 3;
    }
     .order-sm-4 {
         -webkit-box-ordinal-group: 5;
         -ms-flex-order: 4;
         order: 4;
    }
     .order-sm-5 {
         -webkit-box-ordinal-group: 6;
         -ms-flex-order: 5;
         order: 5;
    }
     .order-sm-6 {
         -webkit-box-ordinal-group: 7;
         -ms-flex-order: 6;
         order: 6;
    }
     .order-sm-7 {
         -webkit-box-ordinal-group: 8;
         -ms-flex-order: 7;
         order: 7;
    }
     .order-sm-8 {
         -webkit-box-ordinal-group: 9;
         -ms-flex-order: 8;
         order: 8;
    }
     .order-sm-9 {
         -webkit-box-ordinal-group: 10;
         -ms-flex-order: 9;
         order: 9;
    }
     .order-sm-10 {
         -webkit-box-ordinal-group: 11;
         -ms-flex-order: 10;
         order: 10;
    }
     .order-sm-11 {
         -webkit-box-ordinal-group: 12;
         -ms-flex-order: 11;
         order: 11;
    }
     .order-sm-12 {
         -webkit-box-ordinal-group: 13;
         -ms-flex-order: 12;
         order: 12;
    }
     .offset-sm-0 {
         margin-left: 0;
    }
     .offset-sm-1 {
         margin-left: 8.333333%;
    }
     .offset-sm-2 {
         margin-left: 16.666667%;
    }
     .offset-sm-3 {
         margin-left: 25%;
    }
     .offset-sm-4 {
         margin-left: 33.333333%;
    }
     .offset-sm-5 {
         margin-left: 41.666667%;
    }
     .offset-sm-6 {
         margin-left: 50%;
    }
     .offset-sm-7 {
         margin-left: 58.333333%;
    }
     .offset-sm-8 {
         margin-left: 66.666667%;
    }
     .offset-sm-9 {
         margin-left: 75%;
    }
     .offset-sm-10 {
         margin-left: 83.333333%;
    }
     .offset-sm-11 {
         margin-left: 91.666667%;
    }
}
 @media (min-width: 768px) {
     .col-md {
         -ms-flex-preferred-size: 0;
         flex-basis: 0;
         -webkit-box-flex: 1;
         -ms-flex-positive: 1;
         flex-grow: 1;
         max-width: 100%;
    }
     .col-md-auto {
         -webkit-box-flex: 0;
         -ms-flex: 0 0 auto;
         flex: 0 0 auto;
         width: auto;
         max-width: none;
    }
     .col-md-1 {
         -webkit-box-flex: 0;
         -ms-flex: 0 0 8.333333%;
         flex: 0 0 8.333333%;
         max-width: 8.333333%;
    }
     .col-md-2 {
         -webkit-box-flex: 0;
         -ms-flex: 0 0 16.666667%;
         flex: 0 0 16.666667%;
         max-width: 16.666667%;
    }
     .col-md-3 {
         -webkit-box-flex: 0;
         -ms-flex: 0 0 25%;
         flex: 0 0 25%;
         max-width: 25%;
    }
     .col-md-4 {
         -webkit-box-flex: 0;
         -ms-flex: 0 0 33.333333%;
         flex: 0 0 33.333333%;
         max-width: 33.333333%;
    }
     .col-md-5 {
         -webkit-box-flex: 0;
         -ms-flex: 0 0 41.666667%;
         flex: 0 0 41.666667%;
         max-width: 41.666667%;
    }
     .col-md-6 {
         -webkit-box-flex: 0;
         -ms-flex: 0 0 50%;
         flex: 0 0 50%;
         max-width: 50%;
    }
     .col-md-7 {
         -webkit-box-flex: 0;
         -ms-flex: 0 0 58.333333%;
         flex: 0 0 58.333333%;
         max-width: 58.333333%;
    }
     .col-md-8 {
         -webkit-box-flex: 0;
         -ms-flex: 0 0 66.666667%;
         flex: 0 0 66.666667%;
         max-width: 66.666667%;
    }
     .col-md-9 {
         -webkit-box-flex: 0;
         -ms-flex: 0 0 75%;
         flex: 0 0 75%;
         max-width: 75%;
    }
     .col-md-10 {
         -webkit-box-flex: 0;
         -ms-flex: 0 0 83.333333%;
         flex: 0 0 83.333333%;
         max-width: 83.333333%;
    }
     .col-md-11 {
         -webkit-box-flex: 0;
         -ms-flex: 0 0 91.666667%;
         flex: 0 0 91.666667%;
         max-width: 91.666667%;
    }
     .col-md-12 {
         -webkit-box-flex: 0;
         -ms-flex: 0 0 100%;
         flex: 0 0 100%;
         max-width: 100%;
    }
     .order-md-first {
         -webkit-box-ordinal-group: 0;
         -ms-flex-order: -1;
         order: -1;
    }
     .order-md-last {
         -webkit-box-ordinal-group: 14;
         -ms-flex-order: 13;
         order: 13;
    }
     .order-md-0 {
         -webkit-box-ordinal-group: 1;
         -ms-flex-order: 0;
         order: 0;
    }
     .order-md-1 {
         -webkit-box-ordinal-group: 2;
         -ms-flex-order: 1;
         order: 1;
    }
     .order-md-2 {
         -webkit-box-ordinal-group: 3;
         -ms-flex-order: 2;
         order: 2;
    }
     .order-md-3 {
         -webkit-box-ordinal-group: 4;
         -ms-flex-order: 3;
         order: 3;
    }
     .order-md-4 {
         -webkit-box-ordinal-group: 5;
         -ms-flex-order: 4;
         order: 4;
    }
     .order-md-5 {
         -webkit-box-ordinal-group: 6;
         -ms-flex-order: 5;
         order: 5;
    }
     .order-md-6 {
         -webkit-box-ordinal-group: 7;
         -ms-flex-order: 6;
         order: 6;
    }
     .order-md-7 {
         -webkit-box-ordinal-group: 8;
         -ms-flex-order: 7;
         order: 7;
    }
     .order-md-8 {
         -webkit-box-ordinal-group: 9;
         -ms-flex-order: 8;
         order: 8;
    }
     .order-md-9 {
         -webkit-box-ordinal-group: 10;
         -ms-flex-order: 9;
         order: 9;
    }
     .order-md-10 {
         -webkit-box-ordinal-group: 11;
         -ms-flex-order: 10;
         order: 10;
    }
     .order-md-11 {
         -webkit-box-ordinal-group: 12;
         -ms-flex-order: 11;
         order: 11;
    }
     .order-md-12 {
         -webkit-box-ordinal-group: 13;
         -ms-flex-order: 12;
         order: 12;
    }
     .offset-md-0 {
         margin-left: 0;
    }
     .offset-md-1 {
         margin-left: 8.333333%;
    }
     .offset-md-2 {
         margin-left: 16.666667%;
    }
     .offset-md-3 {
         margin-left: 25%;
    }
     .offset-md-4 {
         margin-left: 33.333333%;
    }
     .offset-md-5 {
         margin-left: 41.666667%;
    }
     .offset-md-6 {
         margin-left: 50%;
    }
     .offset-md-7 {
         margin-left: 58.333333%;
    }
     .offset-md-8 {
         margin-left: 66.666667%;
    }
     .offset-md-9 {
         margin-left: 75%;
    }
     .offset-md-10 {
         margin-left: 83.333333%;
    }
     .offset-md-11 {
         margin-left: 91.666667%;
    }
}
 @media (min-width: 992px) {
     .col-lg {
         -ms-flex-preferred-size: 0;
         flex-basis: 0;
         -webkit-box-flex: 1;
         -ms-flex-positive: 1;
         flex-grow: 1;
         max-width: 100%;
    }
     .col-lg-auto {
         -webkit-box-flex: 0;
         -ms-flex: 0 0 auto;
         flex: 0 0 auto;
         width: auto;
         max-width: none;
    }
     .col-lg-1 {
         -webkit-box-flex: 0;
         -ms-flex: 0 0 8.333333%;
         flex: 0 0 8.333333%;
         max-width: 8.333333%;
    }
     .col-lg-2 {
         -webkit-box-flex: 0;
         -ms-flex: 0 0 16.666667%;
         flex: 0 0 16.666667%;
         max-width: 16.666667%;
    }
     .col-lg-3 {
         -webkit-box-flex: 0;
         -ms-flex: 0 0 25%;
         flex: 0 0 25%;
         max-width: 25%;
    }
     .col-lg-4 {
         -webkit-box-flex: 0;
         -ms-flex: 0 0 33.333333%;
         flex: 0 0 33.333333%;
         max-width: 33.333333%;
    }
     .col-lg-5 {
         -webkit-box-flex: 0;
         -ms-flex: 0 0 41.666667%;
         flex: 0 0 41.666667%;
         max-width: 41.666667%;
    }
     .col-lg-6 {
         -webkit-box-flex: 0;
         -ms-flex: 0 0 50%;
         flex: 0 0 50%;
         max-width: 50%;
    }
     .col-lg-7 {
         -webkit-box-flex: 0;
         -ms-flex: 0 0 58.333333%;
         flex: 0 0 58.333333%;
         max-width: 58.333333%;
    }
     .col-lg-8 {
         -webkit-box-flex: 0;
         -ms-flex: 0 0 66.666667%;
         flex: 0 0 66.666667%;
         max-width: 66.666667%;
    }
     .col-lg-9 {
         -webkit-box-flex: 0;
         -ms-flex: 0 0 75%;
         flex: 0 0 75%;
         max-width: 75%;
    }
     .col-lg-10 {
         -webkit-box-flex: 0;
         -ms-flex: 0 0 83.333333%;
         flex: 0 0 83.333333%;
         max-width: 83.333333%;
    }
     .col-lg-11 {
         -webkit-box-flex: 0;
         -ms-flex: 0 0 91.666667%;
         flex: 0 0 91.666667%;
         max-width: 91.666667%;
    }
     .col-lg-12 {
         -webkit-box-flex: 0;
         -ms-flex: 0 0 100%;
         flex: 0 0 100%;
         max-width: 100%;
    }
     .order-lg-first {
         -webkit-box-ordinal-group: 0;
         -ms-flex-order: -1;
         order: -1;
    }
     .order-lg-last {
         -webkit-box-ordinal-group: 14;
         -ms-flex-order: 13;
         order: 13;
    }
     .order-lg-0 {
         -webkit-box-ordinal-group: 1;
         -ms-flex-order: 0;
         order: 0;
    }
     .order-lg-1 {
         -webkit-box-ordinal-group: 2;
         -ms-flex-order: 1;
         order: 1;
    }
     .order-lg-2 {
         -webkit-box-ordinal-group: 3;
         -ms-flex-order: 2;
         order: 2;
    }
     .order-lg-3 {
         -webkit-box-ordinal-group: 4;
         -ms-flex-order: 3;
         order: 3;
    }
     .order-lg-4 {
         -webkit-box-ordinal-group: 5;
         -ms-flex-order: 4;
         order: 4;
    }
     .order-lg-5 {
         -webkit-box-ordinal-group: 6;
         -ms-flex-order: 5;
         order: 5;
    }
     .order-lg-6 {
         -webkit-box-ordinal-group: 7;
         -ms-flex-order: 6;
         order: 6;
    }
     .order-lg-7 {
         -webkit-box-ordinal-group: 8;
         -ms-flex-order: 7;
         order: 7;
    }
     .order-lg-8 {
         -webkit-box-ordinal-group: 9;
         -ms-flex-order: 8;
         order: 8;
    }
     .order-lg-9 {
         -webkit-box-ordinal-group: 10;
         -ms-flex-order: 9;
         order: 9;
    }
     .order-lg-10 {
         -webkit-box-ordinal-group: 11;
         -ms-flex-order: 10;
         order: 10;
    }
     .order-lg-11 {
         -webkit-box-ordinal-group: 12;
         -ms-flex-order: 11;
         order: 11;
    }
     .order-lg-12 {
         -webkit-box-ordinal-group: 13;
         -ms-flex-order: 12;
         order: 12;
    }
     .offset-lg-0 {
         margin-left: 0;
    }
     .offset-lg-1 {
         margin-left: 8.333333%;
    }
     .offset-lg-2 {
         margin-left: 16.666667%;
    }
     .offset-lg-3 {
         margin-left: 25%;
    }
     .offset-lg-4 {
         margin-left: 33.333333%;
    }
     .offset-lg-5 {
         margin-left: 41.666667%;
    }
     .offset-lg-6 {
         margin-left: 50%;
    }
     .offset-lg-7 {
         margin-left: 58.333333%;
    }
     .offset-lg-8 {
         margin-left: 66.666667%;
    }
     .offset-lg-9 {
         margin-left: 75%;
    }
     .offset-lg-10 {
         margin-left: 83.333333%;
    }
     .offset-lg-11 {
         margin-left: 91.666667%;
    }
}
 @media (min-width: 1200px) {
     .col-xl {
         -ms-flex-preferred-size: 0;
         flex-basis: 0;
         -webkit-box-flex: 1;
         -ms-flex-positive: 1;
         flex-grow: 1;
         max-width: 100%;
    }
     .col-xl-auto {
         -webkit-box-flex: 0;
         -ms-flex: 0 0 auto;
         flex: 0 0 auto;
         width: auto;
         max-width: none;
    }
     .col-xl-1 {
         -webkit-box-flex: 0;
         -ms-flex: 0 0 8.333333%;
         flex: 0 0 8.333333%;
         max-width: 8.333333%;
    }
     .col-xl-2 {
         -webkit-box-flex: 0;
         -ms-flex: 0 0 16.666667%;
         flex: 0 0 16.666667%;
         max-width: 16.666667%;
    }
     .col-xl-3 {
         -webkit-box-flex: 0;
         -ms-flex: 0 0 25%;
         flex: 0 0 25%;
         max-width: 25%;
    }
     .col-xl-4 {
         -webkit-box-flex: 0;
         -ms-flex: 0 0 33.333333%;
         flex: 0 0 33.333333%;
         max-width: 33.333333%;
    }
     .col-xl-5 {
         -webkit-box-flex: 0;
         -ms-flex: 0 0 41.666667%;
         flex: 0 0 41.666667%;
         max-width: 41.666667%;
    }
     .col-xl-6 {
         -webkit-box-flex: 0;
         -ms-flex: 0 0 50%;
         flex: 0 0 50%;
         max-width: 50%;
    }
     .col-xl-7 {
         -webkit-box-flex: 0;
         -ms-flex: 0 0 58.333333%;
         flex: 0 0 58.333333%;
         max-width: 58.333333%;
    }
     .col-xl-8 {
         -webkit-box-flex: 0;
         -ms-flex: 0 0 66.666667%;
         flex: 0 0 66.666667%;
         max-width: 66.666667%;
    }
     .col-xl-9 {
         -webkit-box-flex: 0;
         -ms-flex: 0 0 75%;
         flex: 0 0 75%;
         max-width: 75%;
    }
     .col-xl-10 {
         -webkit-box-flex: 0;
         -ms-flex: 0 0 83.333333%;
         flex: 0 0 83.333333%;
         max-width: 83.333333%;
    }
     .col-xl-11 {
         -webkit-box-flex: 0;
         -ms-flex: 0 0 91.666667%;
         flex: 0 0 91.666667%;
         max-width: 91.666667%;
    }
     .col-xl-12 {
         -webkit-box-flex: 0;
         -ms-flex: 0 0 100%;
         flex: 0 0 100%;
         max-width: 100%;
    }
     .order-xl-first {
         -webkit-box-ordinal-group: 0;
         -ms-flex-order: -1;
         order: -1;
    }
     .order-xl-last {
         -webkit-box-ordinal-group: 14;
         -ms-flex-order: 13;
         order: 13;
    }
     .order-xl-0 {
         -webkit-box-ordinal-group: 1;
         -ms-flex-order: 0;
         order: 0;
    }
     .order-xl-1 {
         -webkit-box-ordinal-group: 2;
         -ms-flex-order: 1;
         order: 1;
    }
     .order-xl-2 {
         -webkit-box-ordinal-group: 3;
         -ms-flex-order: 2;
         order: 2;
    }
     .order-xl-3 {
         -webkit-box-ordinal-group: 4;
         -ms-flex-order: 3;
         order: 3;
    }
     .order-xl-4 {
         -webkit-box-ordinal-group: 5;
         -ms-flex-order: 4;
         order: 4;
    }
     .order-xl-5 {
         -webkit-box-ordinal-group: 6;
         -ms-flex-order: 5;
         order: 5;
    }
     .order-xl-6 {
         -webkit-box-ordinal-group: 7;
         -ms-flex-order: 6;
         order: 6;
    }
     .order-xl-7 {
         -webkit-box-ordinal-group: 8;
         -ms-flex-order: 7;
         order: 7;
    }
     .order-xl-8 {
         -webkit-box-ordinal-group: 9;
         -ms-flex-order: 8;
         order: 8;
    }
     .order-xl-9 {
         -webkit-box-ordinal-group: 10;
         -ms-flex-order: 9;
         order: 9;
    }
     .order-xl-10 {
         -webkit-box-ordinal-group: 11;
         -ms-flex-order: 10;
         order: 10;
    }
     .order-xl-11 {
         -webkit-box-ordinal-group: 12;
         -ms-flex-order: 11;
         order: 11;
    }
     .order-xl-12 {
         -webkit-box-ordinal-group: 13;
         -ms-flex-order: 12;
         order: 12;
    }
     .offset-xl-0 {
         margin-left: 0;
    }
     .offset-xl-1 {
         margin-left: 8.333333%;
    }
     .offset-xl-2 {
         margin-left: 16.666667%;
    }
     .offset-xl-3 {
         margin-left: 25%;
    }
     .offset-xl-4 {
         margin-left: 33.333333%;
    }
     .offset-xl-5 {
         margin-left: 41.666667%;
    }
     .offset-xl-6 {
         margin-left: 50%;
    }
     .offset-xl-7 {
         margin-left: 58.333333%;
    }
     .offset-xl-8 {
         margin-left: 66.666667%;
    }
     .offset-xl-9 {
         margin-left: 75%;
    }
     .offset-xl-10 {
         margin-left: 83.333333%;
    }
     .offset-xl-11 {
         margin-left: 91.666667%;
    }
}
 .d-none {
     display: none !important;
}
 .d-inline {
     display: inline !important;
}
 .d-inline-block {
     display: inline-block !important;
}
 .d-block {
     display: block !important;
}
 .d-table {
     display: table !important;
}
 .d-table-row {
     display: table-row !important;
}
 .d-table-cell {
     display: table-cell !important;
}
 .d-flex {
     display: -webkit-box !important;
     display: -ms-flexbox !important;
     display: flex !important;
}
 .d-inline-flex {
     display: -webkit-inline-box !important;
     display: -ms-inline-flexbox !important;
     display: inline-flex !important;
}
 @media (min-width: 576px) {
     .d-sm-none {
         display: none !important;
    }
     .d-sm-inline {
         display: inline !important;
    }
     .d-sm-inline-block {
         display: inline-block !important;
    }
     .d-sm-block {
         display: block !important;
    }
     .d-sm-table {
         display: table !important;
    }
     .d-sm-table-row {
         display: table-row !important;
    }
     .d-sm-table-cell {
         display: table-cell !important;
    }
     .d-sm-flex {
         display: -webkit-box !important;
         display: -ms-flexbox !important;
         display: flex !important;
    }
     .d-sm-inline-flex {
         display: -webkit-inline-box !important;
         display: -ms-inline-flexbox !important;
         display: inline-flex !important;
    }
}
 @media (min-width: 768px) {
     .d-md-none {
         display: none !important;
    }
     .d-md-inline {
         display: inline !important;
    }
     .d-md-inline-block {
         display: inline-block !important;
    }
     .d-md-block {
         display: block !important;
    }
     .d-md-table {
         display: table !important;
    }
     .d-md-table-row {
         display: table-row !important;
    }
     .d-md-table-cell {
         display: table-cell !important;
    }
     .d-md-flex {
         display: -webkit-box !important;
         display: -ms-flexbox !important;
         display: flex !important;
    }
     .d-md-inline-flex {
         display: -webkit-inline-box !important;
         display: -ms-inline-flexbox !important;
         display: inline-flex !important;
    }
}
 @media (min-width: 992px) {
     .d-lg-none {
         display: none !important;
    }
     .d-lg-inline {
         display: inline !important;
    }
     .d-lg-inline-block {
         display: inline-block !important;
    }
     .d-lg-block {
         display: block !important;
    }
     .d-lg-table {
         display: table !important;
    }
     .d-lg-table-row {
         display: table-row !important;
    }
     .d-lg-table-cell {
         display: table-cell !important;
    }
     .d-lg-flex {
         display: -webkit-box !important;
         display: -ms-flexbox !important;
         display: flex !important;
    }
     .d-lg-inline-flex {
         display: -webkit-inline-box !important;
         display: -ms-inline-flexbox !important;
         display: inline-flex !important;
    }
}
 @media (min-width: 1200px) {
     .d-xl-none {
         display: none !important;
    }
     .d-xl-inline {
         display: inline !important;
    }
     .d-xl-inline-block {
         display: inline-block !important;
    }
     .d-xl-block {
         display: block !important;
    }
     .d-xl-table {
         display: table !important;
    }
     .d-xl-table-row {
         display: table-row !important;
    }
     .d-xl-table-cell {
         display: table-cell !important;
    }
     .d-xl-flex {
         display: -webkit-box !important;
         display: -ms-flexbox !important;
         display: flex !important;
    }
     .d-xl-inline-flex {
         display: -webkit-inline-box !important;
         display: -ms-inline-flexbox !important;
         display: inline-flex !important;
    }
}
 @media print {
     .d-print-none {
         display: none !important;
    }
     .d-print-inline {
         display: inline !important;
    }
     .d-print-inline-block {
         display: inline-block !important;
    }
     .d-print-block {
         display: block !important;
    }
     .d-print-table {
         display: table !important;
    }
     .d-print-table-row {
         display: table-row !important;
    }
     .d-print-table-cell {
         display: table-cell !important;
    }
     .d-print-flex {
         display: -webkit-box !important;
         display: -ms-flexbox !important;
         display: flex !important;
    }
     .d-print-inline-flex {
         display: -webkit-inline-box !important;
         display: -ms-inline-flexbox !important;
         display: inline-flex !important;
    }
}
 .flex-row {
     -webkit-box-orient: horizontal !important;
     -webkit-box-direction: normal !important;
     -ms-flex-direction: row !important;
     flex-direction: row !important;
}
 .flex-column {
     -webkit-box-orient: vertical !important;
     -webkit-box-direction: normal !important;
     -ms-flex-direction: column !important;
     flex-direction: column !important;
}
 .flex-row-reverse {
     -webkit-box-orient: horizontal !important;
     -webkit-box-direction: reverse !important;
     -ms-flex-direction: row-reverse !important;
     flex-direction: row-reverse !important;
}
 .flex-column-reverse {
     -webkit-box-orient: vertical !important;
     -webkit-box-direction: reverse !important;
     -ms-flex-direction: column-reverse !important;
     flex-direction: column-reverse !important;
}
 .flex-wrap {
     -ms-flex-wrap: wrap !important;
     flex-wrap: wrap !important;
}
 .flex-nowrap {
     -ms-flex-wrap: nowrap !important;
     flex-wrap: nowrap !important;
}
 .flex-wrap-reverse {
     -ms-flex-wrap: wrap-reverse !important;
     flex-wrap: wrap-reverse !important;
}
 .justify-content-start {
     -webkit-box-pack: start !important;
     -ms-flex-pack: start !important;
     justify-content: flex-start !important;
}
 .justify-content-end {
     -webkit-box-pack: end !important;
     -ms-flex-pack: end !important;
     justify-content: flex-end !important;
}
 .justify-content-center {
     -webkit-box-pack: center !important;
     -ms-flex-pack: center !important;
     justify-content: center !important;
}
 .justify-content-between {
     -webkit-box-pack: justify !important;
     -ms-flex-pack: justify !important;
     justify-content: space-between !important;
}
 .justify-content-around {
     -ms-flex-pack: distribute !important;
     justify-content: space-around !important;
}
 .align-items-start {
     -webkit-box-align: start !important;
     -ms-flex-align: start !important;
     align-items: flex-start !important;
}
 .align-items-end {
     -webkit-box-align: end !important;
     -ms-flex-align: end !important;
     align-items: flex-end !important;
}
 .align-items-center {
     -webkit-box-align: center !important;
     -ms-flex-align: center !important;
     align-items: center !important;
}
 .align-items-baseline {
     -webkit-box-align: baseline !important;
     -ms-flex-align: baseline !important;
     align-items: baseline !important;
}
 .align-items-stretch {
     -webkit-box-align: stretch !important;
     -ms-flex-align: stretch !important;
     align-items: stretch !important;
}
 .align-content-start {
     -ms-flex-line-pack: start !important;
     align-content: flex-start !important;
}
 .align-content-end {
     -ms-flex-line-pack: end !important;
     align-content: flex-end !important;
}
 .align-content-center {
     -ms-flex-line-pack: center !important;
     align-content: center !important;
}
 .align-content-between {
     -ms-flex-line-pack: justify !important;
     align-content: space-between !important;
}
 .align-content-around {
     -ms-flex-line-pack: distribute !important;
     align-content: space-around !important;
}
 .align-content-stretch {
     -ms-flex-line-pack: stretch !important;
     align-content: stretch !important;
}
 .align-self-auto {
     -ms-flex-item-align: auto !important;
     align-self: auto !important;
}
 .align-self-start {
     -ms-flex-item-align: start !important;
     align-self: flex-start !important;
}
 .align-self-end {
     -ms-flex-item-align: end !important;
     align-self: flex-end !important;
}
 .align-self-center {
     -ms-flex-item-align: center !important;
     align-self: center !important;
}
 .align-self-baseline {
     -ms-flex-item-align: baseline !important;
     align-self: baseline !important;
}
 .align-self-stretch {
     -ms-flex-item-align: stretch !important;
     align-self: stretch !important;
}
 @media (min-width: 576px) {
     .flex-sm-row {
         -webkit-box-orient: horizontal !important;
         -webkit-box-direction: normal !important;
         -ms-flex-direction: row !important;
         flex-direction: row !important;
    }
     .flex-sm-column {
         -webkit-box-orient: vertical !important;
         -webkit-box-direction: normal !important;
         -ms-flex-direction: column !important;
         flex-direction: column !important;
    }
     .flex-sm-row-reverse {
         -webkit-box-orient: horizontal !important;
         -webkit-box-direction: reverse !important;
         -ms-flex-direction: row-reverse !important;
         flex-direction: row-reverse !important;
    }
     .flex-sm-column-reverse {
         -webkit-box-orient: vertical !important;
         -webkit-box-direction: reverse !important;
         -ms-flex-direction: column-reverse !important;
         flex-direction: column-reverse !important;
    }
     .flex-sm-wrap {
         -ms-flex-wrap: wrap !important;
         flex-wrap: wrap !important;
    }
     .flex-sm-nowrap {
         -ms-flex-wrap: nowrap !important;
         flex-wrap: nowrap !important;
    }
     .flex-sm-wrap-reverse {
         -ms-flex-wrap: wrap-reverse !important;
         flex-wrap: wrap-reverse !important;
    }
     .justify-content-sm-start {
         -webkit-box-pack: start !important;
         -ms-flex-pack: start !important;
         justify-content: flex-start !important;
    }
     .justify-content-sm-end {
         -webkit-box-pack: end !important;
         -ms-flex-pack: end !important;
         justify-content: flex-end !important;
    }
     .justify-content-sm-center {
         -webkit-box-pack: center !important;
         -ms-flex-pack: center !important;
         justify-content: center !important;
    }
     .justify-content-sm-between {
         -webkit-box-pack: justify !important;
         -ms-flex-pack: justify !important;
         justify-content: space-between !important;
    }
     .justify-content-sm-around {
         -ms-flex-pack: distribute !important;
         justify-content: space-around !important;
    }
     .align-items-sm-start {
         -webkit-box-align: start !important;
         -ms-flex-align: start !important;
         align-items: flex-start !important;
    }
     .align-items-sm-end {
         -webkit-box-align: end !important;
         -ms-flex-align: end !important;
         align-items: flex-end !important;
    }
     .align-items-sm-center {
         -webkit-box-align: center !important;
         -ms-flex-align: center !important;
         align-items: center !important;
    }
     .align-items-sm-baseline {
         -webkit-box-align: baseline !important;
         -ms-flex-align: baseline !important;
         align-items: baseline !important;
    }
     .align-items-sm-stretch {
         -webkit-box-align: stretch !important;
         -ms-flex-align: stretch !important;
         align-items: stretch !important;
    }
     .align-content-sm-start {
         -ms-flex-line-pack: start !important;
         align-content: flex-start !important;
    }
     .align-content-sm-end {
         -ms-flex-line-pack: end !important;
         align-content: flex-end !important;
    }
     .align-content-sm-center {
         -ms-flex-line-pack: center !important;
         align-content: center !important;
    }
     .align-content-sm-between {
         -ms-flex-line-pack: justify !important;
         align-content: space-between !important;
    }
     .align-content-sm-around {
         -ms-flex-line-pack: distribute !important;
         align-content: space-around !important;
    }
     .align-content-sm-stretch {
         -ms-flex-line-pack: stretch !important;
         align-content: stretch !important;
    }
     .align-self-sm-auto {
         -ms-flex-item-align: auto !important;
         align-self: auto !important;
    }
     .align-self-sm-start {
         -ms-flex-item-align: start !important;
         align-self: flex-start !important;
    }
     .align-self-sm-end {
         -ms-flex-item-align: end !important;
         align-self: flex-end !important;
    }
     .align-self-sm-center {
         -ms-flex-item-align: center !important;
         align-self: center !important;
    }
     .align-self-sm-baseline {
         -ms-flex-item-align: baseline !important;
         align-self: baseline !important;
    }
     .align-self-sm-stretch {
         -ms-flex-item-align: stretch !important;
         align-self: stretch !important;
    }
}
 @media (min-width: 768px) {
     .flex-md-row {
         -webkit-box-orient: horizontal !important;
         -webkit-box-direction: normal !important;
         -ms-flex-direction: row !important;
         flex-direction: row !important;
    }
     .flex-md-column {
         -webkit-box-orient: vertical !important;
         -webkit-box-direction: normal !important;
         -ms-flex-direction: column !important;
         flex-direction: column !important;
    }
     .flex-md-row-reverse {
         -webkit-box-orient: horizontal !important;
         -webkit-box-direction: reverse !important;
         -ms-flex-direction: row-reverse !important;
         flex-direction: row-reverse !important;
    }
     .flex-md-column-reverse {
         -webkit-box-orient: vertical !important;
         -webkit-box-direction: reverse !important;
         -ms-flex-direction: column-reverse !important;
         flex-direction: column-reverse !important;
    }
     .flex-md-wrap {
         -ms-flex-wrap: wrap !important;
         flex-wrap: wrap !important;
    }
     .flex-md-nowrap {
         -ms-flex-wrap: nowrap !important;
         flex-wrap: nowrap !important;
    }
     .flex-md-wrap-reverse {
         -ms-flex-wrap: wrap-reverse !important;
         flex-wrap: wrap-reverse !important;
    }
     .justify-content-md-start {
         -webkit-box-pack: start !important;
         -ms-flex-pack: start !important;
         justify-content: flex-start !important;
    }
     .justify-content-md-end {
         -webkit-box-pack: end !important;
         -ms-flex-pack: end !important;
         justify-content: flex-end !important;
    }
     .justify-content-md-center {
         -webkit-box-pack: center !important;
         -ms-flex-pack: center !important;
         justify-content: center !important;
    }
     .justify-content-md-between {
         -webkit-box-pack: justify !important;
         -ms-flex-pack: justify !important;
         justify-content: space-between !important;
    }
     .justify-content-md-around {
         -ms-flex-pack: distribute !important;
         justify-content: space-around !important;
    }
     .align-items-md-start {
         -webkit-box-align: start !important;
         -ms-flex-align: start !important;
         align-items: flex-start !important;
    }
     .align-items-md-end {
         -webkit-box-align: end !important;
         -ms-flex-align: end !important;
         align-items: flex-end !important;
    }
     .align-items-md-center {
         -webkit-box-align: center !important;
         -ms-flex-align: center !important;
         align-items: center !important;
    }
     .align-items-md-baseline {
         -webkit-box-align: baseline !important;
         -ms-flex-align: baseline !important;
         align-items: baseline !important;
    }
     .align-items-md-stretch {
         -webkit-box-align: stretch !important;
         -ms-flex-align: stretch !important;
         align-items: stretch !important;
    }
     .align-content-md-start {
         -ms-flex-line-pack: start !important;
         align-content: flex-start !important;
    }
     .align-content-md-end {
         -ms-flex-line-pack: end !important;
         align-content: flex-end !important;
    }
     .align-content-md-center {
         -ms-flex-line-pack: center !important;
         align-content: center !important;
    }
     .align-content-md-between {
         -ms-flex-line-pack: justify !important;
         align-content: space-between !important;
    }
     .align-content-md-around {
         -ms-flex-line-pack: distribute !important;
         align-content: space-around !important;
    }
     .align-content-md-stretch {
         -ms-flex-line-pack: stretch !important;
         align-content: stretch !important;
    }
     .align-self-md-auto {
         -ms-flex-item-align: auto !important;
         align-self: auto !important;
    }
     .align-self-md-start {
         -ms-flex-item-align: start !important;
         align-self: flex-start !important;
    }
     .align-self-md-end {
         -ms-flex-item-align: end !important;
         align-self: flex-end !important;
    }
     .align-self-md-center {
         -ms-flex-item-align: center !important;
         align-self: center !important;
    }
     .align-self-md-baseline {
         -ms-flex-item-align: baseline !important;
         align-self: baseline !important;
    }
     .align-self-md-stretch {
         -ms-flex-item-align: stretch !important;
         align-self: stretch !important;
    }
}
 @media (min-width: 992px) {
     .flex-lg-row {
         -webkit-box-orient: horizontal !important;
         -webkit-box-direction: normal !important;
         -ms-flex-direction: row !important;
         flex-direction: row !important;
    }
     .flex-lg-column {
         -webkit-box-orient: vertical !important;
         -webkit-box-direction: normal !important;
         -ms-flex-direction: column !important;
         flex-direction: column !important;
    }
     .flex-lg-row-reverse {
         -webkit-box-orient: horizontal !important;
         -webkit-box-direction: reverse !important;
         -ms-flex-direction: row-reverse !important;
         flex-direction: row-reverse !important;
    }
     .flex-lg-column-reverse {
         -webkit-box-orient: vertical !important;
         -webkit-box-direction: reverse !important;
         -ms-flex-direction: column-reverse !important;
         flex-direction: column-reverse !important;
    }
     .flex-lg-wrap {
         -ms-flex-wrap: wrap !important;
         flex-wrap: wrap !important;
    }
     .flex-lg-nowrap {
         -ms-flex-wrap: nowrap !important;
         flex-wrap: nowrap !important;
    }
     .flex-lg-wrap-reverse {
         -ms-flex-wrap: wrap-reverse !important;
         flex-wrap: wrap-reverse !important;
    }
     .justify-content-lg-start {
         -webkit-box-pack: start !important;
         -ms-flex-pack: start !important;
         justify-content: flex-start !important;
    }
     .justify-content-lg-end {
         -webkit-box-pack: end !important;
         -ms-flex-pack: end !important;
         justify-content: flex-end !important;
    }
     .justify-content-lg-center {
         -webkit-box-pack: center !important;
         -ms-flex-pack: center !important;
         justify-content: center !important;
    }
     .justify-content-lg-between {
         -webkit-box-pack: justify !important;
         -ms-flex-pack: justify !important;
         justify-content: space-between !important;
    }
     .justify-content-lg-around {
         -ms-flex-pack: distribute !important;
         justify-content: space-around !important;
    }
     .align-items-lg-start {
         -webkit-box-align: start !important;
         -ms-flex-align: start !important;
         align-items: flex-start !important;
    }
     .align-items-lg-end {
         -webkit-box-align: end !important;
         -ms-flex-align: end !important;
         align-items: flex-end !important;
    }
     .align-items-lg-center {
         -webkit-box-align: center !important;
         -ms-flex-align: center !important;
         align-items: center !important;
    }
     .align-items-lg-baseline {
         -webkit-box-align: baseline !important;
         -ms-flex-align: baseline !important;
         align-items: baseline !important;
    }
     .align-items-lg-stretch {
         -webkit-box-align: stretch !important;
         -ms-flex-align: stretch !important;
         align-items: stretch !important;
    }
     .align-content-lg-start {
         -ms-flex-line-pack: start !important;
         align-content: flex-start !important;
    }
     .align-content-lg-end {
         -ms-flex-line-pack: end !important;
         align-content: flex-end !important;
    }
     .align-content-lg-center {
         -ms-flex-line-pack: center !important;
         align-content: center !important;
    }
     .align-content-lg-between {
         -ms-flex-line-pack: justify !important;
         align-content: space-between !important;
    }
     .align-content-lg-around {
         -ms-flex-line-pack: distribute !important;
         align-content: space-around !important;
    }
     .align-content-lg-stretch {
         -ms-flex-line-pack: stretch !important;
         align-content: stretch !important;
    }
     .align-self-lg-auto {
         -ms-flex-item-align: auto !important;
         align-self: auto !important;
    }
     .align-self-lg-start {
         -ms-flex-item-align: start !important;
         align-self: flex-start !important;
    }
     .align-self-lg-end {
         -ms-flex-item-align: end !important;
         align-self: flex-end !important;
    }
     .align-self-lg-center {
         -ms-flex-item-align: center !important;
         align-self: center !important;
    }
     .align-self-lg-baseline {
         -ms-flex-item-align: baseline !important;
         align-self: baseline !important;
    }
     .align-self-lg-stretch {
         -ms-flex-item-align: stretch !important;
         align-self: stretch !important;
    }
}
 @media (min-width: 1200px) {
     .flex-xl-row {
         -webkit-box-orient: horizontal !important;
         -webkit-box-direction: normal !important;
         -ms-flex-direction: row !important;
         flex-direction: row !important;
    }
     .flex-xl-column {
         -webkit-box-orient: vertical !important;
         -webkit-box-direction: normal !important;
         -ms-flex-direction: column !important;
         flex-direction: column !important;
    }
     .flex-xl-row-reverse {
         -webkit-box-orient: horizontal !important;
         -webkit-box-direction: reverse !important;
         -ms-flex-direction: row-reverse !important;
         flex-direction: row-reverse !important;
    }
     .flex-xl-column-reverse {
         -webkit-box-orient: vertical !important;
         -webkit-box-direction: reverse !important;
         -ms-flex-direction: column-reverse !important;
         flex-direction: column-reverse !important;
    }
     .flex-xl-wrap {
         -ms-flex-wrap: wrap !important;
         flex-wrap: wrap !important;
    }
     .flex-xl-nowrap {
         -ms-flex-wrap: nowrap !important;
         flex-wrap: nowrap !important;
    }
     .flex-xl-wrap-reverse {
         -ms-flex-wrap: wrap-reverse !important;
         flex-wrap: wrap-reverse !important;
    }
     .justify-content-xl-start {
         -webkit-box-pack: start !important;
         -ms-flex-pack: start !important;
         justify-content: flex-start !important;
    }
     .justify-content-xl-end {
         -webkit-box-pack: end !important;
         -ms-flex-pack: end !important;
         justify-content: flex-end !important;
    }
     .justify-content-xl-center {
         -webkit-box-pack: center !important;
         -ms-flex-pack: center !important;
         justify-content: center !important;
    }
     .justify-content-xl-between {
         -webkit-box-pack: justify !important;
         -ms-flex-pack: justify !important;
         justify-content: space-between !important;
    }
     .justify-content-xl-around {
         -ms-flex-pack: distribute !important;
         justify-content: space-around !important;
    }
     .align-items-xl-start {
         -webkit-box-align: start !important;
         -ms-flex-align: start !important;
         align-items: flex-start !important;
    }
     .align-items-xl-end {
         -webkit-box-align: end !important;
         -ms-flex-align: end !important;
         align-items: flex-end !important;
    }
     .align-items-xl-center {
         -webkit-box-align: center !important;
         -ms-flex-align: center !important;
         align-items: center !important;
    }
     .align-items-xl-baseline {
         -webkit-box-align: baseline !important;
         -ms-flex-align: baseline !important;
         align-items: baseline !important;
    }
     .align-items-xl-stretch {
         -webkit-box-align: stretch !important;
         -ms-flex-align: stretch !important;
         align-items: stretch !important;
    }
     .align-content-xl-start {
         -ms-flex-line-pack: start !important;
         align-content: flex-start !important;
    }
     .align-content-xl-end {
         -ms-flex-line-pack: end !important;
         align-content: flex-end !important;
    }
     .align-content-xl-center {
         -ms-flex-line-pack: center !important;
         align-content: center !important;
    }
     .align-content-xl-between {
         -ms-flex-line-pack: justify !important;
         align-content: space-between !important;
    }
     .align-content-xl-around {
         -ms-flex-line-pack: distribute !important;
         align-content: space-around !important;
    }
     .align-content-xl-stretch {
         -ms-flex-line-pack: stretch !important;
         align-content: stretch !important;
    }
     .align-self-xl-auto {
         -ms-flex-item-align: auto !important;
         align-self: auto !important;
    }
     .align-self-xl-start {
         -ms-flex-item-align: start !important;
         align-self: flex-start !important;
    }
     .align-self-xl-end {
         -ms-flex-item-align: end !important;
         align-self: flex-end !important;
    }
     .align-self-xl-center {
         -ms-flex-item-align: center !important;
         align-self: center !important;
    }
     .align-self-xl-baseline {
         -ms-flex-item-align: baseline !important;
         align-self: baseline !important;
    }
     .align-self-xl-stretch {
         -ms-flex-item-align: stretch !important;
         align-self: stretch !important;
    }
}
/*# sourceMappingURL=bootstrap-grid.css.map */

/* #Layout 
================================================== */
.list-style {
    margin-left: 40px;
}
.list-style.list-square li {
    list-style: square;
}
.italic {
	font-style: italic;
}
.slicknav_menu {
	display: none;
}
.slicknav_menu .slicknav_nav a span {
	font-weight: bold;
	margin-right: 10px;
}
.loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #6aa8ad;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 2s linear infinite;
    position: absolute;
    margin-left: 0;
    margin-right: 0;
    left: 49%;
    right: 0;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.btn,
a.btn,
button.btn {
	min-width: 150px;
	padding: 8px 28px;
	background: #f1b348;
	background: -webkit-linear-gradient(#fff0A8, #f9b421);
    background: linear-gradient(#fff0A8, #f9b421);
	border-radius: 3px;
	font-size: 0.86em;
	font-weight: bold;
	color: #000;
	display: inline-block;
	text-align: center;
	border-width: 1px;
	border-style: solid;
	border-color: #a88734 #9c7e31 #846a29;
}
.btn:hover,
.btn:focus,
.btn:hover:active,
a.btn:hover,
a.btn:focus,
a.btn:hover:active,
button.btn:hover,
button.btn:focus,
button.btn:hover:active {
	background: #f1b348;
	/*background: -webkit-linear-gradient(top,#f5d78e,#eeb933); 
	background: linear-gradient(to bottom,#f5d78e,#eeb933);*/
	border-color: #a88734 #9c7e31 #846a29;
	cursor: pointer;
}
.btn img {
	display: inline-block;
	vertical-align: middle;
	margin-right: 5px;
}
.btn + br + .btn {
    margin: 7px 0;
}
.btn.btn-simple {
    background: #f5d78b;
}
.previous-page .btn {
	background: #fdfdfd;
}
.previous-page .btn:hover,
.previous-page .btn:focus,
.previous-page .btn:hover:active {
	background: #fff4c7;
}
.other-brushes .btn {
    background: #fff;
    padding: 4px 20px;
    border-radius: 20px;
    min-width: inherit;
    margin-right: 3px;
    margin-bottom: 7px;
}
.buy-wrapper {
    display: block;
    padding: 10px;
    text-align: center;
    border-top: 1px solid;
    border-bottom: 1px solid;
    border-color: #dcdcdc;
    background: #fbfbfb;
}
.buy-wrapper .brushes-dropdown,
#brush-desc form[target="paypal"] table {
    width: 100%;
    margin-bottom: 10px;
}
.buy-wrapper .postal {
    display: none;
}
.buy-wrapper .postal:first-of-type,
.buy-wrapper .postal.enabled {
    display: block;
}

.contact-form .btn#submit {
	padding-left: 48px;
	color: #333;
	background-color: #f1b348;
	background-image: url(/images/icon-mail.png);
	background-repeat: no-repeat;
	background-position: 40px center;
}
.contact-form .btn#submit:hover {
	background-color: #d89726;
}
.title {
	font-weight: bold;
}
.view-cart {
    position: absolute;
    bottom: 0;
    right: 15px;
    height: 100%;
}
.view-cart #viewcart .cart-name {
    display: block;
}
.view-cart #viewcart {
    display: block;
    color: #000;
    text-transform: none;
    font-size: 14px;
    line-height: 24px;
    background: #f1b348;
    background: -webkit-linear-gradient(#fff0A8, #f9b421);
    background: linear-gradient(#fff0A8, #f9b421);
    border-left-width: 1px;
    border-right-width: 1px;
    border-style: solid;
    border-color: #549196;
    font-weight: bold;
    padding: 8px 10px 8px 30px;
    cursor: pointer;
    position: relative;
}
.view-cart #viewcart:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: url(/images/icon-basket.png) no-repeat center center;
    width: 30px;
    height: 40px;
}
.view-cart #viewcart:hover,
.view-cart #viewcart:focus {
    background: #f1b348;
    border-color: #a88734 #9c7e31 #846a29;

}
#header {
	background: #fff;
	padding: 20px 0 30px;
	margin-bottom: 30px;
}
#header .container {
    position: relative;
}
#header.sticky {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: none;
	background-color: #fff;
	z-index: 99999;
}
#logo {
    line-height: 1em;
    text-align: center;
}
#logo a {
    display: inline-block;
    *display: inline;
    line-height: 1em;
}
#logo .title {
	font-size: 38px;
	font-weight: bold;
	display: inline-block;
	margin-bottom: 0;
}
#nav-wrapper {
    position: fixed;
    top: 120px;
    left: 0;
    width: 100%;
    background-color: #6aa8ad;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #e6e6e6;
    box-shadow: 0 0 4px rgba(0,0,0,0.15);
    z-index: 99998;
}
#mainNav {
    display: block;
}
#mainNav .mainNav--mobile__openNav {
    display: none;
    position: fixed;
    right: 20px;
    top: 20px;
    padding: 10px;
    font-size: 20px;
    font-weight: 700;
    background: none;
    color: #000;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    z-index: 9999
}
#mainNav #menu li.mainNav--mobile__closeNav {
    display: none;
    position: absolute;
    right: 25px;
}
#mainNav #menu li.mainNav--mobile__closeNav a {
    font-size: 36px;
    font-weight: 400;
    color: #fff;
    padding: 0;
    line-height: 16px;
    width: initial;
}
#menu {
    line-height: 1em;
    margin-bottom: 0;
    text-align: center;
}
#menu li {
    display: inline-block;
    text-align: left;
    margin: 0;
}
#menu li,
#menu li a {
    color: #fff;
    font: normal 12px Arial;
    text-transform: uppercase;
}
#menu li a {
    padding: 13px;
    display: block;
    font-weight: bold;
    position: relative;
}
#menu > li:nth-child(2) a:before,
#menu > li:nth-last-of-type(2) a:before {
    content: '';
    width: 100%;
    height: 50%;
    position: absolute;;
    right: 0;
    top: 23%;
    border-right: 1px solid #fff;
}
#menu > li:nth-last-of-type(2) a:before {
    border-right: 0;
    border-left: 1px solid #fff;
}

#menu li:hover a,
#menu li:focus a {
    font-weight: bold;
    color: #fff4c7;
}
#menu li a:after {
    display: block;
    content: attr(title);
    font-weight: bold;
    height: 0;
    overflow: hidden;
    visibility: hidden;
}
#menu .parent:hover .child,
#menu .parent:focus .child,
#menu .parent:focus .child:focus {
    display: block;
}
#menu .parent .child {
    display: none;
    position: fixed;
    width: 100%;
    top: 160px;
    left: 0;
    margin: 0;
    background: #fdfdfd;
    border-bottom: 1px solid #e6e6e6;
    text-align: center;
    overflow: hidden;
    z-index: 99998;
}
#menu .parent .child li {
    display: inline-block;
    margin: 0 auto;
}
#menu .parent .child li a {
    color: #000;
    padding: 14px 20px;
}
#menu .parent .child li a:hover,
#menu .parent .child li a:focus {
    background: #e8e288;
}
#mainNav #menu .parent .child-load {
    display: none;
}
#mainNav #menu .parent .child-load {
    padding: 5px 0 5px 10px;
    width: 23px;
    font-size: 24px;
    vertical-align: top;
}
#mainContent {
	margin: 140px 0;
}
#mainContent__intro {
    margin-top: 20px;
	padding: 100px 0;
	background: url(/images/bg-brush.png) right bottom no-repeat;
	border-bottom: 5px solid #e8e288;
}
.section-wrapper {
	position: relative;
	margin: 60px 0 30px;
}
.section-wrapper + .section-wrapper {
    margin: 30px 0 60px;
} 
.section-wrapper .highlight {
	padding: 40px 20px;
	text-align: center;
	background: #f1f1f5;
	border-radius: 3px;
}
.section-wrapper .intro {
	text-align: center;
	display: block;
	margin-bottom: 50px;
}
.section-wrapper .intro .title {
	font-size: 20px;
}
.section-wrapper .intro .sub {
	display: block;
	font-size: 0.87em;
}
.text-wrapper {
    display: block;
    position: relative;
}
.text-wrapper .title {
    margin-top: 30px;
    font-size: 1.3em;
}
.text-wrapper a:not(.btn) {
    color: #a88734;
    text-decoration: underline;
}
.text-wrapper a:hover:not(.btn),
.text-wrapper a:focus:not(.btn) {
    color: #f1b348;
}
.breadcrumbs-wrapper {
	background: #fbfbfb;
	padding: 10px 14px;
	border-radius: 3px;
}
.breadcrumbs {
	margin: 0;
	line-height: 1em;
}
.breadcrumbs li {
	display: inline-block;
	margin-right: 7px;
	margin-bottom: 0;
	font-size: 11px;
    color: #9dbbae;
}
.breadcrumbs li:first-of-type,
.breadcrumbs li:first-of-type * {
	color: #000;
}
.breadcrumbs li a {
	display: inline-block;
	font-weight: bold;
    color: #9dbbae;
}
.breadcrumbs li a:hover,
.breadcrumbs li a.active {
	color: #000;
}
.page-title {
    margin: 30px 0 20px;
    padding-bottom: 0;
    border-bottom: 5px solid #e8e288;
}
.page-title a {
    text-decoration: underline;
}
.page-title.page-filter {
    margin-bottom: 0;
}
.banner-wrapper {
    margin: 0 0 20px;
    position: relative;
}
.banner-wrapper figure {
    position: relative;
}
.banner-wrapper figcaption {
    position: absolute;
    top: 35%;
    left: 0;
    right: 0;
    padding: 30px;
    color: #000;
    font-weight: bold;
    text-align: center;
    background: rgba(255, 250, 230, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 auto;
    width: 75%;
    z-index: 2;
}
.banner-wrapper figcaption span {
    display: block;
    font-size: 20px;
    line-height: 1.4em;
    margin-bottom: 0.8em;
}
.banner-wrapper figcaption .btn {
    line-height: 2em;
    font-size: 1.8vh;
}
.area {
    margin: 1rem 0;
    padding: 10px 14px;
    background: #fbfbfb;
    border: 1px solid #a09f9f; 
}
.area .form-wrapper {
    margin: 0;
}
.area .form-wrapper .form-group {
    margin: 0;
    border: 1px solid #a09f9f;
}
.filter-wrapper {
    position: relative;
    text-align: left;
    margin: 0;
    padding: 10px 14px;
    background: #fbfbfb;
}
.filter-wrapper .filter {
    margin: 0;
    line-height: 1em;
}
.filter-wrapper .filter button {
    padding: 7px 20px;
    border-radius: 3px;
    font-weight: bold;
    background: #fff;
    border: 1px solid #f2c963;
    line-height: 1em;
    margin-right: 10px;
    outline: none;
}
.filter-wrapper .filter li {
    margin-bottom: 0;
    display: inline-block;
    position: relative;
}
.filter-wrapper .filter li.title {
    margin-right: 14px;
}
.filter-wrapper .filter li:hover > button,
.filter-wrapper .filter li:focus > button,
.filter-wrapper .filter .active > button {
    background: #f2c963;
}
.filter-wrapper .filter-mobile {
    display: none;
    position: fixed;
    left: 0;
    top: 260px;
    padding: 10px;
    font-weight: 700;
    background: #f0c14b;
    color: #000;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    z-index: 9999
}
.filter-wrapper .filter li.filter-close {
    display: none;
    position: absolute;
    top: 0;
    right: 25px;
    margin-left: 50px;
}
.filter-wrapper .filter li.filter-close a {
    font-size: 36px;
    color: #fff;
}
.filter-wrapper .filter .parent:hover .child,
.filter-wrapper .filter .parent:focus .child {
    display: block;
}
.filter-wrapper .filter .parent .child {
    display: none;
    position: absolute;
    text-align: left;
    left: 0;
    top: 28px;
    margin: 0;
    width: 100%;
    z-index: 2;
    background: #f2c963;
}
.filter-wrapper .filter .parent .child li,
.filter-wrapper .filter .parent .child button {
    display: block;
    width: 220px;
    text-align: left;
}
.filter-wrapper .filter .parent .child button {
    border: 0;
    border-radius: 0;
    background: #e6e6e6;
}
.filter-wrapper .filter .child button:hover,
.filter-wrapper .filter .child button:focus,
.filter-wrapper .filter .child .active > button {
    background: #f2c963;
}

.brushes-wrapper {
	margin: 20px 0;
	text-align: center;
    position: relative;
}
.brushes-wrapper.is-active {
    margin-left: -15px;
    margin-right: -15px;
}
.brushes-wrapper.is-active .brush-info .info {
    min-height: 405px;
}
.brushes-wrapper .brush-info {
    min-width: 25%;
}
.brushes-wrapper .brush-info .info {
	margin: 14px 0;
	border-radius: 3px;
    height: auto;
    width: 100%;
	overflow: hidden;
	padding: 0 0 20px;
	background: #fff4c7;
    position: relative;
	transition: .3s background;
}
.brushes-wrapper .brush-info.model-discontinued .info:after {
    content: 'Buy now while stocks last!';
    position: absolute;
    left: 0;
    right: 0;
    display: table;
    margin-left: auto; 
    margin-right: auto; 
    top: 10px;
    width: fit-content;
    border-radius: 14px;
    background: url(/images/icon-basket-white.png) no-repeat 10px center #f14848;
    text-align: left;
    font-size: 12px;
    font-weight: bold;
    line-height: 30px;
    letter-spacing: 1px;
    color: #fff;
    padding-left: 36px;
    padding-right: 20px;
}
.brushes-wrapper .brush-info img {
	max-width: 100%;
	height: auto;
	margin-bottom: 10px;
}
.brushes-wrapper .brush-info .great-value {
	display: block;
	font-size: 0.68em;
	line-height: 2.2em;
	font-weight: bold;
	margin-bottom: 20px;
	text-transform: uppercase;
	color: #f14848;
}
.brushes-wrapper .brush-info .price {
	display: block;
	margin: 10px 0 0;
	font-size: 1.2em;
	color: #f14848;
}
.brushes-wrapper .brush-info .price + .postal-wrapper {
    font-size: 0.67em;
}
.brushes-wrapper .brush-info .title {
	display: block;
    color: #000;
	font-size: 1.2em;
	margin: 4px 0 14px;
}
.brushes-wrapper .brush-info .sub {
	display: block;
	padding: 0 17px;
	font-size: 0.86em;
}
.brushes-wrapper .brush-info .product-code {
    display: block;
    font-weight: normal;
    font-size: 11px;
    margin-top: 4px;

}
#brush-desc .brand {
	letter-spacing: 0.03em;
	padding-left: 20px;
    display: inline-block;
    position: relative;
    margin-bottom: 20px;
}
#brush-desc .brand:before {
	content: '';
	position: absolute;
	width: 10px;
	height: 100%;
	top: 0;
	left: 0;
	background: #6aad9e;
}
#brush-desc .wrapper .title {
	font-size: 2.4em;
}
#brush-desc .wrapper .product-code-wrapper {
    font-size: 12px;
    color: #676767;
}
#brush-desc .wrapper .price {
    font-size: 2em;
	color: #f14848;
    padding: 0;
    margin: 4px 0 10px;
    display: block;
    vertical-align: top;
}
#brush-desc .wrapper .price .postal-wrapper {
    font-size: 0.4em;
    display: block;
    color: #000;
}
#brush-desc .wrapper .other-brushes {
    padding: 20px 0;
    border-bottom: 1px solid #dcdcdc;
}
#brush-desc .form-group .form-control {
    font-weight: bold;
}
#brush-desc .previous-page {
	display: block;
	margin: 20px 0;
}
.brush-desc__more {
	margin: 50px 0 30px;
	padding: 60px 20px 20px;
	background: #fbfbfb;
	border-radius: 0;
	position: relative;
	overflow: hidden;
}
.brush-desc__more .title {
	font-size: 1.2em;
	line-height: 1.7em;
	letter-spacing: 0.03em;
	padding: 10px 20px;
	margin-bottom: 12px;
	background: #dcdcdc;
	color: #000;
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
}
.brush-desc__more a {
    text-decoration: underline;
}
#brush-pager {
	display: block;
	position: relative;
}
#brush-pager a {
	display: inline-block;
}
#brush-pager .brush-pager-carousel {
	margin: 20px 0;
}
.contact-info-wrapper {
	text-align: left;
	background: #fbfbfb;
	padding: 40px;
	border-radius: 3px;
}
.contact-info-wrapper .contact-info {
	margin-bottom: 30px;
	line-height: 20px;
}
.contact-info-wrapper .contact-info .title {
	color: #f1b348;
}
.contact-info-wrapper .contact-info .extra-info {
	display: block;
	font-size: 14px;
	font-weight: normal;
	color: #95989a;
}
.contact-info-wrapper .contact-info p > a:focus,
.contact-info-wrapper .contact-info p > a:hover {
	text-decoration: underline;
	color: #fbb044;
}
.contact-info-wrapper .contact-info a.btn {
	margin-top: 20px;
	background: none;
	padding: 11px 28px;
	border: 2px solid #fff;
}
.contact-info-wrapper .contact-info a.btn:focus,
.contact-info-wrapper .contact-info a.btn:hover {
	background: #fbb044;
	border: 2px solid #fbb044;
}
.contact-info-wrapper .contact-info + .small-smg .title {
	color: #fbb044;
}
#footer {
	background: #131a22;
	padding: 20px 0;
}
#footer * {
	color: #fff;
}
#footer input,
#footer textarea,
#footer .btn-contact {
    color: #fff;
}
#footer .form-group .form-control {
    background-color: #1d2a38;
}
#footer .btn-contact {
    color: #1d2a38;
    background: #fbfbfb;
}
#copyright {
	text-align: center;
	font-size: 11px;
	padding: 14px 0;
	background: #eee;
}
#copyright a {
    text-decoration: underline; 
}
#copyright #webDeveloper {
	display: block;
    text-decoration: none;
}

.form-wrapper   {
    display: block;
    max-width:350px;
    margin: 1rem 0;
    padding:0;
    -webkit-border-radius: 8px;
    border-radius: 8px;
}

.form-wrapper .form-group {
    margin: 0 0 1.5rem auto;
    padding: 0;
    position: relative;
    display: block;
    min-height: 44px;
    float: none;
    z-index:1;
    box-sizing: border-box;
}

.form-wrapper  ::-webkit-input-placeholder { 
    color: #bbb;
}
.form-wrapper  ::-moz-placeholder {
    color: #bbb;
}
.form-wrapper  :-ms-input-placeholder {
    color: #bbb;
}
.form-wrapper  :-moz-placeholder {
    color: #bbb;
}
.form-wrapper span {
    margin-bottom: 7px;
    display: block;
}
.form-wrapper .form-group + span {
    margin-top: 7px;
}
.form-group .form-control {
    color:#131a22;
    position: relative;
    display: block;
    width:100%;
    border-radius: 0;

    padding-bottom: 0;
    line-height: 43px;
    min-height: 43px;
    height: 44px;
    border:none;
    background-color:white;
    z-index:1;
    box-sizing: border-box;
    font-family: inherit;
    font-size:14px;
}

.form-group .form-control:focus {
    border:none;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom-color:#ccc;
    box-shadow:none;
    color:#131a22;
    outline: none !important;
}

.form-group .form-control option {
    display: block;
    padding-left:0.7rem;
    padding-right:0.7rem;
}

.form-group textarea {
    min-width: 100%;
}

.form-group .form-control:focus::-webkit-input-placeholder,
.form-group textarea .form-control:focus::-webkit-input-placeholder {
    color:transparent !important;
}
.form-group .form-control:focus:-ms-input-placeholder,
.form-group.textarea .form-control:focus:-ms-input-placeholder {
    color:transparent !important;
}
.form-group .form-control:focus::placeholder,
.form-group.textarea .form-control:focus::placeholder {
    color:transparent !important;
}

.form-group .form-control:not(:placeholder-shown):not([disabled])+label,
textarea .form-control:not(:placeholder-shown):not([disabled])+label,
.form-group .form-control:focus+label {
    opacity:1
}

.form-group .control-label {
    font-family: inherit;
    font-size:16px;
}

.form-radio label {
    width: initial;
    margin-right: 10px;
}
.form-radio label * {
    vertical-align: middle;
}

.btn-contact:hover {
    background-color: #f1b348;
}

.btn-contact {
    color:black;
    background-color:#f2c65a;
    display: inline-block;
    padding:0 1rem;
    min-width: 100px;
    border-radius: 0.25rem;
    line-height: 3rem;
    text-decoration: none;
    font-weight: bold;
    border:none;
    font-size:1rem;
    text-shadow:none;
    font-weight: bold;
}
.btn-contact:hover,
.btn-contact:focus,
.btn-contact:active {
    border:none;
    text-shadow:none;
    background-image:none;
}
.notifications p {
    padding: 10px;
    background: rgba(254,254,254,0.7)
}
.notifications p.sent-succ {
    background: rgb(107,173,106,0.7);
}
.notifications p.sent-fail {
    background: rgba(251,133,133,0.7);
}

p.postage-costs {
	font-size: 0.9em;
	text-align: center;
	margin: 20px 0 0 0;
}

/* #Product Page
================================================== */
.brush-img > .brush-slider > li:not(:first-of-type),
#brush-pager > .brush-pager-carousel a {
    display: none;
}

/* #Paypal Minicart
================================================== */
#PPMiniCart {
    z-index: 999999;
}

/* #Media Queries 
================================================== */
 @media only screen and (max-width: 1350px) {
 	#menu--mobile li {
 		margin: 14px 14px;
 	}
 }

 @media only screen and (max-width: 1200px) {
    #menu .parent .child li a {
        padding: 14px 14px;
    }
    .brushes-wrapper.is-active .brush-info .info {
        min-height: 428px;
    }
 }

/* Smaller than standard (devices and browsers) */
 @media only screen and (max-width: 991px) {
    .banner-wrapper figcaption {
        top: 7%;
    }
    .banner-wrapper figcaption span {
        font-size: 23px;
    }
    .filter-wrapper {
        padding: 0;
    }
    .filter-wrapper .filter-mobile {
        display: block;
    }
    .filter-wrapper .filter {
        height: 100%;
        width: 0;
        margin-top: 0;
        position: fixed;
        z-index: 999999;
        top: 0;
        left: 0;
        background-color: #f7dfa5;
        overflow-x: hidden;
        transition: .5s;
        padding-top: 90px;
        box-shadow: 1px 0px 3px #f0c14b;
    }
    .filter-wrapper .filter.openNav {
        width: 250px
    }
    .filter-wrapper .filter li {
        display: block;
    }
    .filter-wrapper .filter li.filter-close {
        top: 55px;
        display: block;
    }
    .filter-wrapper .filter li.title,
    .filter-wrapper .filter button {
        padding: 8px 8px 8px 32px;
        text-decoration: none;
        font-size: 14px;
        color: #000;
        text-align: left;
        display: block;
        width: 250px;
        border: 0;
        margin-bottom: 0;
        border-radius: 0;
        background: none;
        transition: .3s;
    }
    .filter-wrapper .filter .parent .child {
        position: relative;
        top: 0;
    }
    .filter-wrapper .filter .parent .child li, 
    .filter-wrapper .filter .parent .child button {
        width: 250px;
    }
    .filter-wrapper .filter li.title {
        background: #fbfbfb;
    }
    .filter-wrapper .filter button:hover,
    .filter-wrapper .filter button:focus {
        background: #f0c14b;
    }
    .brushes-wrapper.is-active .brush-info .info {
        min-height: 459px;
    }
 }
 @media only screen and (min-width: 768px) and (max-width: 991px) {
    #mainNav #menu .view-cart {
        position: relative;
        right: 0;
        float: right;
        vertical-align: top;
    }
    #mainNav #menu .view-cart #viewcart {
        font-size: 0;
    }
    #mainNav #menu .view-cart #viewcart:before {
        width: 40px;
    }
 }

/* Small devices and browser) */
 @media only screen and (max-width: 940px) {
    #menu li a {
        padding: 13px 11px;
    }
    #menu .parent .child li a {
        padding: 14px 7px;
        font-size: 11px;
    }
 }

/* All Mobile Sizes (devices and browser) */
 @media only screen and (max-width: 767px) {
    #mainNav #menu .view-cart {
        position: fixed;
        height: initial;
        right: 0;
    }
    #mainNav #menu .view-cart #viewcart {
        border-top-width: 1px;
        border-top-left-radius: 3px;
        border-right-width: 0;
        border-color: #a88734 #9c7e31 #846a29;
    }
    #header {
        padding: 20px 0 20px;
        margin-bottom: 0;
        box-shadow: 0 0 4px rgba(0,0,0,0.15);
        border-bottom: 1px solid #e6e6e6;
    }
    #logo a {
        display: block;
        max-width: 200px;
    }
    #menu > li:nth-child(2) a:before,
    #menu > li:nth-last-of-type(2) a:before {
        display: none;
    }
    #mainNav {
        padding: 0;
    }
    #mainNav .mainNav--mobile__openNav {
        display: block;
    }
    #mainNav #menu {
        height: 100%;
        width: 0;
        margin-top: 0;
        position: fixed;
        z-index: 999999;
        top: 0;
        right: 0;
        background-color: #6aa8ad;
        overflow-x: hidden;
        transition: .5s;
        padding-top: 90px;
        box-shadow: 1px 0px 3px #6aa8ad;
    }
    #mainNav #menu.mobile__openNav {
        width: 250px
    }
    #mainNav #menu li {
        display: block;
        font-size: 14px;
    }
    #mainNav #menu li.mainNav--mobile__closeNav {
        top: 55px;
        display: block;
    }
    #mainNav #menu li.title,
    #mainNav #menu a {
        padding: 8px 8px 8px 40px;
        text-decoration: none;
        font-size: 14px;
        color: #fff;
        text-align: left;
        text-transform: initial;
        display: block;
        width: 250px;
        border: 0;
        margin-bottom: 0;
        border-radius: 0;
        background: none;
        transition: .3s;
    }
    #mainNav #menu a {
        outline: none;
    }
    #mainNav #menu .parent {
        width: 250px;
    }
    #mainNav #menu .parent .child {
        position: relative;
        top: 0;
    }
    #mainNav #menu .parent .child li, 
    #mainNav #menu .parent .child a {
        width: inherit;
        color: #000;
    }
    #mainNav #menu .parent .child-load {
        padding: 3px 16px 3px 10px;
        width: 40px;
        font-size: 24px;
        display: inline-block;
        vertical-align: top;
        line-height: 1em;
    }
    #mainNav #menu .parent .child-load + a {
        padding-left: 0;
        display: inline-block;
        width: 184px;
    }
    #nav-wrapper {
        top: 20px;
        right: 0;
        left: initial;
        width: initial;
        border: none;
        background: none;
        box-shadow: none;
        z-index: 99999;
    }
    #mainContent {
        margin: 84px 0;
    }
    #mainContent__intro {
        padding: 0;
        background-size: contain;
    }
    #mainContent__intro .wrapper {
        padding: 20px;
        background-color: rgba(245,245,245,0.9)
    }
    .banner-wrapper figcaption span {
        font-size: 15px;
    }
    .section-wrapper {
        margin: 20px 0;
    }
    .page-title {
        margin: 30px 0 20px;
    }
    .brushes-wrapper .brush-info {
        width: 100%;
        min-width: 100%;
    }
    .brushes-wrapper .brush-info .info {
        width: 330px;
        margin: 20px auto;
    }
    .brushes-wrapper.is-active .brush-info .info {
        min-height: 436px;
    }
    #brush-desc .wrapper .title {
        margin-top: 20px;
    }
    .brush-desc__more {
        margin-top: 0;
    }
 }

/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
 @media only screen and (max-width: 575px) {
    #header {
        padding-bottom: 0;
    }
    #header .header-surround {
        position: relative;
        height: 64px;
    }
 }

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
 @media only screen and (max-width: 370px) {
    .brushes-wrapper .brush-info,
    .brushes-wrapper .brush-info .info {
        width: 290px;
    }
    #mainNav .mainNav--mobile__openNav {
        right: 0;
    }
    #PPMiniCart form {
        width: 280px !important;
        margin-left: -140px !important;
        padding: 10px 10px 63px !important;
    }
    #PPMiniCart ul {
        width: 260px !important;
    }
    #PPMiniCart .minicart-subtotal {
        bottom: 53px !important;
    }
    #PPMiniCart .minicart-submit {
        right: initial !important;
    }
    #PPMiniCart .minicart-details-name {
        width: 56% !important;
    }
    #PPMiniCart .minicart-details-price {
        width: 20% !important;
        margin-left: 2%;
    }
 }
 @media only screen and (max-width: 320px) {
    .brushes-wrapper .brush-info,
    .brushes-wrapper .brush-info .info {
        width: 100%;
    }
 }

 @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .section-wrapper {
        margin-top: 200px;
    }
 }

 @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) and (max-width: 767px) {
    #logo .title {
        max-width: 200px;
    }
    .section-wrapper {
        margin-top: 120px;
    }
 }