   /* ––––– MISCELLANEOUS ––––– */
 
  {
   max-width: 550px;
   max-height: 2000px;
   overflow: hidden;
 }
  /* inner wrapper: make responsive */
 .responsive-wrapper {
   position: relative;
   height: 0;  /* gets height from padding-bottom setting */
   -webkit-overflow-scrolling: touch;
   overflow: auto;
 }
 .responsive-wrapper iframe {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   margin: 0;
   padding: 0;
   border: none;
 }
 /* padding-bottom = h/w as a % */
 .responsive-wrapper-wxh-550x2000 {
   padding-bottom: 363.6364%;
 }
 .iframe-border {
   border: 1px solid #000;
 }
 .center-block-horiz {
   margin-left: auto !important;
   margin-right: auto !important;
 }

 /* ––––– FONT STYLE OVERRIDES ––––– */

 h1 {
  font-family: Lato, Arial, sans-serif;
  font-weight:400;
 }

 h2 {
  font-family: Lato, Arial, sans-serif;
  font-weight:400;
 }
 
  h3 {
  font-family: Lato, Arial, sans-serif;
  font-weight:400;
 }

 [class*='EditableArea'] ul {
    margin: 1em 0 1em 22px;
    padding: 0px;
    list-style: disc;
}

/* ––––– MOBILE NAVIGATION BAR ––––– */

 .WaGadgetMobilePanel .mobilePanel {
position: relative;
height: 50px;
background: ##036a6a;
color: white;
}

/* ––––– TO SHOW OR HIDE ON DIFFERENT DEVICES ––––– */

.content-desktop {display: block; margin-bottom:0px;}
.content-mobile {display: none;}

@media screen and (max-width: 768px) {
.content-desktop {display: none;}
.content-mobile {display: block;}
}

/* ––––– VERTICAL MENU STYLING ––––– */

.WaGadgetMenuVertical.VerticalMenuStyle001 ul.firstLevel {
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding: 8px 0;
    background: transparent;
    border: 0px solid #c1c1c1;
    list-style: none;
}

.WaGadgetMenuVertical.VerticalMenuStyle001 ul.firstLevel>li.sel>.item>a {
    color: #00b0b6;
}

.WaGadgetMenuVertical.VerticalMenuStyle001 ul.firstLevel>li>.item>a {
    position: relative;
    display: block;
    padding: 4px 0px;
    overflow: hidden;
    background: inherit;
    color: #676767;
    font: bold 16px/1.5 'Lato','Arial',sans-serif;
    text-align: left;
    text-decoration: none;
    text-transform: uppercase;
}

.WaGadgetMenuVertical.VerticalMenuStyle001 ul ul {
    position: absolute;
    top: -12px;
    left: 100%;
    z-index: 40000;
    display: block;
    visibility: hidden;
    box-sizing: border-box;
    width: 300px;
    height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: white;
    border: 0px solid #c1c1c1;
    opacity: 0;
    list-style: none;
    -webkit-transition: opacity .3s;
    -moz-transition: opacity .3s;
    -ms-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
}

.WaGadgetMenuVertical.VerticalMenuStyle001 ul.firstLevel>li>.item>a>span {
display: inline-block;
width: 90%;
padding: 0;
vertical-align: middle;
}