/* ================================ */
/* By Atypic - www.atypic.be
/* Update: 8 décembre 2016
/* ================================ */

/* HTML & BODY
/* CONTAINERS
/* LIENS
/* TITRES
/* PARAGRAPHES
/* IMAGES
/* NAV
/* LISTES
/* HR
/* ADDRESS
/* BLOCKQUOTE
/* IFRAME
/* INSIDE / PADDING
/* TEXT-ALIGN
/* TEXT-INDENT
/* TEXT-TRANSFORM
/* VERTICAL-ALIGN
/* DISPLAY
/* DISPLAY TABLE
/* TABLE
/* FLOAT
/* CLEARFIX
/* POSITION
/* VISIBILITY
/* LABELS
/* INPUTS
/* SUBMIT & BUTTON
/* POWERED BY ATYPIC
/* COMPLEMENTS : BOOTSTRAP
/* COMPLEMENTS : WORDPRESS
/* COMPLEMENTS : FONT-AWESOME
/* COMPLEMENTS : ANIMATE.CSS
/* COMPLEMENTS : BXSLIDER
/* COMPLEMENTS : MAGNIFIC POPUP
/* COMPLEMENTS : SUMOSELECT
/* COMPLEMENTS : AJAX LOAD MORE
/* COMPLEMENTS : TINYNAV
/* COMPLEMENTS : COOKIEBAR
/* RESPONSIVE
/* ================================ */

/* ================================ */
/* HTML & BODY
/* ================================ */

html, body {
    height: 100%;
}

html {
    font-size: 62.5%;
    overflow-y: scroll;
}

/* ================================ */
/* CONTAINERS
/* ================================ */

#global {
    overflow: hidden;
}

.container-1920 {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}
.container-1600 {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}
.container-1400 {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}
.container-1200 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.container-1170 {
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
}
.container-1024 {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
}
.container-800 {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}
.container-600 {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

/* ================================ */
/* LIENS
/* ================================ */

a,a:visited {
    cursor: pointer;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
a:focus {
    color: inherit;
    outline: none;
    outline-offset: 0;
    text-decoration: none;
}
a[href$='.pdf']::after {
    content: "\f1c1";
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: .8em;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-right: 4px;
    margin-left: 6px;
}

/* Liens & boutons */

a,
.btn,
button,
input[type="button"],
input[type="submit"] {
    transition: all 0.3s ease;
}

/* ================================ */
/* TITRES
/* ================================ */

h1,h2,h3,h4,h5,h6,
.h1,.h2,.h3,.h4,.h5,.h6 {
    margin: 30px 0 20px;
}
h1,.h1 {
    font-size: 2.2rem;
}
h2,.h2 {
    font-size: 2.1rem;
}
h3,.h3 {
    font-size: 2.0rem;
}
h4,.h4 {
    font-size: 1.9rem;
}
h5,.h5 {
    font-size: 1.8rem;
}
h6,.h6 {
    font-size: 1.7rem;
}

h1:first-child,h2:first-child,h3:first-child,h4:first-child,h5:first-child,h6:first-child,
.h1:first-child,.h2:first-child,.h3:first-child,.h4:first-child,.h5:first-child,.h6:first-child {
    margin-top: 0 !important;
}

/* ================================ */
/* PARAGRAPHES
/* ================================ */

p {
    margin: 15px 0;
}
p:empty {
    display: none;
}

/* ================================ */
/* IMAGES
/* ================================ */

img {
    height: auto;
    width: auto;
    max-height: 100%;
    max-width: 100%;
}
a img {
    border: 0;
    display: inline-block;
}

/* Si l'image dans un table-cell ne se redimentionne pas, il faut mettre .width100 */

.table-cell img.width100 {
    width: 100%;
}

/* ================================ */
/* NAV
/* ================================ */

nav ul {
    margin: 0;
    list-style: none !important;
}
nav ul li {
    margin: 0;
}

/* ================================ */
/* LISTES
/* ================================ */

ol,
ul,
ol ol,
ol ul,
ul ol,
ul ul{
    margin: 20px 20px 20px 40px;
    padding: 0;
}
ol ol,
ol ul,
ul ol,
ul ul{
    margin: 10px 10px 10px 20px;
}

/* Listes imbriquées */

ul ul {
    list-style: circle;
}
ul ul ul {
    list-style: square;
}

/* Liste/Menu horizontal */

ul.horizontal {
    margin: 0;
}
ul.horizontal > li {
    display: inline-block;
    margin: 0;
}
ul.horizontal > li:first-child {
    margin-left: 0 !important;
}
ul.horizontal > li:first-child::before {
    display: none;
}

/* Liste/Menu horizontal avec séparation */

ul.horizontal.tiret > li,
ul.horizontal.pipe > li,
ul.horizontal.bullet > li {
    margin: 0;
}
ul.horizontal.tiret > li::before {
    content: "-";
    padding: 0 5px;
}
ul.horizontal.pipe > li::before {
    content: "|";
    padding: 0 5px;
}
ul.horizontal.bullet > li::before {
    content: "•";
    padding: 0 5px;
}

/* Dans le cas d'une liste à puces centrée, aligne les puces avec le texte */

ol.center,
ul.center,
.center ol,
.center ul {
    list-style-position: inside;
    margin: 20px;
}

/* Affiche une liste vertical sans style ni margin */

ul.list {
    list-style: none;
    margin-left: 0;
    margin-right: 0;
}
ul.list li {
    margin: 0;
}

/* ================================ */
/* HR
/* ================================ */

hr {
    background: #cccccc;
    border: 0 none;
    height: 1px;
    margin: 20px 0;
}

/* ================================ */
/* ADDRESS
/* ================================ */

address {
    font-style: normal;
    margin: 15px 0;
}

/* ================================ */
/* BLOCKQUOTE
/* ================================ */

blockquote {
    font-style: italic;
    position: relative;
    margin: 40px;
    font-size: 1.15em;
    display: flex;
}
blockquote::before {
    content: '\201C';
    font-size: 50px;
    left: -35px;
    top: 3px;
}
blockquote::after {
    content: '\201D';
    font-size: 50px;
    right: -10px;
    bottom: -20px;
}
blockquote::before,
blockquote::after {
    position: absolute;
    line-height: 25px;
    font-family: georgia, arial, sans-serif;
    font-style: normal;
    color: #bbb;
}
blockquote cite {
    opacity: .7;
    display: block;
    margin-top: 10px;
    font-style: normal;
}
blockquote cite::before {
    content: "\2014 \2009";
}

/* ================================ */
/* IFRAME & VIDEO RESPONSIVE
/* ================================ */

iframe {
    display: block;
    margin: 40px auto;
}
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 30px;
    height: 0;
    overflow: hidden;
    margin: 40px auto;
}
.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

/* ================================ */
/* INSIDE (see PADDING instead)
/* ================================ */

.inside {
    padding: 20px;
}
.inside-tb {
    padding-top: 20px;
    padding-bottom: 20px;
}
.inside-lr {
    padding-left: 20px;
    padding-right: 20px;
}

/* ================================ */
/* PADDING
/* ================================ */

.padding-10 {
    padding: 10px;
}
.padding-20 {
    padding: 20px;
}
.padding-30 {
    padding: 30px;
}
.padding-40 {
    padding: 40px;
}
.padding-50 {
    padding: 50px;
}
.padding-60 {
    padding: 60px;
}
.padding-70 {
    padding: 70px;
}
.padding-80 {
    padding: 80px;
}
.padding-90 {
    padding: 90px;
}
.padding-100 {
    padding: 100px;
}
.padding-tb-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
.padding-lr-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* ================================ */
/* TEXT-ALIGN
/* ================================ */

.left {
    text-align: left;
}
.center {
    text-align: center;
}
.right {
    text-align: right;
}
.justify {
    text-align: justify;
}

/* ================================ */
/* TEXT-INDENT
/* ================================ */

.text-indent {
    text-indent: -9999999px;
}

/* ================================ */
/* TEXT-TRANSFORM
/* ================================ */

.uppercase {
    text-transform: uppercase;
}
.no-uppercase {
    text-transform: none;
}

/* ================================ */
/* TEXT COLUMNS CSS
/* ================================ */

[class*="columns-xs"],
[class*="columns-sm"],
[class*="columns-md"],
[class*="columns-lg"] {
    -webkit-column-gap: 3em;
    -moz-column-gap: 3em;
    column-gap: 3em;
}

.columns-xs-5 {
    -webkit-columns: 5;
    -moz-columns: 5;
    columns: 5;
}
.columns-xs-4 {
    -webkit-columns: 4;
    -moz-columns: 4;
    columns: 4;
}
.columns-xs-3 {
    -webkit-columns: 3;
    -moz-columns: 3;
    columns: 3;
}
.columns-xs-2 {
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2;
}
.columns-xs-1 {
    -webkit-columns: 1;
    -moz-columns: 1;
    columns: 1;
}

.columns h1,
.columns h2,
.columns h3,
.columns h4,
.columns h5,
.columns h6,
.columns .h1,
.columns .h2,
.columns .h3,
.columns .h4,
.columns .h5,
.columns .h6,
.columns table,
.columns ol,
.columns ul,
.columns li {
    -webkit-column-break-inside:avoid;
    -moz-column-break-inside:avoid;
    column-break-inside:avoid;
}

/* SM */
@media (min-width: 768px) {
    .columns-sm-5 {
        -webkit-columns: 5;
        -moz-columns: 5;
        columns: 5;
    }
    .columns-sm-4 {
        -webkit-columns: 4;
        -moz-columns: 4;
        columns: 4;
    }
    .columns-sm-3 {
        -webkit-columns: 3;
        -moz-columns: 3;
        columns: 3;
    }
    .columns-sm-2 {
        -webkit-columns: 2;
        -moz-columns: 2;
        columns: 2;
    }
    .columns-sm-1 {
        -webkit-columns: 1;
        -moz-columns: 1;
        columns: 1;
    }
}

/* MD */
@media (min-width: 992px) {
    .columns-md-5 {
        -webkit-columns: 5;
        -moz-columns: 5;
        columns: 5;
    }
    .columns-md-4 {
        -webkit-columns: 4;
        -moz-columns: 4;
        columns: 4;
    }
    .columns-md-3 {
        -webkit-columns: 3;
        -moz-columns: 3;
        columns: 3;
    }
    .columns-md-2 {
        -webkit-columns: 2;
        -moz-columns: 2;
        columns: 2;
    }
    .columns-md-1 {
        -webkit-columns: 1;
        -moz-columns: 1;
        columns: 1;
    }
}

/* LG */
@media (min-width:1200px) {
    .columns-lg-5 {
        -webkit-columns: 5;
        -moz-columns: 5;
        columns: 5;
    }
    .columns-lg-4 {
        -webkit-columns: 4;
        -moz-columns: 4;
        columns: 4;
    }
    .columns-lg-3 {
        -webkit-columns: 3;
        -moz-columns: 3;
        columns: 3;
    }
    .columns-lg-2 {
        -webkit-columns: 2;
        -moz-columns: 2;
        columns: 2;
    }
    .columns-lg-1 {
        -webkit-columns: 1;
        -moz-columns: 1;
        columns: 1;
    }
}

/* ================================ */
/* VERTICAL-ALIGN
/* ================================ */

.vtop,
.col.vtop,
.table-cell.vtop,
.table-table.vtop .table-cell,
table.vtop td {
    vertical-align: top !important;
}
.vmiddle,
.col.vmiddle,
.table-cell.vmiddle,
.table-table.vmiddle .table-cell,
table.vmiddle td {
    vertical-align: middle !important;
}
.vbottom,
.col.vbottom,
.table-cell.vbottom,
.table-table.vbottom .table-cell,
table.vbottom td {
    vertical-align: bottom !important;
}
ul.vmiddle li {
    vertical-align: middle;
}

/* ================================ */
/* DISPLAY
/* ================================ */

.none {
    display: none;
}
.block {
    display: block;
}
.inline-block {
    display: inline-block;
}

.flex {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.flex-nowrap {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.flex-vstart {
    -ms-flex-align: start;
    align-items: flex-start;
}
.flex-vend {
    -ms-flex-align: end;
    align-items: flex-end;
}
.flex-vcenter {
    -ms-flex-align: center;
    align-items: center;
}

.flex-hend {
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.flex-hcenter {
    -ms-flex-pack: center;
    justify-content: center;
}
.flex-hspacebetween {
    -ms-flex-pack: distribute;;
    justify-content: space-between;
}
.flex-hspacearound {
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.flex-vhcenter {
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flex-column {
    -ms-flex-direction: column;
    flex-direction: column;
}
.flex-row {
    -ms-flex-direction: row;
    flex-direction: row;
}

/* ================================ */
/* DISPLAY TABLE
/* ================================ */

.table-table {
    display: table;
    height: 100%;
    width: 100%;
    border-collapse: separate;
}
.table-row {
    display: table-row;
}
.table-cell {
    display: table-cell;
    vertical-align: top;
    height: 100%;
    float: none;
}

/* ================================ */
/* TABLE
/* ================================ */

table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}
table th {
    font-weight: bold;
    text-align: center;
}
table td,
table th {
    padding: 8px;
    vertical-align: middle;
}
table tr {
    border-bottom: 1px #eee solid;;
}

.table-container {
    background: #fff;
}
.table-container table {
    min-width: 100%;
    width: auto !important;
    height: auto !important;
}
.table-container.table-responsive {
    box-shadow: -20px 0 0 0px rgba(0,0,0,.1) inset;
}
.table-container.table-responsive table {
    table-layout: auto;
}
.table-container tr,
.table-container th,
.table-container td {
    width: auto !important;
    height: auto !important;
}


/* ================================ */
/* FLOAT
/* ================================ */

.floatr,
.col.floatr,
.cell.floatr {
    float: right;
}
.floatl,
.col.floatl,
.cell.floatl {
    float: left;
}

/* ================================ */
/* CLEARFIX
/* ================================ */

.cf::before,
.cf::after {
    content: " ";
    display: table;
}
.cf::after {
    clear: both;
}
.cf {
    *zoom: 1;
}

/* ================================ */
/* POSITION
/* ================================ */

.relative {
    position: relative;
}
.absolute {
    position: absolute;
}
.full-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}
html.ltie10 a.full-cover {
    background: url(img/ie/px.png);
}

/* ================================ */
/* VISIBILITY
/* ================================ */

.visibility-hidden {
    visibility: hidden;
}
.visibility-visible {
    visibility: visible;
}

/* ================================ */
/* LABELS
/* ================================ */

label {
    cursor: pointer;
}
label {
    margin-bottom: 0;
}
/* ================================ */
/* INPUTS
/* ================================ */

input,
textarea,
option,
select {
    display: block;
}
option,
select,
input[type="radio"],
input[type="checkbox"] {
    cursor: pointer;
}
option {
    padding: 5px;
}
textarea {
    resize: vertical;
    min-height: 100px;
    height: 100px;
    margin: 0;
}
textarea, input { outline: none; }
input,
textarea,
select{
    width: 100%;
    min-height: 35px;
    background:#fff;
    padding: 0 7px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
    background-clip: padding-box !important;
    transition: color 0.3s ease, background-color 0.3s ease, padding 0.3s ease, margin 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
textarea {
    padding: 5px 7px;
}
select{
    /*padding: 0px 4px;*/
    padding-right: 30px !important;
    background-image: url(img/form/select-arrow-gray1.png);
    background-position: 100% 50%;
    background-repeat: no-repeat; 
    min-width: 70px;

    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Supprime la flèche par défaut pour IE10+ */

select::-ms-expand {
    display: none;
}
input[disabled] {
    background-color: #f7f7f7;
}
input[type="radio"],
input[type="checkbox"] {
    background: none !important;
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    display: inline-block;
    margin: 5px 10px;
    width: auto !important;
    height: auto !important;
    min-height: 0 !important;
}  
input[type="radio"]:focus,
input[type="checkbox"]:focus {
    border: 0 !important;
    box-shadow: none !important;
}
input[type="file"] {
    padding: 5px;
    cursor: pointer;
    width: auto !important;
    height: auto !important;
    min-height: 0 !important;
}
input:focus,
textarea:focus,
select:focus {
    border-color: #66afe9;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102, 175, 233, 0.6);
    outline: 0 none;
}

/* ================================ */
/* SUBMIT & BUTTON
/* ================================ */

.btn,
button,
input[type="button"],
input[type="submit"] {
    border: 0;
    width: auto;
    cursor: pointer;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    margin: 0 auto;
    background-color:#0F98E7;
    color: #fff;
    padding: 5px 15px;
    font-size: inherit;

    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.btn:active,
button:active,
input[type="button"]:active,
input[type="submit"]:active {
    box-shadow: none;
    transition: none;
}

/* ================================ */
/* POWERED BY ATYPIC
/* ================================ */

#powered-by-atypic {
    position: fixed;
    z-index: 999999999;
    right: 20px;
    bottom: 0;
    animation: PoweredByAtypic .7s ease;
    animation-fill-mode:forwards;
}
#powered-by-atypic a {
    opacity: .8;
    color: #999999;
    background: #000;
    display: inline-block;
    padding: 6px;
    line-height: normal;
    text-decoration: none;
    border-radius: 0;
    border-radius: 2px 2px 0 0;
    font-family: Arial, Helvetica, sans serif;
    font-size: 11px;
    position: relative;

    transition: all 0.3s ease;
}
#powered-by-atypic a:hover {
    opacity: 1;
    color: #fff;
    background: #ce0000;
    text-decoration: none;
}
@keyframes PoweredByAtypic {
    0% {
        opacity: 0;
        transform: translate3d(0,100%,0);
    }
    100% {
        opacity: 1;
        transform: translate3d(0,0,0);
    }
}

/* ================================ */
/* COMPLEMENTS : BOOTSTRAP
/* ================================ */

/* Colonnes sans espace */

.row-no-padding {
    margin-left: 0;
    margin-right: 0;
}
.row-no-padding > [class*="col-"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Fix Safari with Flex */

.btn-group-vertical>.btn-group::after, .btn-group-vertical>.btn-group::before, .btn-toolbar::after, .btn-toolbar::before, .clearfix::after, .clearfix::before, .container-fluid::after, .container-fluid::before, .container::after, .container::before, .dl-horizontal dd::after, .dl-horizontal dd::before, .form-horizontal .form-group::after, .form-horizontal .form-group::before, .modal-footer::after, .modal-footer::before, .modal-header::after, .modal-header::before, .nav::after, .nav::before, .navbar-collapse::after, .navbar-collapse::before, .navbar-header::after, .navbar-header::before, .navbar::after, .navbar::before, .pager::after, .pager::before, .panel-body::after, .panel-body::before, .row::after, .row::before {
    width: 0;
}

/* 5 colonnes */

.col-xs-5ths,
.col-sm-5ths,
.col-md-5ths,
.col-lg-5ths {
    position: relative;
    min-height: 1px;
    padding-right: 10px;
    padding-left: 10px;
}

.col-xs-5ths {
    width: 20%;
    float: left;
}
@media (min-width: 768px) {
    .col-sm-5ths {
        width: 20%;
        float: left;
    }
}
@media (min-width: 992px) {
    .col-md-5ths {
        width: 20%;
        float: left;
    }
}
@media (min-width: 1200px) {
    .col-lg-5ths {
        width: 20%;
        float: left;
    }
}

/* ================================ */
/* COMPLEMENTS : WORDPRESS
/* ================================ */

/* WordPress Core */

.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 40px auto 40px auto;
    text-align: center;
}

.alignright {
    float:right;
    margin: 20px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 20px 20px 20px 0;
}

a img.alignright {
    float: right;
    margin: 20px 0 20px 20px;
}

a img.alignnone {
    margin: 20px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 20px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    position: relative;
    max-width: 100%; /* Image does not overflow the content area */
    text-align: center;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 100%;
    padding: 0;
    width: auto;
}

.wp-caption p.wp-caption-text {
    padding: 20px 40px;
    margin: 0;
    text-align: center;
    color: #999;
}

/* Text meant only for screen readers. */

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000; /* Above WP toolbar. */
}

table .alignnone,
table .aligncenter,
table .alignright,
table .alignleft {
    margin-top: 0;
    margin-bottom: 0;
}
ul .alignnone,
ul .aligncenter,
ul .alignright,
ul .alignleft {
    margin-top: 0;
    margin-bottom: 0;
}


/* Quelques classes WP */

.navigation {
    border-top: 1px solid #dddddd;
    margin: 30px 0;
    padding-top: 20px;
}

.post-thumbnail img {
    display: block;
    margin: 0 auto;
}
.loop-posts article {
    margin: 20px 0 30px;
}
.loop-posts .post-thumbnail {
    float: left;
    margin-right: 20px;
    max-width: 400px;
}
.single-post .post-thumbnail {
    float: right;
    margin-left: 30px;
    max-width: 50%;
}
.post-thumbnail.post-thumbnail-fullwidth {
    display: block;
    max-width: 100%;
    margin: 0 auto 40px;
    float: none;
}

/* Contact Form 7 */

body span.wpcf7-not-valid-tip,
body .wpcf7 span.error {
    color: #ef2547;
    display: block;
    padding: 5px 0;
    font-size: .85em;
}
body div.wpcf7-validation-errors {
    display: none !important;
}
body div.wpcf7-mail-sent-ok {
    color: #429c3d;
    margin: 20px 0;
    padding: 0;
    border: 0;
}
body .screen-reader-response {
    display: none;
}
body div.wpcf7 img.ajax-loader {
    display: none !important;
}
.wpcf7-form.sent > div:not(.wpcf7-response-output) {
    display: none;
}
.wpcf7-recaptcha iframe {
    margin: 0;
}
div.wpcf7-spam-blocked {
    display: none !important;
}
div.wpcf7 .ajax-loader {
    display: none !important;
}

/* Page 404 */

#page-404 {
    margin: 100px 0;
    text-align: center;
}

/* WPML */

#lang_sel_list {
    height: auto;
    text-align: center;
    text-transform: uppercase;
}
#lang_sel_list.lang_sel_list_vertical ul {
    border: 0;
}
#lang_sel_list.lang_sel_list_vertical a {
    border: 0;
}
.lang_sel_sel a {
    font-weight: bold;
}
.lang_missing a {
    color: #aaa !important;
}
.icl-lang-name {
    display: none;
}

/* Magnific Popup */

.mfp-close {
    background: none !important;
    border-radius: 0;
    padding: 0 !important;
    right: 0 !important;
}
.mfp-arrow:active {
    box-shadow: none;
}
.mfp-iframe-scaler iframe {
    margin: 0;
}

/* CF7 */

.wpcf7 .row {
    margin-bottom: 15px;
}

/* ShiftNav */

#shiftnav-toggle-main.shiftnav-toggle-main-align-center .shiftnav-main-toggle-content {
    height: 100%;
    padding: 5px;
}
#shiftnav-toggle-main.shiftnav-toggle-main-align-center .shiftnav-main-toggle-content img {
    max-height: 100%;
}
.shiftnav-site-title {
    text-align: center !important;
    display: none;
}
.shiftnav-wrap::before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #000;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    z-index: 9999999;
}
body.shiftnav-open .shiftnav-wrap::before {
    opacity: .5;
    visibility: visible;
}

#shiftnav-toggle-main {
    background: #fff;
    color: #666;
    box-shadow: 0 0 5px rgba(0,0,0,.3);
}
.shiftnav::after {
    -webkit-box-shadow: 0 0 15px rgba(0,0,0,.4);
    -moz-box-shadow: 0 0 15px rgba(0,0,0,.4);
    -ms-box-shadow: 0 0 15px rgba(0,0,0,.4);
    -o-box-shadow: 0 0 15px rgba(0,0,0,.4);
    box-shadow: 0 0 15px rgba(0,0,0,.4);
}
.shiftnav.shiftnav-skin-light {
    line-height: 1.3em;
    background: #f9f9f9;
    color: #666;
    background-size: cover;
}
.shiftnav a {
    text-decoration: none !important;
}
.shiftnav ul.shiftnav-menu, .shiftnav ul.shiftnav-menu ul.sub-menu {
    text-align: left;
}
.shiftnav.shiftnav-skin-light ul.shiftnav-menu ul.sub-menu {
    background: none;
}
.shiftnav.shiftnav-skin-light ul.shiftnav-menu > li.menu-item > .shiftnav-target {
    background: rgba(0,0,0,.06);
}
.shiftnav.shiftnav-skin-light .shiftnav-inner {
    background: rgba(255, 255, 255, .8);
} 
.shiftnav.shiftnav-skin-light ul.shiftnav-menu li.menu-item.current-menu-item > .shiftnav-target, .shiftnav.shiftnav-skin-light ul.shiftnav-menu > li.shiftnav-sub-accordion.current-menu-ancestor > .shiftnav-target, .shiftnav.shiftnav-skin-light ul.shiftnav-menu > li.shiftnav-sub-shift.current-menu-ancestor > .shiftnav-target, .shiftnav.shiftnav-skin-light ul.shiftnav-menu li.menu-item ul.sub-menu .current-menu-item .shiftnav-target, .shiftnav.shiftnav-skin-light ul.shiftnav-menu li.menu-item ul.sub-menu .current-page-ancestor .shiftnav-target {
    color: #333;
    background: #fff;
    font-weight: 600;
}
.shiftnav.shiftnav-skin-light ul.shiftnav-menu li.menu-item > .shiftnav-target {
    color: #666 !important;
}
.shiftnav.shiftnav-skin-light,
.shiftnav.shiftnav-skin-light ul.shiftnav-menu li.menu-item > .shiftnav-target {
    font-size: 1.5rem !important;
}
.shiftnav .logo img {
    width: 80%;
    max-width: 320px;
    margin: 30px 0;
}
.shiftnav #mobile-menu-lang {
    margin: 20px 0;
}


/* Search form */

#searchform input {
    display: inline-block;
}
#searchform #s {
    width: 60%;
}
#searchform #searchsubmit {
    width: auto;
}
#searchform {
    margin-bottom: 40px;
}
.nav-links .page-numbers {
    margin: 0 5px;
}

/* Menu langue WordPress */

#wpml-menu {
    text-transform: uppercase;
}
#wpml-menu #wpml-menu-other-langs {
    position: absolute;
    margin: 0;
    z-index: 100;
    list-style: none;
    visibility: hidden;
    opacity: 0;
    background: #fff;
}
#wpml-menu #wpml-menu-other-langs a {
    display: block;
}
#wpml-menu:hover #wpml-menu-other-langs {
    visibility: visible;
    opacity: 1;
}
#wpml-menu #wpml-menu-other-langs .icl-lang-name {
    display: none;
}
#wpml-menu-current-lang {
    position: relative;
    padding-right: 20px !important;
}
#wpml-menu-current-lang::after {
    content: "\f107";
    font-family: 'FontAwesome';
}
#wpml-menu-other-langs .lang_sel_sel {
    display: none;
}
#wpml-menu #wpml-menu-current-lang,
#navbar #wpml-menu a#wpml-menu-current-lang {
    position: relative;
    padding-right: 17px !important;
}

/* ACF Google Map */

.acf-map {
    width: 100%;
    height: 350px;
}


/* Galerie WP */

.gallery {
    margin: 20px 0;
    list-style: none;
    text-align: center;
}
.gallery [class*="col-"] {
    padding-top: 15px;
    padding-bottom: 15px;
}
.gallery a {
    display: inline-block;
}
.gallery .gallery-caption {
    text-align: left;
}
.gallery .gallery-icon img {
    /*width: 100%;*/
    max-width: 100%;
}

/* XS */

@media only screen and (max-width : 600px) {

    #searchform #s,
    #searchform #searchsubmit {
        display: block;
        width: 100%;
    }
}

/* ================================ */
/* COMPLEMENTS : FONT-AWESOME
/* ================================ */

/* Icone Font Awesome dans un <button>  */

button .fa {
    margin-right: 5px;
}

/* ================================ */
/* COMPLEMENTS : ANIMATE.CSS
/* ================================ */

.vh { visibility: hidden; }
.animated { visibility: visible !important; }

/* ================================ */
/* COMPLEMENTS : BXSLIDER
/* ================================ */

body .bx-wrapper {
    margin: 0 auto 70px;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: none;
    border: 0;
}
body .bx-wrapper .bx-viewport {
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0;
    left: 0;
    background: none;

    /*fix other elements on the page moving (on Chrome)*/
    -webkit-transform: translatez(0);
    -moz-transform: translatez(0);
    -ms-transform: translatez(0);
    -o-transform: translatez(0);
    transform: translatez(0);
}
body .bx-wrapper img {
    margin: 0 auto;
}
body .bx-controls.bx-has-pager {
    padding-top: 40px;
}
body .bx-viewport > ul,
body .bxslider {
    margin: 0;
}
body .bx-wrapper .bx-controls-direction a {
    -webkit-transition: none; 
    -moz-transition: none;
    -o-transition: none;
    transition: none;
    z-index: 500;
    background: none;
    color: #666;
    overflow: hidden;
    text-decoration: none !important;
}
body .bx-wrapper .bx-controls-direction a::before {
    text-indent: 9999px;
    font-size: 2.5em;
    font-family: 'FontAwesome';
    position: absolute;
}
body .bx-wrapper .bx-controls-direction a.bx-prev::before {
    content: "\f104";
    margin-left: 6px;
}
body .bx-wrapper .bx-controls-direction a.bx-next::before {
    content: "\f105";
    margin-left: 6px;
}
body .bx-wrapper .bx-loading {
    display: none;
}

/* ================================ */
/* COMPLEMENTS : MAGNIFIC POPUP
/* ================================ */

html, body {
    -webkit-backface-visibility: hidden;
}

.white-popup {
    position: relative;
    background: #FFF;
    padding: 20px;
    width: auto;
    max-width: 500px;
    margin: 20px auto;
}
.mfp-wrap *:active {
    box-shadow: none !important;
}
.mfp-title {
    text-align: left;
    color: #F3F3F3;
    word-wrap: break-word;
    padding-right: 36px;
    line-height: normal;
    font-size: 1.4rem;
}
.mfp-title > * {
    margin-top: 5px;
}
/* XS */
@media only screen and (max-width : 767px) {
    .mfp-title {
        display: none;
    }
}

/* Zoom effect */

.mfp-zoom-in {
    /* start state */
    /* animate in */
    /* animate out */
}
.mfp-zoom-in .mfp-with-anim {
    opacity: 0;
    transition: all 0.2s ease-in-out;
    transform: scale(0.8);
}
.mfp-zoom-in.mfp-bg {
    opacity: 0;
    transition: all 0.3s ease-out;
}
.mfp-zoom-in.mfp-ready .mfp-with-anim {
    opacity: 1;
    transform: scale(1);
}
.mfp-zoom-in.mfp-ready.mfp-bg {
    opacity: .8;
    background: #000;
}
.mfp-zoom-in.mfp-removing .mfp-with-anim {
    transform: scale(0.8);
    opacity: 0;
}
.mfp-zoom-in.mfp-removing.mfp-bg {
    opacity: 0;
}

/*  Newspaper effect */

.mfp-newspaper {
    /* start state */
    /* animate in */
    /* animate out */
}
.mfp-newspaper .mfp-with-anim {
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.5s;
    transform: scale(0) rotate(500deg);
}
.mfp-newspaper.mfp-bg {
    opacity: 0;
    transition: all 0.5s;
}
.mfp-newspaper.mfp-ready .mfp-with-anim {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}
.mfp-newspaper.mfp-ready.mfp-bg {
    opacity: 0.8;
}
.mfp-newspaper.mfp-removing .mfp-with-anim {
    transform: scale(0) rotate(500deg);
    opacity: 0;
}
.mfp-newspaper.mfp-removing.mfp-bg {
    opacity: 0;
}

/* Move-horizontal effect */
.mfp-move-horizontal {
    /* start state */
    /* animate in */
    /* animate out */
}
.mfp-move-horizontal .mfp-with-anim {
    opacity: 0;
    transition: all 0.3s;
    transform: translateX(-50px);
}
.mfp-move-horizontal.mfp-bg {
    opacity: 0;
    transition: all 0.3s;
}
.mfp-move-horizontal.mfp-ready .mfp-with-anim {
    opacity: 1;
    transform: translateX(0);
}
.mfp-move-horizontal.mfp-ready.mfp-bg {
    opacity: 0.8;
}
.mfp-move-horizontal.mfp-removing .mfp-with-anim {
    transform: translateX(50px);
    opacity: 0;
}
.mfp-move-horizontal.mfp-removing.mfp-bg {
    opacity: 0;
}

/* Move-from-top effect */

.mfp-move-from-top {
    /* start state */
    /* animate in */
    /* animate out */
}
.mfp-move-from-top .mfp-content {
    vertical-align: top;
}
.mfp-move-from-top .mfp-with-anim {
    opacity: 0;
    transition: all 0.2s;
    transform: translateY(-100px);
}
.mfp-move-from-top.mfp-bg {
    opacity: 0;
    transition: all 0.2s;
}
.mfp-move-from-top.mfp-ready .mfp-with-anim {
    opacity: 1;
    transform: translateY(0);
}
.mfp-move-from-top.mfp-ready.mfp-bg {
    opacity: 0.8;
}
.mfp-move-from-top.mfp-removing .mfp-with-anim {
    transform: translateY(-50px);
    opacity: 0;
}
.mfp-move-from-top.mfp-removing.mfp-bg {
    opacity: 0;
}

/* 3d unfold */

.mfp-3d-unfold {
    /* start state */
    /* animate in */
    /* animate out */
}
.mfp-3d-unfold .mfp-content {
    perspective: 2000px;
}
.mfp-3d-unfold .mfp-with-anim {
    opacity: 0;
    transition: all 0.3s ease-in-out;
    transform-style: preserve-3d;
    transform: rotateY(-60deg);
}
.mfp-3d-unfold.mfp-bg {
    opacity: 0;
    transition: all 0.5s;
}
.mfp-3d-unfold.mfp-ready .mfp-with-anim {
    opacity: 1;
    transform: rotateY(0deg);
}
.mfp-3d-unfold.mfp-ready.mfp-bg {
    opacity: 0.8;
}
.mfp-3d-unfold.mfp-removing .mfp-with-anim {
    transform: rotateY(60deg);
    opacity: 0;
}
.mfp-3d-unfold.mfp-removing.mfp-bg {
    opacity: 0;
}

/* Zoom-out effect */

.mfp-zoom-out {
    /* start state */
    /* animate in */
    /* animate out */
}
.mfp-zoom-out .mfp-with-anim {
    opacity: 0;
    transition: all 0.3s ease-in-out;
    transform: scale(1.3);
}
.mfp-zoom-out.mfp-bg {
    opacity: 0;
    transition: all 0.3s ease-out;
}
.mfp-zoom-out.mfp-ready .mfp-with-anim {
    opacity: 1;
    transform: scale(1);
}
.mfp-zoom-out.mfp-ready.mfp-bg {
    opacity: 0.8;
}
.mfp-zoom-out.mfp-removing .mfp-with-anim {
    transform: scale(1.3);
    opacity: 0;
}
.mfp-zoom-out.mfp-removing.mfp-bg {
    opacity: 0;
}

/* Fix Magnific Popup Opened + ShiftNav */

body.mfp-zoom-out-cur #shiftnav-toggle-main,
body.mfp-opened #shiftnav-toggle-main,
.mfp-wrap + .shiftnav-wrap + #shiftnav-toggle-main {
    display: none;
}

/* "Hinge" close effect */

@keyframes hinge {
    0% {
        transform: rotate(0);
        transform-origin: top left;
        animation-timing-function: ease-in-out;
    }
    20%, 60% {
        transform: rotate(80deg);
        transform-origin: top left;
        animation-timing-function: ease-in-out;
    }
    40% {
        transform: rotate(60deg);
        transform-origin: top left;
        animation-timing-function: ease-in-out;
    }
    80% {
        transform: rotate(60deg) translateY(0);
        opacity: 1;
        transform-origin: top left;
        animation-timing-function: ease-in-out;
    }
    100% {
        transform: translateY(700px);
        opacity: 0;
    }
}
.hinge {
    animation-duration: 1s;
    animation-name: hinge;
}

.mfp-with-fade .mfp-content, .mfp-with-fade.mfp-bg {
    opacity: 0;
    transition: opacity .5s ease-out;
}
.mfp-with-fade.mfp-ready .mfp-content {
    opacity: 1;
}
.mfp-with-fade.mfp-ready.mfp-bg {
    opacity: 0.8;
}
.mfp-with-fade.mfp-removing.mfp-bg {
    opacity: 0;
}
.mfp-img-alt {
    display: none;
}

/* Custom effect */

/* start state */
.my-mfp-zoom-in .zoom-anim-dialog {
    opacity: 0;

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



    -webkit-transform: scale(0.8); 
    -moz-transform: scale(0.8); 
    -ms-transform: scale(0.8); 
    -o-transform: scale(0.8); 
    transform: scale(0.8); 
}

/* animate in */
.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
    opacity: 1;

    -webkit-transform: scale(1); 
    -moz-transform: scale(1); 
    -ms-transform: scale(1); 
    -o-transform: scale(1); 
    transform: scale(1); 
}

/* animate out */
.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
    -webkit-transform: scale(0.8); 
    -moz-transform: scale(0.8); 
    -ms-transform: scale(0.8); 
    -o-transform: scale(0.8); 
    transform: scale(0.8); 

    opacity: 0;
}

/* Dark overlay, start state */
.my-mfp-zoom-in.mfp-bg {
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-out; 
    -moz-transition: opacity 0.3s ease-out; 
    -o-transition: opacity 0.3s ease-out; 
    transition: opacity 0.3s ease-out;
}
/* animate in */
.my-mfp-zoom-in.mfp-ready.mfp-bg {
    opacity: 0.8;
}
/* animate out */
.my-mfp-zoom-in.mfp-removing.mfp-bg {
    opacity: 0;
}


.mfp-zoom-in .mfp-figure,
.mfp-zoom-in .mfp-iframe-holder .mfp-iframe-scaler {
    opacity: 0;
    transition: all 0.3s ease-out;
    transform: scale(0.95)
}
.mfp-zoom-in.mfp-bg,
.mfp-zoom-in .mfp-preloader {
    opacity: 0;
    transition: all 0.3s ease-out
}
.mfp-zoom-in.mfp-image-loaded .mfp-figure,
.mfp-zoom-in.mfp-ready .mfp-iframe-holder .mfp-iframe-scaler {
    opacity: 1;
    transform: scale(1)
}
.mfp-zoom-in.mfp-ready.mfp-bg,
.mfp-zoom-in.mfp-ready .mfp-preloader {
    opacity: 0.8
}
.mfp-zoom-in.mfp-removing .mfp-figure,
.mfp-zoom-in.mfp-removing .mfp-iframe-holder .mfp-iframe-scaler {
    transform: scale(0.95);
    opacity: 0
}
.mfp-zoom-in.mfp-removing.mfp-bg,
.mfp-zoom-in.mfp-removing .mfp-preloader {
    opacity: 0
}
div.mfp-atypic .mfp-iframe-scaler {
    overflow: visible
}
div.mfp-atypic .mfp-zoom-out-cur {
    cursor: auto
}
div.mfp-atypic .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: pointer
}
div.mfp-atypic .mfp-iframe-scaler .mfp-close {
    top: -43px
}
div.mfp-atypic .mfp-figure::after {
    box-shadow: none;
    display: none
}
div.mfp-atypic button.mfp-arrow::before,
div.mfp-atypic button.mfp-arrow::after {
    border: none;
    margin: 0;
    display: none
}
div.mfp-atypic button.mfp-arrow::before {
    opacity: 1;
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 80px;
    line-height: 80px;
    margin-top: -40px;
    color: #fff;
    font-size: 50px;
    font-weight: normal;
    transition: all 0.3s ease-out;
}
div.mfp-atypic button.mfp-arrow::before {
    content: "\f105";
    font-family: 'FontAwesome'
}
div.mfp-atypic button.mfp-arrow-left::before {
    content: "\f104";
    font-family: 'FontAwesome'
}
div.mfp-atypic .mfp-preloader {
    width: 30px;
    height: 30px;
    line-height: 30px;
    background-color: #FFF;
    opacity: 0.65;
    margin: 0 auto;
    animation: rotateplane 1.2s infinite ease-in-out;
    border-radius: 100px
}
div.mfp-atypic .mfp-s-error .mfp-preloader {
    background: transparent;
    width: 100%;
    animation: none;
    white-space: nowrap
}
div.mfp-atypic button:hover {
    background: none;
    color: #fff !important;
}
@keyframes rotateplane {
    0% {
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg)
    }
}
@media (max-width: 900px){
    .mfp-arrow {
        text-shadow:0px 0px 5px rgba(0, 0, 0, 0.5)
    }
}

/*html.no-touch.no-phone.no-tablet.no-mobile.no-touch.no-ie body > :not([class*='mfp-']) {
    -webkit-transition: filter .1s ease;
    transition: filter .1s ease;
}
html.no-touch.no-phone.no-tablet.no-mobile.no-touch.no-ie .mfp-bg::before {
    content: "";
    background: radial-gradient(ellipse at center center , rgba(0, 0, 0, .5) 0%, transparent 70%);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}*/

/* ================================ */
/* COMPLEMENTS : AJAX LOAD MORE
/* ================================ */

#ajax-load-more ul.alm-listing {
    margin: 0;
}

/* ================================ */
/* COMPLEMENTS : SUMOSELECT
/* ================================ */

.SumoSelect label {
    margin: 0;
}
.SumoSelect > .CaptionCont,
.SumoSelect > .CaptionCont * {
    cursor: pointer !important;
}

/* ================================ */
/* COMPLEMENTS : TINYNAV
/* ================================ */

.tinynav { display: none }

/* ================================ */
/* COMPLEMENTS : COOKIEBAR
/* ================================ */

#cookie-bar {
    background: #fff !important;
    padding: 40px 10px !important;
    color: #333 !important;
    font-size: 17px !important;
    line-height: normal !important;
    border-top: 1px #ddd solid;
}

/* ================================ */
/* RESPONSIVE
/* ================================ */

/* LG */
@media (min-width:1200px) {

    .tinynav-lg .tinynav { display: block; }
    .tinynav-lg ul { display: none; }
}

/* MD */
@media only screen and (max-width : 1199px) {

    .tinynav-md .tinynav { display: block; }
    .tinynav-md ul { display: none; }


    .padding-50 {
        padding: 25px;
    }
    .padding-60 {
        padding: 30px;
    }
    .padding-70 {
        padding: 35px;
    }
    .padding-80 {
        padding: 40px;
    }
    .padding-90 {
        padding: 45px;
    }
    .padding-100 {
        padding: 50px;
    }
}

/* SM */
@media only screen and (max-width : 991px) {

    .table-container table th,
    .table-container table td {
        min-width: 150px;
    }

    .tinynav-sm .tinynav { display: block; }
    .tinynav-sm ul { display: none; }

    img.alignleft,
    img.aligncenter,
    img.alignright {
        float: none;
        margin: 20px auto;
        display: block;
    }
    .single-post .post-thumbnail {
        max-width: 100%;
        float: none;
        margin: 0 auto;
    }
}

/* XS */
@media only screen and (max-width : 767px) {

    #global {
        padding-bottom: 0 !important;
    }

    #powered-by-atypic {
        position: static;
        text-align: right;
    }
    #powered-by-atypic a {
        margin-right: 10px;
    }

    ul.menu:not(.no-responsive) > li,
    .cf:not(.no-responsive) > .col:not(.no-responsive),
    .table-table:not(.no-responsive) > .table-cell:not(.no-responsive) {
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
        float: none !important;
    }

    ul.horizontal.tiret:not(.no-responsive) > li::before,
    ul.horizontal.pipe:not(.no-responsive) > li::before,
    ul.horizontal.bullet:not(.no-responsive)> li::before {
        display: none;
    }

    .post-thumbnail {
        display: block !important;
        max-width: 100% !important;
        margin: 0 auto 20px !important;
        float: none !important;
    }

    form .row .col-xs-12 {
        margin-bottom: 5px;
    }

    .tinynav-xs .tinynav { display: block; }
    .tinynav-xs ul { display: none; }

    .wp-caption p.wp-caption-text {
        position: static;
        font-size: 1.5rem;
    }

    .padding-10,
    .padding-20,
    .padding-30,
    .padding-40,
    .padding-50,
    .padding-60,
    .padding-70,
    .padding-80,
    .padding-90,
    .padding-100 {
        padding: 20px;
    }

}

/* Other small things  */ 
@media only screen and (max-width : 480px) {
    #footer ul:not(.no-responsive),
    #footer ul:not(.no-responsive) li {
        display: block;
        margin-left: 0;
    }
    #footer ul:not(.no-responsive) li {
        width: 100%;
    }

    #page-404 {
        margin: 10px 0;
    }
}