/* -----------------------------------------------------------------------------
/* ----------------------------- LANDSCAPE -------------------------------------
   -------------------------------------------------------------------------- */

/* XXSMALL */
@media screen and (min-width:480px) and (orientation: landscape) {
  .mobileheader {
    display: block;
    position: fixed;
    width: 70%;
    height: 100vh;
    top: 0;
    left: -70%;
    background: white;
    overflow-y: scroll;
    border-right: 6px solid rgb(23, 188, 146);
    -webkit-transition: all .25s linear;
    -o-transition: all .25s linear;
    transition: all .25s linear;
  }
  .mobileheader.expanded {
    left: 0;
  }
  .moblogo {
    position: relative;
    width: 100%;
    height: 120px;
    top: 0;
    left: 0;
    background-image: url('../../img/logo/lifterlifelogo.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
  .mobheaderentry {
    position: relative;
    float: left;
    width: calc(100% - 42px);
    height: 40px;
    top: 0;
    left: 0;
    margin-right: 20px;
    margin-left: 20px;
    margin-bottom: 5px;
    border: 1px solid rgb(200,200,200);
    text-align: center;
  }
  .mobheaderentry.button {
    background: rgb(23, 188, 146);
  }
  .mobheaderentry.wa {
    background: rgb(37, 211, 102);
  }
  .mobheaderentry.fb {
    background: rgb(0,132,255);
  }
  .mobheaderentry h5 {
    color: rgb(60,60,60);
    line-height: 40px;
  }
  .mobheaderentry.button h5,
  .mobheaderentry.wa h5,
  .mobheaderentry.fb h5 {
    color: white;
  }
  .mobheaderentry:hover {
    background: rgb(60,60,60);
  }
  .mobheaderentry:hover > h5 {
    color: white;
  }
  .menuopener {
    position: fixed;
    width: 60px;
    height: 60px;
    top: 0;
    left: 6px;
    background: rgb(23, 188, 146);
    text-align: center;
    cursor: pointer;
    -webkit-transition: all .25s linear;
    -o-transition: all .25s linear;
    transition: all .25s linear;
  }
  .menuopener p span {
    color: white;
    font-size: 2em;
    line-height: 60px;
  }
  .menuopener:hover {
    background: white;
  }
  .menuopener:hover > p span {
    color: rgb(23, 188, 146);
  }
  .topmenu, .bottommenu {
    display: none;
  }
}
/* XSMALL */
@media screen and (min-width:680px) and (orientation: landscape) {
  .mobileheader {
    width: 50%;
    left: -50%;
  }
  .mobileheader.expanded .menuopener {
    left: calc(50% + 6px);
  }
}
/* SMALL */
@media screen and (min-width:920px) and (orientation: landscape) {
  .mobileheader {
    width: 40%;
    left: -40%;
  }
  .mobileheader.expanded .menuopener {
    left: calc(40% + 6px);
  }
}
/* MEDIUM */
@media screen and (min-width:1200px) and (orientation: landscape) {
  .mobileheader, .menuopener {
    display: none;
  }
  .topmenu {
    position: fixed;
    width: calc(100% - 100px);
    height: 60px;
    top: 0;
    left: 0;
    border-bottom: 2px solid white;
    -webkit-transition: all .25s linear;
    -o-transition: all .25s linear;
    transition: all .25s linear;
    display: block;
  }
  .topmenu.smaller {
    padding-right: 100px;
    height: 34px;
    left: 0;
    padding-left: 74px;
    width: calc(100% - 174px);
    border-bottom: none;
    background: rgb(23, 188, 146);  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #0f3443, rgb(23, 188, 146));  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #0f3443, rgb(23, 188, 146)); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  }
  .topmenu.smaller .triangleslant {
    display: block;
    position: absolute;
    right: calc(100% - 714px);
    bottom: 0;
    width: 0;
    height: 0;
    border-top: 34px solid white;
    border-right: 640px solid transparent;
  }
  .topmenu .topmenuentry {
    position: relative;
    float: right;
    top: 0;
    right: 0;
    height: 100%;
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
  .topmenu .topmenuentry.nm {
    padding: 0;
  }
  .topmenuentry p {
    color: white;
    line-height: 80px;
    -webkit-transition: all .25s linear;
    -o-transition: all .25s linear;
    transition: all .25s linear;
  }
  .topmenu.smaller .topmenuentry p {
    color: white;
    line-height: 36px;
  }
  .topmenuentry.clickable:hover > p {
    color: rgb(23, 188, 146);
  }
  .topmenu .topmenuentry img {
    position: relative;
    float: left;
    width: 24px;
    height: 24px;
    top: 0;
    left: 0;
    margin-right: 5px;
    margin-top: 28px;
  }
  .topmenu.smaller .topmenuentry.clickable {
    margin-left: 20px;
    height: 24px;
    top: 3px;
    border: 2px solid white;
    -webkit-transition: all .25s linear;
    -o-transition: all .25s linear;
    transition: all .25s linear;
  }
  .topmenu.smaller .topmenuentry.clickable:hover {
    background:  white;
  }
  .topmenu.smaller .topmenuentry.clickable p {
    font-size: 11px;
    line-height: 24px;
    color: white;
    text-transform: uppercase;
    -webkit-transition: all .25s linear;
    -o-transition: all .25s linear;
    transition: all .25s linear;
  }
  .topmenu.smaller .topmenuentry.clickable:hover > p {
    color: rgb(23, 188, 146);
  }
  .topmenu.smaller .topmenuentry img {
    margin-right: 5px;
    margin-top: 7px;
  }
  .topmenu .social {
    position: absolute;
    width: 90px;
    height: 40px;
    top: calc(100% + 20px);
    right: 4px;
    -webkit-transition: all .25s linear;
    -o-transition: all .25s linear;
    transition: all .25s linear;
  }
  .topmenu.smaller .social {
    right: 100px;
    top: calc(100% + 0px);
  }
  .social .socialentry {
    position: relative;
    float: left;
    width: 50%;
    height: 100%;
    top: 0;
    left: 0;
    text-align: center;
  }
  .socialentry p span {
    font-size: 1.6em;
    line-height: 40px;
    -webkit-transition: all .25s linear;
    -o-transition: all .25s linear;
    transition: all .25s linear;
  }
  .topmenu.smaller .social .socialentry {
    text-align: right;
  }
  .topmenu.smaller .social .socialentry p span {
    line-height: 40px;
    color: rgb(60,60,60);
  }
  .socialentry:hover > p {
    color: rgb(23, 188, 146);
  }
  .topmenu.smaller .social .socialentry:hover > p span {
    color: rgb(23, 188, 146);
  }
  .logo {
    position: fixed;
    top: 0;
    left: -100px;
    width: 74px;
    height: 74px;
    -webkit-transition: all .25s linear;
    -o-transition: all .25s linear;
    transition: all .25s linear;
    background-image: url('../../img/logo/lifterlifelogo.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
  .topmenu.smaller .logo {
    left: 0;
    height: 73px;
    width: 74px;
    background: white;
    border-bottom: 6px solid rgb(23, 188, 146);
    background-image: url('../../img/logo/lifterlifelogo.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
  .bottommenu {
    position: fixed;
    width: calc(100% - 140px);
    height: 40px;
    top: 80px;
    left: 0;
    padding-left: 40px;
    padding-right: 100px;
    -webkit-transition: all .25s linear;
    -o-transition: all .25s linear;
    transition: all .25s linear;
    display: block;
  }
  .bottommenu.raised {
    top: 34px;
    height: 39px;
    width: calc(100% - 174px);
    border-bottom: 6px solid rgb(23, 188, 146);
    padding-right: 100px;
    padding-left: 74px;
    -webkit-box-shadow: 0px 5px 10px -7px rgb(60,60,60);
    box-shadow: 0px 5px 10px -7px rgb(60,60,60);
    background-color: white;
  }
  .bottommenu .bmenuentry {
    position: relative;
    float: left;
    top: 0;
    left: 0;
    width: auto;
    height: 100%;
    margin-right: 6px;
    padding-left: 6px;
    padding-right: 20px;
    text-align: center;
    cursor: pointer;
  }
  .bottommenu.raised .bmenuentry {
    padding-left: 10px;
    padding-right: 10px;
  }
  .bmenuentry h5 {
    font-size: 14px;
    color: white;
    line-height: 40px;
    font-weight: 600;
    -webkit-transition: all .25s linear;
    -o-transition: all .25s linear;
    transition: all .25s linear;
  }
  .bmenuentry:hover > h5 {
    color: rgb(23, 188, 146);
  }
  .bottommenu.raised .bmenuentry h5 {
    color: rgb(60,60,60);
    font-weight: 600;
    font-size: 14px;
    line-height: 40px;
    margin: 0;
    padding: 0;
  }
  .bottommenu.raised .bmenuentry:hover > h5 {
    color: rgb(23, 188, 146);
  }
  .bmenuentry .arrowup {
    position: absolute;
    width: 0;
    height: 0;
    bottom: -10px;
    left: calc(50% - 16px);
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-bottom: 16px solid rgba(180,180,180,0.75);
    -webkit-transition: all .1s linear;
    -o-transition: all .1s linear;
    transition: all .1s linear;
  }
  .bmenuentry:hover > .arrowup {
    border-bottom: 16px solid rgb(23, 188, 146);
    bottom: -8px;
  }
  .bottommenu.raised .bmenuentry .arrowup {
    bottom: 0px;
    left: calc(50% - 12px);
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid rgb(120,120,120);
  }
  .bottommenu.raised .bmenuentry:hover > .arrowup {
    border-bottom: 12px solid rgb(23, 188, 146);
  }
}
/* LARGE */
@media screen and (min-width:1320px) and (orientation: landscape) {
  .bottommenu .bmenuentry {
    margin-right: 14px;
    padding-left: 14px;
  }
}
















/* -----------------------------------------------------------------------------
/* ----------------------------- PORTRAIT --------------------------------------
   -------------------------------------------------------------------------- */

/* XXSMALL */
@media screen and (min-width:320px) and (max-device-aspect-ratio: 1/1), (min-width:320px) and (max-aspect-ratio: 1/1) {
  .mobileheader {
    display: block;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: -100%;
    background: white;
    overflow-y: scroll;
    border-right: 6px solid rgb(23, 188, 146);
    -webkit-transition: all .25s linear;
    -o-transition: all .25s linear;
    transition: all .25s linear;
  }
  .mobileheader.expanded {
    left: 0;
  }
  .moblogo {
    position: relative;
    width: 100%;
    height: 120px;
    top: 0;
    left: 0;
    background-image: url('../../img/logo/lifterlifelogo.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
  .mobheaderentry {
    position: relative;
    float: left;
    width: calc(100% - 42px);
    height: 40px;
    top: 0;
    left: 0;
    margin-right: 20px;
    margin-left: 20px;
    margin-bottom: 5px;
    border: 1px solid rgb(200,200,200);
    text-align: center;
  }
  .mobheaderentry.button {
    background: rgb(23, 188, 146);
  }
  .mobheaderentry.wa {
    background: rgb(37, 211, 102);
  }
  .mobheaderentry.fb {
    background: rgb(0,132,255);
  }
  .mobheaderentry h5 {
    color: rgb(60,60,60);
    line-height: 40px;
  }
  .mobheaderentry.button h5,
  .mobheaderentry.wa h5,
  .mobheaderentry.fb h5 {
    color: white;
  }
  .mobheaderentry:hover {
    background: rgb(60,60,60);
  }
  .mobheaderentry:hover > h5 {
    color: white;
  }
  .menuopener {
    position: fixed;
    width: 60px;
    height: 60px;
    top: 0;
    left: 6px;
    background: rgb(23, 188, 146);
    text-align: center;
    cursor: pointer;
    -webkit-transition: all .25s linear;
    -o-transition: all .25s linear;
    transition: all .25s linear;
  }
  .menuopener p span {
    color: white;
    font-size: 2em;
    line-height: 60px;
  }
  .menuopener:hover {
    background: white;
  }
  .menuopener:hover > p span {
    color: rgb(23, 188, 146);
  }
  .topmenu, .bottommenu {
    display: none;
  }
}
/* XSMALL */
@media screen and (min-width:440px) and (max-device-aspect-ratio: 1/1), (min-width:440px) and (max-aspect-ratio: 1/1) {

}
/* SMALL */
@media screen and (min-width:520px) and (max-device-aspect-ratio: 1/1), (min-width:520px) and (max-aspect-ratio: 1/1) {
  .mobileheader {
    width: 70%;
    left: -70%;
  }
  .moblogo {
    margin-top: 20px;
    margin-bottom: 30px;
  }
}
/* MEDIUM */
@media screen and (min-width:620px) and (max-device-aspect-ratio: 1/1), (min-width:620px) and (max-aspect-ratio: 1/1) {

}
