#logo, #site-logo {
    margin: 0;
    height: 46px;
}
#logo a { }

#site-name {
    margin-left: 20px;
}

.full-width {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.full-width .wrap {
    width: 95vw;
    max-width: var(--page-width, '1920px');
    margin: 0 auto;
}

#header-inner,
#main,
#content-inner,
#footer-inner {
  width: 95vw;
  max-width: var(--page-width, '1920px');
  margin: 0 auto;
}

/*********************
HEADER STYLES
*********************/

#header {
    margin-bottom: 3vh;
}

#header {
    background-color: var(--background-color, #fff);
    background-color: white; /* FIXME */
}

#header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    width: 100vw;
}

#header #header-inner #header-inner-wrapper .header-full-inner .primary-menu,
#header #header-inner #header-inner-wrapper .header-full-inner .secondary-menu {
    transition: all 0.3s ease-in-out;
}

#header.fixed #header-inner #header-inner-wrapper .header-full-inner .primary-menu,
#header.fixed #header-inner #header-inner-wrapper .header-full-inner .secondary-menu {
    display: none;
}

body.fixed-header #content {
    margin-top: calc(46px + 16px + 16px);
}

.header-basic #site-link,
.header-hamburger #site-link {
    display: block;
}

.header-basic .header-basic-inner,
.header-hamburger .header-hamburger-inner {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 14px;
}

.header-basic .menu-bar,
.header-hamburger .menu-bar {
    position: absolute;
    top: 10px;
    right: -12px;
}

@media screen and (min-width: 1200px) {
    .header-basic .menu-bar {
        display: none;
    }

    .header-full .header-hamburger-menu {
        display: none;
    }
}

/*********************
MENU BAR STYLES
*********************/

.menu-bar .hamburger-checkbox {
    position: absolute;
    top: 2px;
    left: 14px;
    z-index: 5;
    display: block;
    height: 28px;
    width: 28px;
    margin-right: 0;
    opacity: 0;
    cursor: pointer;
}

.menu-bar .mini-cart-checkbox {
    position: absolute;
    top: 5px;
    right: 0;
    z-index: 5;
    display: block;
    height: 28px;
    width: 32px;
    margin-right: 0;
    opacity: 0;
    cursor: pointer;
}

.menu-bar .hamburger-lines {
    display: block;
    height: 20px;
    width: 24px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-bar .hamburger-lines .line {
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 10px;
    background: #5c6b80;
}

.menu-bar .hamburger-lines .line1 {
    transform-origin: 0% 0%;
    transition: transform 0.4s ease-in-out;
}

.menu-bar .hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
}

.menu-bar .hamburger-lines .line3 {
    transform-origin: 0% 100%;
    transition: transform 0.4s ease-in-out;
}

.top-nav {
	
}

.menu-bar {
    position: relative;
}

.navbar .menu-items {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    transition: transform 0.5s ease-in-out;
    text-align: center;
}

.navbar .menu-items li {
    font-size: 1.2rem;
    min-width: 320px;
    text-align: left;
}

.menu-bar input[type="checkbox"] ~ .menu-items {
    display: none;
}

.menu-bar input[type="checkbox"]:checked ~ .menu-items {
    display: flex;
}

.menu-bar input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
    transform: rotate(45deg);
}

.menu-bar input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
    transform: scaleY(0);
}

.menu-bar input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
    transform: rotate(-45deg);
}

#mobile-nav {
    position: absolute;
    top: 5vh;
    left: -20px;
    z-index: 999;
    width: 100vw;
    height: 100vh;
    background-color: rgb(0, 0, 0, 0.7);
}

@media screen and (max-width: 1199px) {
    #main-nav {
        display: none;
    }
}

#menu-main .menu-item {
    background-color: var(--background-color, #fff);
    border-bottom: 1px solid #ececec;
}

@media screen and (max-width: 1199px) {
  .header-basic  #mobile-nav ul,
  .header-hamburger #mobile-nav ul,
  .header-full #mobile-nav ul {
    width: 95vw;
    align-self: center;
    background-color: var(--background-color, #fff);
  }

  .header-basic  #mobile-nav ul .menu-item,
  .header-hamburger #mobile-nav ul .menu-item,
  .header-full #mobile-nav ul .menu-item {
    width: 100%;
  }
}

.primary-menu {
    background-color: var(--section-background-color, '#f9f6f2');
}

.primary-menu .primary-menu-inner-wrapper {
    justify-content: space-between;
}

@media screen and (max-width: 1199px) {
    .primary-menu {
        display: none;
    }
}

.secondary-menu {
    border-bottom: 1px solid #ececec;
}

.secondary-menu .secondary-menu-inner-wrapper,
.menu-bar .menu-bar-inner-wrapper,
.primary-menu .primary-menu-inner-wrapper {
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: space-between;
    align-self: auto;
    flex-basis: auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-wrap: nowrap;
  }

.menu-bar .menu-bar-inner-wrapper {
    margin: 16px 0;
}


.search-form-list-item {
    list-style-type: none;
    background-color: white;
}

.search-form-container {
    display: flex;
    align-content: center;
    align-items: start;
    justify-content: space-around;
    align-self: auto;
    flex-basis: auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-wrap: nowrap;
}


@media screen and (max-width: 1199px) {
    .search-form-container.mobile .aws-container {
        width: 90%;
    }
    .search-form-container.desktop {
        display: none;
    }
}

.search-form-container {
    position: relative;
}

.search-form-container .search-wrapper.input-wrapper {
    display: flex;
    position: relative;
}

.search-form-container .search-wrapper {
    margin: 0;
}
.search-form-container .hs-expanded form {
    height: 40px;
}
.search-form-container .hs-simple form {
    height: 40px;
}

.menu-bar .search-form-container .search-wrapper input.form-control.search-input {
    font-size: 12px;
    letter-spacing: 0.2px;
    min-width: 300px;
}
.menu-bar .search-form-container .search-wrapper.input-wrapper {
    border-width: 1px 1px 1px 1px;
    border-style: solid;
    border-color: #353CCA; /*var( --e-global-color-primary );*/
    border-radius: 32px;
}
.search-form-container .search-wrapper .select-box {
    border-radius: 4rem 0 0 4rem;
}
.search-form-container .search-wrapper .btn-search {
    border-radius: 0 4rem 4rem 0;
    padding:0px 14px 0px 0px;
}
.search-form-container .search-wrapper.hs-simple input.form-control {
    border-radius: 4rem 4rem 4rem 4rem;
}
.search-form-container.mobile .search-wrapper input {
    border-radius: 32px 0 0 32px;
}
.search-form-container .search-wrapper form {
    border-radius: 4rem 4rem 4rem 4rem;
}
.search-form-container .search-wrapper .btn-search i {
    font-size: 15px;
}

.search-form-container .select-box {
    min-width: 150px;
}

.search-form-container .hs-expanded .select-box {
    width: 161px;
}
.search-form-container .hs-expanded {
    max-width: 750px;
}
.search-form-container .hs-simple {
    max-width: 750px;
}
.search-form-container .search-wrapper {
    margin: 0 auto;
}
.search-form-container .hs-expanded form {
    height: 47px;
}
.search-form-container .hs-simple form {
    height: 47px;
}

.search-form-container .search-wrapper .select-box {
    border-radius: 4rem 0 0 4rem;
    margin-left: 16px;
    max-width: 200px;
}

.search-form-container .search-wrapper .btn-search {
    border-radius: 0 4rem 4rem 0;
    padding: 0px 14px 0px 0px;
}

.search-form-container .search-wrapper.hs-simple input.form-control {
    border-radius: 4rem 4rem 4rem 4rem;
}

.search-form-container .search-wrapper form {
    border-radius: 4rem 4rem 4rem 4rem;
}

.search-form-container .search-wrapper .btn-search i {
    font-size: 16px;
}


.secondary-menu {

}

@media screen and (max-width: 1199px) {
    .secondary-menu {
        display: none;
    }
}

.secondary-menu .menu-item { margin: 0rem 2.4rem 0rem 0rem; }
.secondary-menu .menu-item:last-of-type { margin-right: 0; }

.secondary-menu .menu-item > a {
  text-transform: capitalize;
  color: #555555;
  padding: 0px 0px 0px 0px;
}


.call-us {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 32px;
}

@media screen and (max-width: 1199px) {
    .call-us {
        display: none;
    }
}

.call-us .phone-icon-wrapper {
    margin-top: 3%;
}


.call-us .phone-icon-wrapper i {
    font-size: 32px;
}








































.footer .footer-rows {
    display: flex;
    align-items: start;
    justify-content: space-between;
    margin-top: 20px;
}

@media screen and (max-width: 767px) {
    .footer .footer-rows {
        flex-direction: column;
    }
}

.footer .footer-rows .footer-col-1 {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.footer .footer-rows .footer-col-1 .footer-logo {
    align-self: center;
}

.footer .footer-nav .menu-item a,
.footer a {
    color: white;
}

.footer .footer-col .footer-nav {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
}

.footer .footer-title h3 {
    color: #F2F2F2;

    font-size: 17px;
    font-weight: bold;
    text-transform: capitalize;
}

.footer .footer-social-badges a {
    margin-right: 5px;
}

.footer .footer-social-badges a:last-of-type {
    margin-right: 0;
}

.footer .footer-social-badges a i {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer .footer-app-store-badges img {
    width: auto;
    height: 35px;
}

.footer .copyright {
  margin: 20px 0 30px 0;
}
