@charset "utf-8";

/* viewport */ 
@viewport { 
    width: device-width; 
    zoom: 1; 
}

body {
    font-family: Poppins;

  min-height:100vh;
}

div#bodymain {
  padding:0;
}

/* IMPORTANT */

.important{
    display:inline-block;
    text-align:center;
    padding:4px;
    background-color:rgba(0,96,0,.1);
    border:solid 1px rgba(0,128,0,.1);
    border-radius:5px;
    margin:0 0 16px 0;
}

.veryimportant{
    display:inline-block;
    text-align:center;
    padding:4px;
    background-color:rgba(96,0,0,.1);
    border:solid 1px rgba(128,0,0,.1);
    border-radius:5px;
    margin:0 0 16px 0;
}


/* RGPD */

.rgpd_banner {
    position:fixed;
    display:flex;
    flex-flow:row nowrap;
    width:100%;
    padding:16px 8px;
    justify-content:center;
    align-items:center;
    background-color: rgba(69,90,100,.75);  
    backdrop-filter: blur(5px);
    color:#fff;
    z-index:9999;
}

.rgpd_banner a {
    font-weight:700;
    color:#fff;
}

.rgpd_preferences {
    position:fixed;
    display:flex;
    flex-flow:column nowrap;
    width:80vw;
    left:10vw;
    padding:8px;
    top:10vh;
    max-height:80vh;
    overflow-y: auto;
    background-color: rgba(69,90,100,.75);  
    backdrop-filter: blur(5px);
    border: solid 1px rgba(69,90,100,.75);
    border-radius:6px;
    z-index:9999;
    color:#fff;
}

.rgpd_preferences>div{
    margin:16px 32px;
    display:flex;
    flex-flow:column nowrap;
    
}

.rgpd_preferences p {
    margin:16px;
    display:flex;
    flex-flow:column nowrap;
    justify-content:center;
    align-items:center;
}

.rgpdform {
    position:relative;
    width:100%;
    height:100%;
    display:flex;
    flex-flow: column nowrap;
    justify-content:flex-start;
    align-items:center;
    background-color: rgba(69,90,100,.15);  
    border: solid 1px rgb(69,90,100);
    border-radius:6px;
    padding:16px;
}

.rgpdform>.auth {
    position:relative;
    width:100%;
    display:flex;
    flex-flow: row nowrap;
    justify-content:flex-start;
    align-items:center;
    padding:8px 0;
}

.rgpdform>.auth:not(:last-child) {
    margin-bottom:24px;
}

.rgpdform>.auth>.name {
    width:150px;
    max-width:100%;
    min-width:170px;
    font-weight:600;
    text-align:center;
}

.rgpdform>.auth>.status {
    display:flex;
    flex-flow: row nowrap;
    justify-content:space-around;
    align-items:center;
    width:120px;
    min-width:140px;
    padding:0 10px;
}

.rgpdform>.auth>.status>div {
    display:flex;
    flex-flow: row nowrap;
    justify-content:center;
    align-items:center;
}

.rgpdform>.auth>.status>div>label {
    margin-bottom:0;
    padding-left:4px;
}


.offline_body {
     width:100vw;
     height:100vh;
     background-size:cover;
}

.offline_content {
    display:flex;
    flex-flow:column nowrap;
    justify-content:space-around;
    align-items:center;
    height:100%;
    width:100%;
    padding:0 16px;
}

.offline_content h1{
    font-size:56px;
    font-weight:700;
}

.offline_content .offline_message {
    width:70%;
    max-width:800px;
    text-align:center;
    padding:8px;
    background-color:rgba(255,255,255,.5);
    font-size:24px;
}

.offline_content .login{
    border:solid 1px #fff;
    border-radius:5px;
    background-color:rgba(255,255,255,.3);
    padding:16px;
}

/* HEADER */

header, header * {
   z-index:200;
}

header a.logo {
  margin-left:-40px;
}


.menutop>nav {
    position: relative;
    min-height: 69px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2.3px;
    width: 100%;
}



ul.smartanimatedmenu {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: left;
    position: absolute;
    height: 69px;
        background-color: transparent;
        display:flex;
}

ul.smartanimatedmenu.hide {
    display:none;
}

#scrolltop {
    position: fixed;
    bottom: 80px;
    margin: 0;
    right: 8px;
    z-index: 5000;
    opacity:0;
}

#scrolltop img{
    opacity:.8;
    transform:scale(.95,.95);
    transition:all .2s;
}


#scrolltop img:hover{
    transform:scale(1.1,1.1);
    opacity:1;
}

body.plx1 ul.smartanimatedmenu {
    background-color: rgba(73,97,153,.3);
    color: #eeeeee;
}

body.plx1 ul.smartanimatedmenu>li {
    background-color: rgba(73,97,153,.3);
}

ul.smartanimatedmenu>li>a>img {
    bottom: 1px;
    width: 28px;
    height: auto;
    margin-right: 4px;
    opacity: .75;
    -webkit-transition: opacity .25s;
    transition-timing-function: linear;
}

ul.smartanimatedmenu>li {
        display:flex;
    flex-flow: row nowrap;
    justify-content:center;
    align-items:center;
    background-color: transparent;
    line-height: 69px;
        overflow: visible;
    position: relative;
    padding: 0 8px;
    margin: 0;
    color: #eeeeee;
    font-weight: 700;
    background-color: #141414;
    transition: background-color 0.3s ease-out;

    text-align: center;
}

ul.smartanimatedmenu>li>a:hover>img {
    opacity: 1;
}

ul.smartanimatedmenu a {
    text-decoration: none;
    width: 100%;
    color: inherit;
    display:flex;
    flex-flow:row nowrap;
    justify-content: space-around;
    align-items:center;
    margin-left: initial;
    font-size: 14px !important;
    font-weight:700;
}




ul.smartanimatedmenu.smartResponsive {
    background-color: rgba(33,37,41,.5);
    color: #eeeeee;
}

ul.smartanimatedmenu.smartResponsive>li {
    background-color: rgba(33,37,41,.5);
}

ul.smartanimatedmenu.smartResponsive>li.active {
    background-color: rgba(33,37,41,.8);
}

body.plx1 ul.smartanimatedmenu.smartResponsive {
    background-color: rgba(73,97,153,.5);
    color: #eeeeee;
}

body.plx1 ul.smartanimatedmenu.smartResponsive>li {
    background-color: rgba(73,97,153,.5);
}

body.plx1 ul.smartanimatedmenu.smartResponsive>li.active {
    background-color: rgba(73,97,153,.8);
}


ul.smartanimatedmenu.smartResponsive li:hover {
	background-color: rgba(33,37,41,.95);
}

body.plx1 ul.smartanimatedmenu.smartResponsive li:hover {
	background-color: rgba(73,97,153,.95);
}

ul.smartanimatedmenu:after
{
	content: ".";
	display:block;
	height:0;
	clear:both;
	visibility:hidden;
}

.smartanimatedmenuicon {
    position: absolute;
    right: 20px;
    z-index: 1010;
    top: 18px;
    display: none;
    cursor:pointer;
}

ul.smartanimatedmenu.smartResponsive {
    position: absolute;
    right: 0;
    top: 75px !important;
    height:auto;
    padding: 0;
    display: none;
    width: 160px;
}

ul.smartanimatedmenu.smartResponsive.display {
    display: block !important;
}

/* LANGUAGE */

div.mod-languages ul{
  list-style-type:none !important;
  margin-bottom:0;
  padding-left:8px;
}

div.mod-languages ul li {
    background-color: transparent !important;
    padding:0 !important;
}

/* PARALLAX */

.fixed {
    position:fixed;
}

div.plxzone {
  position: relative;
  padding:0 !important;
  height:600px;
  overflow:hidden;
}

div.plxbg {
  background-position: center center;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  top:0;
  left:0;
}

aside.plxcontent {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index:50;
      top:0;
  left:0;
}


/* PLX1 */

.plxcontent1{
    color:#fff;
}

div.plxcontent1>div>div:first-child {
    position:relative;
    padding-top:100px;
    height:300px;
}

div.plxcontent1>div>div:first-child>div {
    height:100%;
}

div.plxcontent1>div>div:first-child>div * {
    display:inline-block;
    position:absolute;
    background-color:rgba(24,32,51,.6);
}

.opcfull {
    opacity:1 !important;
}

div.plxcontent1 h1.tm1  {
    padding: 0 3px 3px 3px;
    top:24%;
    left:18%;
    opacity:0;
}

div.plxcontent1 h2  {
    font-size:20px;
    padding: 0 2px 2px 2px;
    left:28%;
    opacity:0;
}

div.plxcontent1 h2.tm2  {
    top:55%;
}

div.plxcontent1 h2.tm3  {
    top:75%;
}

div.plxcontent1>div>div:last-child {
    height:300px;
}

div.plxcontent1>div>div:last-child>div:first-child {
    height:90%;
}

div.plxcontent1>div>div:last-child>div:first-child * {
    display:inline-block;
    position:absolute;
}

div.plxcontent1 img.tm4  {
    width:auto;
    height:60%;
    left:41%;
    opacity:0;
}

div.plxcontent1 img.tm5  {
    width:10%;
    min-width:130px;
    max-width:180px;
    height:auto;
    right:32px;
    bottom:0;
}

div.plxcontent1>div>div:last-child>div:last-child {
    height:10%;
}

div.plxcontent1 div.soc_icons_box{
    height:100%;
    position:absolute;
    background-color:rgba(24,32,51,.3);
    left:32px;
    display:flex;
    padding:0 3px !important;

}

div.plxcontent1 div.soc_icons_box span{
    font-size:18px;
}

div.plxcontent1 div.soc_icons_box ul{
    height:100%;
    list-style-type: none;
    -webkit-padding-start:5px;
    -webkit-margin-after:0;
}

div.plxcontent1 div.soc_icons_box ul>li{
    float:left;
    z-index:50;
    width:24px;
    height:24px;
    cursor:pointer;
    padding-top:3px;
}

/* PLX2 */

#plxzone02>div>div.plxbg {
    top:-120px;
}

div.plxcontent2  {
    position: absolute;
    width: 100%;
    height: 100%;
}

div.plxcontent2>div  {
    width: 100%;
    height: 100%;
}

.plxcontent2 div.left, .plxcontent2 div.right  {
    width:70%;
    background-color:transparent;
    overflow:hidden;
}

.plxcontent2 div.left  {
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-right:1%;
        max-width:560px;
    max-height:420px;
}

.plxcontent2 div.right  {
    height:70%;
    margin-left:1%;
    text-align:center;
    max-width:648px;
    max-height:420px
}

.plxcontent2 div.left img  {
    position:relative;
    width:100%;
    height:auto;
    left:150%;
    opacity:0;
    margin-left:0;
}

.plxcontent2 div.right>div  {
    background-color:rgba(24,32,51,.3);
    color:#fff;
    position:relative;
    width:100%;
    height:100%;
    left:-150%;
    opacity:0;
    padding:8px;
    
}

.plxcontent2 h1  {
    font-size:56px;
    padding: 3px;
}

.plxcontent2 h1  {
    margin-bottom:0;
}

.plxcontent2>p  {
    margin-bottom:0;
}

.plxcontent2 div.address  {
    color:rgba(248,255,51,1);
    font-size:32px;
    line-height:36px;
}

.plxcontent2 div.address a, .plxcontent2 div.address a:hover, .plxcontent2 div.address a:visited{
    color:rgba(248,255,51,1);
    text-decoration:none;
}

.plxcontent2  div.address img  {
    width:24px;
    height:auto;
  	margin-bottom:6px;
         user-select:none;
}

.plxcontent2 div.address *  {
    position:relative;
}

.plxcontent2 div.address div {
    width:300px;
    width:100%;
    text-align:center;
    line-height:2.8vw;
}

/* PLX3 */


#modplx3>div {
    width:100%;
    height:100%;
}

div.plx3  {
    height:100%;
}

div.plx3 a  {
    color:rgba(248,255,51,.97)
}

div.plx3>div.top, div.plx3>div.bottom  {
    width:90%;
    padding: 16px;
    background-color:rgba(24,32,51,.8);
    border-radius:8px;
    color:#fff;
    font-size:20px;
    text-indent:24px;
    opacity:.66;
    transition: opacity .5s;
}


div.plx3>div.top:hover, div.plx3>div.bottom:hover  {
    opacity:1;
}


/* GMAP */
section#mod2-3 {
    width:100%;
    padding:0 !important;
}

section#mod2-3>.row {
    width:100%;
    height:100%;
}

div.smartgmap {
  width:100%;
  height:100%;
}

div#plxzone03 {
    height:800px;
}

/* SCROLL TOP BUTTON */
img#scrolltop {
    opacity:0;
    z-index:2000;
    position:fixed;
    bottom:16px;
    right:16px;
    cursor: pointer;
    width:48px;
    height:48px;
}

/* DISPLAY GRID */



.blog{
    width:100%;
}

div.grid{
    max-width:100%;
}

div.displaygrid {
    width:100%;
    display:flex;
    justify-content: center;
    margin: 16px 0 48px 0;
}

div.tablecontainer{
    display:block;
    max-width:100%;
    overflow-x:auto;
}



div.displaygrid .title{
    display:block;
    width:100%;
    color:#444444;
    text-align:center;
    font-weight:700;
    font-size:13px;
}

div.displaygrid .legend{
    text-align:left;
    font-size:14px;
    font-weight:400;
}

div.grid>ul{
    list-style-type:none;
    font-size: 14px;
}

table.smartshoptable {
    margin-left:auto;
    margin-right:auto;
    min-width:700px;
}

/* ARTICLES BLOG, ARTICLE */

.item-page {
    width:100%;
}

.period time {
  font-size:24px;
}

div.blog h1, .item-page h1, div.sitemap h1 {
  -webkit-margin-before:16px;
  -webkit-margin-after:32px;
  text-align:center;
}

div.blog h2, .item-page h2 {
  -webkit-margin-before:8px;
  -webkit-margin-after:16px;
}

div.blog h4, .item-page h4 {
  -webkit-margin-before:6px;
  -webkit-margin-after:12px;
}

div.blog h3, .item-page h3 {
  -webkit-margin-before:5px;
  -webkit-margin-after:10px;
}

.leading-0 .page-header{
  display:none;
}

.blog div[class^="leading"]{
  margin-top:16px;
  margin-bottom:32px;
}

.blog p, .item-page p{
  text-indent:24px;
}

/* BLOG PRICE */

div.openinghours{
    background-color:rgba(229,242,229,1);
    display:inline-block;
    padding:24px !important;
    text-align:center;
      box-shadow: 
    inset 0 3px 2px rgba(255,255,255,.22), 
    inset 0 -3px 2px rgba(0,0,0,.17), 
    inset 0 20px 10px rgba(255,255,255,.12), 
    0 0 4px 1px rgba(0,0,0,.1), 
    0 3px 2px rgba(0,0,0,.2);
    font-size:16px;  
    margin-bottom:24px;
}

div.openinghours p {
    font-size:20px;
    text-decoration: underline;
    text-indent:0;
}

div.openinghours span {
    
    text-align:center;
    -webkit-margin-after:0;
}

div.openinghours span.period>time {
    font-size:22px;
}



/* TABLE simplegrid */
div.simplegrid {
    margin-bottom:24px;
}


/* all cells */
table.simplegrid th, table.simplegrid td {
    position:relative;
    border:solid 1px #002500;
    width:120px;
  	min-width:120px;
    height:60px;
    text-align:center;
}

/* not head */
table.simplegrid tr>td:not(:first-child) {
    background-color: rgba(0,164,0,.95);
    color: rgba(255,255,255,.9);
}

/* head (h and v) */
table.simplegrid th, table.simplegrid tr>td:first-child {
    background-color: rgba(0,127,0,.95);
    color: rgba(255,255,255,.95);
}

table.simplegrid tr>th:first-child, table.simplegrid tr>td:first-child {
    width:150px;
}

/* not head */
table.simplegrid td>span {
    position:absolute;
    font-size:12px;
    bottom:5%;
    right:5%;
    color: rgba(164,0,0,.95);
}

/* TABLE simplevalue */

table.simplevalue{
    margin-left:auto;
    margin-right:auto;
}

/* all cells */
table.simplevalue th, table.simplevalue td {
    position:relative;
    border:solid 1px #002500;
    width:33%;
    max-width:350px;
    height:60px;
    text-align:center;
}

/* not head */
table.simplevalue tr>td:not(:first-child) {
    background-color: rgba(164,0,0,.95);
    color: rgba(255,255,255,.9);
}

/* head (h and v) */
table.simplevalue th, table.simplevalue tr>td:first-child {
    background-color: rgba(127,0,0,.95);
    color: rgba(255,255,255,.95);
}

/* table tarifs location Cyclos-Cap */

#mod189 table.stfixed th, #mod189 table.stfixed td, #mod189 table.stmove th  {
    background-color: rgba(0,127,0,.95);
    color: rgba(255,255,255,.95);
}

#mod189 table.stmove td {
    background-color: rgba(0,164,0,.95);
    color: rgba(255,255,255,.9);
}

#mod189 table.stmove td>span {
    color: rgba(164,0,0,.95);
}
#mod189 .stfixed thead, #mod189 .stfixed tbody {
box-shadow: 1px 0px 0px 0px rgba(44,57,44,0.85);
-webkit-box-shadow: 1px 0px 0px 0px rgba(44,57,44,0.85);
-moz-box-shadow: 1px 0px 0px 0px rgba(44,57,44,0.85);
}

/* table tarifs assurance Cyclos-Cap */

#mod188 table.stfixed th, #mod188 table.stfixed td, #mod188 table.stmove th  {
    background-color: rgba(88,20,20,.95);
    color: rgba(255,255,255,.95);
}

#mod188 table.stmove td {
    background-color: rgba(104,20,20,.95);
    color: rgba(255,255,255,.9);
}

#mod188 table.stmove td>span {
    color: rgba(244,244,60,.95);
}

/* table garantie Cyclos-Cap */

#mod191 table.stfixed th, #mod191 table.stfixed td, #mod191 table.stmove th  {
    background-color: rgba(160,0,0,.95);
    color: rgba(255,255,255,.95);
}

#mod191 table.stmove td {
    background-color: rgba(196,0,0,.95);
    color: rgba(255,255,255,.9);
}

#mod191 table.stmove tr>th {
    vertical-align:top;
}

#mod191 table.stmove th>span {
    position:absolute;
    text-align:center;
    bottom:0;
    height:70%;
    width:100%;
    left:0;
    font-weight:400;
    font-size:14px;
    color: rgba(0,0,0,.95);
    vertical-align: middle;
}

/* table caution Cyclos-Cap */

#mod190 table.stfixed th, #mod190 table.stfixed td, #mod190 table.stmove th  {
    background-color: rgba(0,127,0,.95);
    color: rgba(255,255,255,.95);
}

#mod190 table.stmove td {
    background-color: rgba(0,164,0,.95);
    color: rgba(255,255,255,.9);
}


.paiement {
    
    vertical-align:middle;
    text-align:center;
}


.paiement img {
    height:96px;
    width:auto;
    margin-left:16px;
    margin-top:8px;
}

/* HOME CLICK MODULES */

.modclickable>div {
    position:relative;
    margin:0;
    padding:0;
    width:100%;
    display:flex;
    flex-flow:row wrap;
    justify-content:space-around;
    align-items:center;
}

.modclick {
    position:relative;
    background-color: #fafafa;
    padding:8px 0 0 0 !important;
    height:340px;
    text-align:center;
    font-size:20px;
    box-shadow:none;
    transition: color 1s, background-color .6s;
    width:33.33%;
    min-width:320px;
    color:#212529;
    display:block;
    padding:4px;
    margin:0;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.modclick>div {
    margin:16px;
    padding-top:8px;
    text-align:center;
}

.modclick h2 {
    display:inline-block;
    border-bottom: solid 2px rgba(100,111,135,.6);
}

.modclick p {
    margin-bottom:0;
}

.modclick time {
    font-size:24px;
}

.modclick:not(.nolink):hover {
    background-color:rgb(73,97,153);
    color:#fff;
	box-shadow: 
        inset 0 2px 3px rgba(255,255,255,0.3), 
        inset 0 -2px 3px rgba(0,0,0,0.3),
        0 1px 1px rgba(255,255,255,0.9);
        text-decoration:none;
}

.modclick.nolink:hover {
    background-color:rgb(24,32,51);    
    color:#fff;
      border: 1px solid rgba(0,0,0,0.05);
    box-shadow: inset 0 1px 0 rgba(64,64,64,0.7);
}

.modclick div.text {
    margin:16px;
}

.modrepair {
    background-color: rgba(0,0,228,.08);
    padding:8px 0 0 0 !important;
    text-align:center;
    font-size:18px;
    width:100%;

}

.modrepair>div {
    margin:16px;
    padding-top:8px;
    text-align:center;
}

.modrepair h3 {
    display:inline-block;
    border: solid 1px rgba(100,111,135,.2);
    border-radius:5px;
    padding:8px;
}

.modrepair p {
    margin-bottom:0;
}

.modrepair>div {
    margin:8px;
    padding-top:4px;
    text-align:center;
}

.modclickimg {
    position:absolute;
    opacity:.05;
    top:5%;
    left:10%;
    max-height:90%;
    max-width:80%;
    width:auto;
    height:auto;
}

div.plxbottom {
    text-align:center;
    font-size:20px;
    transition: color 1s, background-color .6s;
}

div.plxbottom p {
    background-color:rgba(255,255,255,.1);
}


div.plxbottom>div {
    height:200px;
}

/* SHOP */

.smartslide199 {
    position:relative;
    width:100%;
    height:450px;
    overflow:hidden;
    padding: 0;
    margin: 0;
    min-width: 30px;
    min-height: 20px;
    z-index: 80;
}

.smartSlideshow>figure {

    left: 0%;
    top: 0%;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 90;
    padding: 0;
    margin: 0 !important;
    display:flex;
    flex-flow: row nowrap;
    justify-content:center;
    align-items:center;
    visibility:hidden;
}

.smartSlideshow>figure>img {
    height:100%;
    width:auto;
}

div.homearticle>div.slideshow {
    padding: 8px 2px 8px 2px;
}
div.homearticle>div.text {
    padding: 8px 2px 8px 2px;
}

div.legalinfos{
  display:flex;
  align-items: center;
  justify-content: center;
}

div.legalinfos div:first-child{
    padding-top:64px;
}

/* CONTACT */

div.contact>div {
    position:relative;
    max-width:800px;
    min-width:240px;
    width:80%;
}

div.contact>div>img {
    position:absolute;
    left:8px;
    top:4px;
}

div.contact>div>h2 {
    position:absolute;
    left:96px;
    top:8px;
    font-size:28px;
    color:rgba(0,0,0,.6);
}

div.contact div.content {
    padding:72px 16px 8px 16%;
    margin-bottom:32px;
    border-left: solid 3px rgba(0,0,0,.1);
    border-bottom: solid 3px rgba(0,0,0,.1);
    border-radius:32px;
    font-size:20px;
}

div.contact .phonecall{
    display:flex;
    flex-flow: row nowrap;
    justify-content:flex-start;
    align-items:center;
    height:72px;
    
}

div.contact .phonecall>img{
    opacity:0;
    width:1px;
    transform:scale(0,0);
    transition: all .3s;
    margin-right:3px;
    
}
div.contact .phonecall:hover>img{
    opacity:1;
    transform:scale(1,1);
    width:24px;
}

div.contact div.content>a, div.contact div.content>a:hover, div.contact div.content>a:visited {
    color:#212529;
    text-decoration:none;
}

section#bfElemWrap144 label, section#bfSectionDescription a {
  text-align:center;
}


section#bfElemWrap144 {
  display:flex;
  flex-flow: row wrap;
  justify-content:center;
}



/* GMAP */

div.smartgmap div.gm-style-cc:not(:last-child) {
	display: none !important;
}

/* SITEMAP */

div#jmap_sitemap {
    width:100%;
}

div.jmapcolumn{
overflow-x:auto;
display:inline-block;
text-align:center;
  min-height:80vh;
}

/* FOOTER */

#footer {
    box-shadow: inset 0px 2px 3px 0px #cfcfcf;
    color:rgb(255,255,255);
    display:flex;
    flex-flow: row wrap;
    justify-content:space-around;
    align-items:flex-end;
    position:relative;
    width:100%;
    padding:24px 12px;
}

.footerFixed {
    position:fixed;
    z-index:1000;
    width:100%;
    bottom:0;
    -webkit-box-shadow: 0px -1px 2px 0px rgba(50, 50, 50, 0.35);
	-moz-box-shadow:    0px -1px 2px 0px rgba(50, 50, 50, 0.35);
	box-shadow:         0px -1px 2px 0px rgba(50, 50, 50, 0.35);
}



footer nav {
        position: relative;
    display: inline-block;
    font-weight: 400;
    min-width:220px;
}

footer ul{
  webkit-margin-after: 0 !important;
  font-size:14px;
  color:rgb(218,218,218);
  list-style-type: none;
    padding: 0;
    margin: 0;
    display:flex;
    flex-flow:column nowrap;
    
}

footer  ul>li {
    background-color: transparent;
}

footer  ul>li {
    overflow: visible;
    position: relative;
    padding: 0;
    margin: 0;
    transition: background-color 0.3s ease-out;
    text-align: center;
}

footer  ul>li a {
    text-decoration: none;
    color: inherit;
    vertical-align: middle;
}

footer>div {
    min-width:300px;
    padding-top:24px;
}

#footer p.brand {
    vertical-align: bottom;
    width:100%;
    line-height:75px;
    margin-bottom:0 !important;
    text-align:center;
}

#footer p.brand>span {
    font-weight:600 !important;
    font-size:16px !important;
}


/* ARTICLE LOCATION */

div.regulation ul {
    list-style-type: none;
}

li.special {
    font-weight:700;
}

/* MEDIA QUERY */

@media (max-width: 1560px) {
.plxcontent2 h1 {
    font-size: 48px;
}
.plxcontent2 div.address {
    font-size: 28px;
    line-height: 30px;
}
}

@media (max-width: 1500px) {
    div.plx3  h2  {
        font-size:28px;
        margin-bottom:6px;
    }
}

@media (max-width: 1360px) {
    .plxcontent2 div.left, .plxcontent2 div.right  {
        max-width:none;
    max-height:none;
}
    .modclick {
        font-size:18px;
    }
    .modclick time {
        font-size:22px;
    }
    div.plx3>div.top, div.plx3>div.bottom  {
        font-size:18px;
    }
}

@media (max-width: 1300px) {
.plxcontent2 h1 {
    font-size: 44px;
}
.plxcontent2 div.address {
    font-size: 24px;
    line-height: 26px;
}
}


@media (max-width: 1110px) {
.plxcontent2 h1 {
    font-size: 36px;
}
.plxcontent2 div.address {
    font-size: 21px;
    line-height: 23px;
}
}

@media (max-width: 1100px) {
    .modclick {
        height: 330px;
    }
    div.plx3  h2  {
        font-size:24px;
        margin-bottom:4px;
    }
}

/* bootstrap4 lg (992)) */
@media (max-width: 992px) {
    a.logo {
        display:block;
        width:100% !important;
        text-align:center;
      	margin-left:0 !important;
    }
    .smartanimatedmenuIcon{
        right:0 !important;
    }
    .threemodclick {
        height: 290px;
    }
    .plxcontent2 .lft, .plxcontent2 .rgt  {
        position:relative;
        width:100%;
        height:50%;
    }

    .plxcontent2 div.left  {
        top:0;
        left:0%;
        width:100% !important;
        height:100%;
        margin-right:0 !important;
        padding-top:5%;
    }
    
    .plxcontent2 .right  {
        position:absolute;
        top:0;
        right:10%;
        width:80% !important;
        height:90% !important;
    }
    
    .plxcontent2 div.left img  {
        height:90%;
        width:auto;
    }

    .plxcontent2 div.address div {
        width:100%;
        text-align:center;
    }
    
    .plxcontent2 h1  {
        font-size:4.5vw;
    }
    
    .plxcontent2 div.address  {
    font-size: 20px;
    line-height: 20px;
    }
    
    .plxcontent2 div.address div {
        line-height:3.2vw;
    }
    
    .plxcontent2  div.address img  {
        width:2.3vw;
    }
    
}

/* bootstrap4 md (778)) */
@media (max-width: 974px) {
    .modclick {
        margin:12px;
    }

}

@media (max-width: 900px) {
    .plxcontent2 div.address  {
        font-size:2.5vw;
        line-height:3vw;
    }
}

/* bootstrap4 md (778)) */
@media (max-width: 778px) {
    .plxcontent1 h1 {
        font-size: 4.7vw;
    }
    .plxcontent1 h2 {
        font-size: 2.57vw !important;
    }
    .plxcontent1 div.soc_icons_box span{
        font-size: 2.4vw !important;
    }
    .plxcontent1 div.soc_icons_box ul>li{
        height: 3.2vw !important;
        width: 3.2vw !important;
    }
    
    img#scrolltop {
        width:32px;
        height:32px;
    }
    #footer nav {
        margin-top:0px;
    }
    .modclick time {
        font-size:21px;
    }

    #footer p.brand {
        line-height:36px;
    }

}



@media (max-width: 600px) {
    .plxcontent1 h1 {
        font-size: 28px;
        margin-left:-8%;
    }
    .plxcontent1 h2 {
        font-size: 16px !important;
        margin-left:-11%;
    }
    .plxcontent1 div.soc_icons_box{
        left:5% !important;
    }
    .plxcontent1 div.soc_icons_box span{
        font-size: 14px !important;
        padding-top:3px;
    }
    .plxcontent1 div.soc_icons_box ul>li{
        height: 20px !important;
        width: 20px !important;
    }
    div.plxcontent1 img.tm4  {
        margin-left:-19%;
    }
    div.plxcontent1 img.tm5  {
        bottom:16px;;
    }
    #footer nav {
        margin-top:0px;
    }

    .plxcontent2 h1  {
        font-size:28px;
    }

    .plxcontent2 div.address  {
        font-size:16px;
        line-height:22px;
    }
    
    .plxcontent2 div.address div {
        line-height:22px;
    }
    
    .plxcontent2  div.address img  {
        width:20px;
    }

}




@media (max-width: 500px) {
    .plxcontent1 h1 {
        top:16px !important;
        font-size: 26px;
        margin-left:-8%;
    }
    .plxcontent1 h2 {
        font-size: 15px !important;
        margin-left:-14%;
    }
    .plxcontent1 h2.tm2 {
        top:64px !important;
    }
    .plxcontent1 h2.tm3 {
        top:90px !important;
    }
    .plxcontent1 div.soc_icons_box span{
        font-size: 12px !important;
        padding-top:5px;
    }
    div.plxcontent1 img.tm4  {
        margin-top:-32px;
    }
    aside#modplx3 h2 {
        font-size:22px;
    }
    aside#modplx3 p {
        font-size:16px;
    }
    div#newrecaptcha {
  transform:scale(0.58);
  -webkit-transform:scale(0.58);
  transform-origin:0 0;
  -webkit-transform-origin:0 0;
}
}

@media (max-width: 440px) {
    .plxcontent1 h1 {
        top:0 !important;
        margin-left:-12%;
        font-size: 24px;
    }
    .plxcontent1 h2 {
        margin-left:-18%;
    }
    .plxcontent1 h2.tm2 {
        width:230px;
        top:40px !important;
    }
    .plxcontent1 h2.tm3 {
        top:90px !important;
    }

    div.plxcontent1 img.tm4  {
        margin-left:-26%;
        margin-top:-32px;
    }


    .plxcontent2 div.left img  {
        position:absolute;
        height:auto;
        width:80%;
        margin-left:10%;
        bottom:5%;
    }

}


@media (max-width: 404px) {
    .plxcontent2 div.left img  {
        position:absolute;
        height:auto;
        width:80%;
        margin-left:10%;
        bottom:5%;
    }
    .plxcontent2 .right p  {
        font-size:14px;
        line-height:18px;
    }
    
    .plxcontent2 div.address  {
        font-size:16px;
        line-height:22px;
    }
    
    .plxcontent2 div.address div {
        line-height:20px;
    }
    
    .plxcontent2  div.address img  {
        width:18px;
    }
      div#newrecaptcha {
  transform:scale(0.5);
  -webkit-transform:scale(0.5);
  transform-origin:0 0;
  -webkit-transform-origin:0 0;
}
}


@media (max-width: 370px) {
    .plxcontent1 h1 {
        width:240px;
        margin-left:-10%;
        text-align:center;
    }
    .plxcontent1 h2 {
        margin-left:-14%;
    }
    .plxcontent1 h2.tm2 {
        width:230px;
        top:80px !important;
    }
    .plxcontent1 h2.tm3 {
        top:130px !important;
    }
    .plxcontent1 div.soc_icons_box span{
        font-size: 11px !important;
        padding-top:5px;
    }
    .plxcontent1 div.soc_icons_box ul>li{
        height: 18px !important;
        width: 18px !important;
    }
    div.plxcontent1 img.tm4  {
        margin-left:-32%;
        margin-top:-32px;
    }

    aside#modplx3 h2 {
        font-size:18px;
    }
    aside#modplx3 p {
        font-size:14px;
    }
}

@media (max-width: 362px) {
    .plxcontent2 .right p  {
        font-size:13px;
        line-height:16px;
    }
    
    .plxcontent2 div.address  {
        font-size:16px;
        line-height:20px;
    }
    
    .plxcontent2 div.address div {
        line-height:18px;
    }
    
    .plxcontent2  div.address img  {
        width:16px;
    }
}

@media (max-width: 330px) {
    .plxcontent1 div.soc_icons_box span{
        font-size: 9px !important;
        padding-top:5px;
    }
    
    .plxcontent2 div.address  {
        font-size:14px;
        line-height:17px;
    }
    .modclick {
        height: 370px;
    } 
    .plxcontent2  div.address img  {
        width:14px;
    }

}

@media (max-width: 280px) {
    .modclick {
        font-size:16px;
        height:350px;
    }
    .modclick span.time {
        font-size:18px;
    }

}

@media (max-width: 300px) {
    aside#modplx3 h2 {
        font-size:16px;
    }
     .plxcontent2 div.address  {
        font-size:12px;
        line-height:14px;
    }

}

@media (max-width: 768px) {
    .rgpdform>.auth:not(:last-child) {
        margin-bottom:0x;
    }
    .rgpdform>.auth {
        flex-flow: column nowrap;
    }
    .rgpdform>.auth>.status {
        padding:8px 10px;
    }
}



@media screen and (orientation:landscape) {

}

@media screen and (orientation:portrait) {

}

