* {
    padding: 0px;
    margin: 0px;
}

body.demo-page {
    background-color: #c2c2c2;

}

.back {
    color: #fff;
    background: #eee !important;
}

header.humberger {
    background-color: #fff;
    position: fixed;
    width: 100%;
    top: 0px;
    z-index: 99;
    border-bottom: 1px solid #dedede;
}

header .logo-port {
    padding-left: 15px;
    width: 40%;
}

header .logo-port img {
    height: 40px;
    width: 100px;
}

.content-wrap {
    background-color: #FFFFFF;
    color: #333;
    float: left;
    height: 100vh;
    position: relative;
    width: 50%;
}

.content-inner-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    padding: 0;
    text-align: left;
}

.menu-wrap {
    height: 100vh;
    width: 50%;
    padding: 0;
    float: left;
    position: relative;
}

.content-wrap .inline-div {
    margin: 0 0 20px;
}

.content-wrap .inline-div h1 {
    display: inline-block;
    font: 100 50px/120% "Roboto", sans-serif;
    margin: 0;
}

.content-wrap .inline-div span {
    display: inline-block;
    font: 100 20px/120% "Roboto", sans-serif;
    margin: 0 0 0 10px;
}

.content-wrap h2 {
    display: block;
    font: 300 24px/130% "Roboto", sans-serif;
    margin: 0 0 20px;
}

.content-wrap h3 {
    display: inline-block;
    font: 400 20px/120% "Roboto", sans-serif;
    margin: 0 0 15px;
}

.content-wrap ul {
    margin: 0 0 0 20px;
}

.content-wrap ul li {
    font: 300 18px/150% "Roboto", sans-serif;
    list-style-type: square;
    margin: 0;
}

.mobile-mockup-wrap {
    height: auto;
    left: 50%;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 340px;
}

.mobile-mockup-wrap img {
    width: 100%;
    height: auto;
}

.iframe-wrap {
    height: 503px;
    left: 21px;
    position: absolute;
    top: 103px;
    width: 299px;
}

.iframe-wrap iframe {
    border: none;
    height: 503px;
    width: 100%;
}

.show-in-mobile {
    display: none;
}

@media (min-width: 0px) and (max-width: 768px) {
    header.humberger {
        height: 45px;
    }
    .show-in-mobile {
        display: block;
    }
    .content-wrap .inline-div span {
        margin: 0;
    }
    .content-wrap .inline-div h1 {
        font-size: 34px;
    }
    .content-wrap .inline-div span,
    .content-wrap h2,
    .content-wrap h3 {
        font-size: 18px;
    }
    .content-wrap h2 br {
        display: none;
    }
    .demo-page .menu-wrap {
        height: 680px;
    }
    .content-wrap,
    .menu-wrap {
        float: none;
        height: auto;
        width: 100%;
    }
    .content-inner-wrap {
        left: auto;
        padding: 0;
        position: static;
        top: auto;
        transform: none;
        width: 100%;
    }
    .mobile-mockup-wrap {
        height: auto;
        left: 50%;
        margin: 50px auto;
        position: absolute;
        top: auto;
        transform: translateX(-50%);
        width: 300px;
    }
    .iframe-wrap {
        height: 440px;
        left: 50%;
        position: absolute;
        top: 95px;
        transform: translateX(-50%);
        width: 264px;
    }
    .iframe-wrap iframe {
        border: none;
        height: 440px;
        width: 100%;
    }
    .content-wrap .inline-div {
        margin: 0;
        padding: 50px 30px 20px;
    }
    .content-wrap h2,
    .content-wrap h3 {
        padding: 0 30px 0;
    }
    .content-wrap ul {
        padding: 0 20px;
    }
    .content-wrap {
        padding: 0 0 70px;
    }
}

@media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (orientation: landscape) {}

@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (orientation: landscape) {}

@media (min-width: 768px) and (max-width: 991px) {
    .content-wrap .inline-div h1 {
        font-size: 32px;
    }
    .content-wrap .inline-div span,
    .content-wrap h2,
    .content-wrap h3 {
        font-size: 18px;
    }
    .content-wrap h2 br {
        display: none;
    }
    .content-wrap ul li {
        font-size: 16px;
    }
    .content-inner-wrap {
        width: 90%;
    }
}

@media (min-width: 992px) and (max-width: 1024px) {
    .content-wrap .inline-div h1 {
        font-size: 36px;
    }
    .content-wrap .inline-div span,
    .content-wrap h2,
    .content-wrap h3 {
        font-size: 18px;
    }
    .content-wrap h2 br {
        display: none;
    }
    .content-wrap ul li {
        font-size: 16px;
    }
    .content-inner-wrap {
        width: 90%;
    }
}

/*
JQuery Simple MobileMenu
https://github.com/Position2/jQuery-Simple-MobileMenu
*/
/*Main style*/
html.mmactive,
body.mmactive {
  overflow: hidden !important;
}
.mobile_menu {
  display: none;    
  position: fixed;
  overflow-y: scroll;
  overflow-x: hidden;
  height: 90vh;
  width: 100vw;
}
.sm_menu_outer.active .mobile_menu {
  display: block;
}
.sm_menu_outer {
  top: 45px;
  height: 100vh;
  border-top: 1px solid #eee;
  overflow-y: scroll;
  overflow-x: hidden;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: -9;
  width: 100%;
  opacity: 0;
  background-color: #fff;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.sm_menu_outer.active {
  opacity: 1;
  z-index: 999;
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
}
.sm_menu_outer.active::-webkit-scrollbar {
    width: 0 !important;
}
.sm_menu_outer .mobile_menu a {
  padding: 0 30px;
  color: #555555;
  display: block;
  font-size: 13px;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  line-height: 55px;
  letter-spacing: .2px;
  text-transform: uppercase;
}

.sm_menu_outer .mobile_menu li.slideDownChild.down a, .sm_menu_outer .mobile_menu li.slideDownChild.down .subnav-m li a  {
	padding-left: 50px;
}
.subnav-m li a.menu-item {
  font-weight: 500;
  text-transform: capitalize;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
}
/*Sub Menu anim */
.sm_menu_outer .mobile_menu .submenu {
  background-color: #fff;
  min-height: calc(100vh + 20em);
  position: fixed;
  right: -100%;
  top: 0;
  transition: all 0.5s ease 0s;
  width: 100%;
  z-index: 999;
  overflow: hidden;
}
.sm_menu_outer .mobile_menu li.active>.submenu {
  right: 0;
  position: absolute;
}
.sm_menu_outer .mobile_menu li {
  width: 100%;
  border-bottom: 1px solid #ebebeb;
  clear: both;
  background-color: #FFFFFF;
  display: block;
  position:relative;
}
.sm_menu_outer .mobile_menu li.banner-m-wday .banner-m-wday-menu {
	margin-top: 20px;
}
.sm_menu_outer .mobile_menu li.banner-m-wday .banner-m-wday-menu .menu-item{
	padding: 0 15px;
	text-align:center;
}
.sm_menu_outer .mobile_menu li#m-profile {
  padding: 10px 0px;
  height: 68px;
}
.sm_menu_outer .mobile_menu li#m-profile #m-avatar a {
  padding: 0px;
}
.sm_menu_outer .mobile_menu li#m-profile #m-avatar img {
  border: 1px solid #dddddd;
  border-radius: 50%;
  width: 45px;
}
.sm_menu_outer .mobile_menu li#m-profile #m-avatar {
  width: 45px;
  float: left;
  margin-left: 30px;
}
.sm_menu_outer .mobile_menu li#m-profile #m-username {
  float: left;
  text-align: left;
  margin-left: 10px;
  margin-right: 30px;
  line-height: 1.4em;
  margin-top: 5px;
}
.sm_menu_outer .mobile_menu li#m-profile #m-username a {
  display: initial;
  text-align: left;
  padding: 0px;
  line-height: 2em;
}
.sm_menu_outer .mobile_menu li#m-profile .grid-12 {
  padding: 0 25px;
  width: auto;
  text-align: center;
}
.sm_menu_outer .mobile_menu li#m-profile .grid-12 a {
  line-height: 40px;
  color: #ffffff !important;
}
.sm_menu_outer .mobile_menu li#m-profile .askVendor {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  text-align: center;
  text-transform: none;
  padding: 5px;
  float: none;
} 
.sm_menu_outer .mobile_menu li#m-profile .askVendor a.vendor {
  all: initial;
  color: #fb7d88 !important;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.sm_menu_outer .mobile_menu li.back a:before {
  content: "\f104";
  font-family: FontAwesome;
  margin: 0 15px 0 5px;
  float: left;
  color: #222 !important;
  font-size: 15px;
}
.sm_menu_outer .mobile_menu li.hasChild>a:after {
  content: "\f105";
  font-family: FontAwesome;
  margin-right: 15px;
  float: right;
  color: #222 !important;
  font-size: 15px;
}
.sm_menu_outer .mobile_menu li.slideDown.down>a:after, .sm_menu_outer .mobile_menu li.slideDownChild.down>a:after{
  content: "\f107";
  font-family: FontAwesome;
  margin-right: 15px;
  float: right;
  color: #222 !important;
  font-size: 15px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.25s all 0.5s cubic-bezier(0,0,0,0) 0s;
  -moz-transition: all 0.25s all 0.5s cubic-bezier(0,0,0,0) 0s;
  -o-transition: all 0.25s all 0.5s cubic-bezier(0,0,0,0) 0s;
  transition: all 0.25s all 0.5s cubic-bezier(0,0,0,0) 0s;
}
.sm_menu_outer .mobile_menu li.slideDown.down>a.active:after, .sm_menu_outer .mobile_menu li.slideDownChild.down>a.active:after{
  /*content: "\f106";*/
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: all 0.25s all 0.5s cubic-bezier(0,0,0,0) 0s;
  -moz-transition: all 0.25s all 0.5s cubic-bezier(0,0,0,0) 0s;
  -o-transition: all 0.25s all 0.5s cubic-bezier(0,0,0,0) 0s;
  transition: all 0.25s all 0.5s cubic-bezier(0,0,0,0) 0s;
}
.sm_menu_outer .mobile_menu li.slideDown.down>a.active, .sm_menu_outer .mobile_menu li.slideDownChild.down>a.active{
  -webkit-box-shadow: 0px 0px 5px 0px rgba(194,194,194,1);
  -moz-box-shadow: 0px 0px 5px 0px rgba(194,194,194,1);
  box-shadow: 0px 0px 5px 0px rgba(194,194,194,1);
  margin-bottom: 2px;
}
.sm_menu_outer .mobile_menu li.slideDown.down .subnav-m, .sm_menu_outer .mobile_menu li.slideDownChild.down .subnav-m{
  position: relative;
  display: none;
}
.sm_menu_outer .mobile_menu li.sig,
.sm_menu_outer .mobile_menu li .sig-menu li,
.sm_menu_outer .mobile_menu li .sig-menu .viewAll a {
  border-bottom: none !important;
}
.sm_menu_outer .mobile_menu li.sig a {
  /*text-align: center;*/
}
.sm_menu_outer .mobile_menu li .sig-menu .viewAll{
  width: 100%;
  text-align: center;
  padding: 0;
}
.sm_menu_outer .mobile_menu li .sig-menu .viewAll a{
  font-family: 'Open Sans', sans-serif;
  color: #fb7d88 !important;
}
.sm_menu_outer .mobile_menu li .sig-menu li a{
  width: 41%;
  padding: 15px 10px 0;
  padding-left: 20px;
  display: inline-block;
  line-height: unset;
}
/*Hamburger Animation */
#sm_menu_ham {
  cursor: pointer;
 /* float: right;*/
  height: 25px;
  position: fixed;
  /*right: 5px;*/
  left: 10px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.5s all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s all 0.5s ease-in-out 0s;
  transition: all 0.5s all 0.5s ease-in-out 0s;
  width: 30px;
  top: 15px;
  /*right: 15px;*/
  z-index: 104;
}
#sm_menu_ham span {
  background-color: #000;
  border-radius: 5px;
  display: block;
  height: 2px;
  left: 0;
  opacity: 1;
  position: absolute;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.25s all 0.5s ease-in-out 0s;
  -moz-transition: all 0.25s all 0.5s ease-in-out 0s;
  -o-transition: all 0.25s all 0.5s ease-in-out 0s;
  transition: all 0.25s all 0.5s ease-in-out 0s;
  width: 25px;
}
#sm_menu_ham span:nth-child(1) {
  top: 0;
}
#sm_menu_ham span:nth-child(2),
#sm_menu_ham span:nth-child(3) {
  top: 8px;
}
#sm_menu_ham span:nth-child(4) {
  top: 16px;
}
#sm_menu_ham.open span:nth-child(1) {
  left: 50%;
  top: 18px;
  width: 0;
}
#sm_menu_ham.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}
#sm_menu_ham.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#sm_menu_ham.open span:nth-child(4) {
  left: 50%;
  top: 18px;
  width: 0;
}
/*@media (min-width: 0px) and (max-width: 767px) {}
@media (min-width: 768px) and (max-width: 991px) {}
@media (min-width: 992px) and (max-width: 1024px) {}*/
@media (min-width: 1024px) {
  #header-left{
    padding-left: 25px;
  }
  .sm_menu_outer.active {
    width: 100%;
    position: fixed;
    background: rgba(0, 0, 0, 0.8);
    height: 100vh !important;
    border: 1px solid #ebebeb;
    border-top: 0px;
    top: 0;
    padding: 0;
    z-index: 103;
  }
  .sm_menu_outer.active .mobile_menu{
    width: 300px;
    height: 100vh;
    background-color: #fff;
  }
  .sm_menu_outer .mobile_menu .submenu{
    left: -100%;
    width: 300px;
  }
  .sm_menu_outer .mobile_menu li.active>.submenu {
    left: 0;
    width: 300px;
  }
  #sm_menu_ham.open {
    left: 22em;
    padding: 100%;
    top: 1em;
  }
  #sm_menu_ham.open span {
    background-color: #fff;
  }
  #sm_menu_ham {
    transition: none;
    top: 20px;
    left: 30px;
  }
  .sm_menu_outer .mobile_menu li .sig-menu li a{
    width: 100%;
    padding: 10px 0 0;
    line-height: unset;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .sm_menu_outer .mobile_menu li .sig-menu .viewAll{
    width: 100%;
    text-align: center;
    padding: 0;
    height: unset;
  }
  .sm_menu_outer .mobile_menu li .sig-menu .viewAll a{
    font-family: 'Open Sans', sans-serif;
    color: #fb7d88 !important;
    padding: 10px 0;
  }
  .sm_menu_outer .mobile_menu li .sig-menu li {
    padding: 10px 30px 0;
    height: 60px;
  }
  .sm_menu_outer .mobile_menu li .sig-menu li a{
    width: 41%;
    padding: 0px;
    display: inline-block;
    line-height: unset;
  }
  .sm_menu_outer .mobile_menu li .sig-menu li:first-child{
    padding-top: 0;
  }
  .sm_menu_outer .mobile_menu li .sig-menu li a:nth-child(even){
    padding-left: 15px;
  }
}