/* html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
overflow-x: hidden;
} */
/* @media only screen and (min-width: 981px) and (max-width: 9000px) {
.header-parent-mobile {
    display: none !important;
}
}
@media only screen and (min-width: 1px) and (max-width: 980px) {
.header-parent-desktop {
    display: none !important;
}
} */
/* header-01 */
.header-parent-mobile {
    width: 100%;
    max-width: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}
.header-main {
    width: 100%;
    max-width: 1100px;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media only screen and (min-width: 1001px) and (max-width: 9000px) {
.header-child {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 10px;
}
}
@media only screen and (min-width: 1px) and (max-width: 1000px) {
.header-child {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0px;
}
}
@media (min-width: 1px) and (max-width: 767px) {
  .menu{
    top: 22px !important;
  }
  .menu.active {
    top: 22px !important;
    left: -15px !important;
  }
}
/* @media only screen and (min-width: 1px) and (max-width: 767px) {
#div-001 {
    position: fixed;
    left: 10px;
}
.header-child-02 {
    flex-direction: column;
}
} */
.header-parent-desktop {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.child-01 {
    width: 30%;
}
.child-02 {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.child-03 {
    width: 30%;
    display: flex;
    justify-content: flex-end;
}
.header-logo-style {
    width: 100%;
    min-width: 160px;
    max-width: 250px;
}
svg.zpa-icons__item-icon {
    width: 100%;
    max-width: 20px;
    height: 20px;
    color: #316588;
}
div#spacing-style-01 {
    width: 100%;
    min-width: 150px;
    max-width: 150px;
    padding: 0;
    margin: 0;
}
div#user-cart {
    width: 100%;
    display: flex;
    align-content: center;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
}
div#user-cart div {
    margin-left: 5px;
}
/* header-02 */
.header-nav-text-main {
    width: 100%;
    max-width: 1100px;
    display: flex;
    justify-content: center;
    align-items: center;
}
a.custom-header-nav-text {
    color: #1C557CBF;
}
a.custom-header-nav-text:hover {
    color: #004676;
    text-decoration: underline;
    text-underline-offset: 0.3rem;
}
.display-flex {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
}
div#display-flex {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px 0;
    color: #1C557CBF;
}
div#display-flex div {
    text-align: center;
    white-space: nowrap;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
}
.zpa-flex--column.xs-12.sm-12.lg-3.md-3.zpa-order-xs--first.zpa-order-sm--first {
    width: 100%;
}
/* header mobile */
.header-parent-mobile {
    width: 100%;
    padding: 10px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header-child-02 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#div-001 {
    width: 23%;
    display: flex;
}
#div-002 {
    width: 48%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#div-003 {
    width: 30%;
    display: flex;
    justify-content: flex-end;
}

/* burger style */

.burger-menu {
    display: inline-block;
    position: relative;
    cursor: pointer;
}
.burger-icon {
    width: 30px;
    height: 20px;
    position: relative;
}
.bar {
    width: 20px;
    height: 2px;
    margin: 4px 0;
    transition: 0.4s;
    background: #000000;
}
.menu {
    position: absolute;
    top: 42px;
    left: -200px;
    list-style: none;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translate(0px, 35px);
    transition: all 0.5s;
    width: 100%;
    min-width: 800px;
    max-width: 800px;
    height: 100%;
    min-height: 460px;
    max-height: 460px;
    padding: 0;
    margin: 0;
}
.menu.active {
    top: 42px;
    left: -32px;
    background: #fff;
    opacity: 1;
    visibility: visible;
    transform: translate(-8px,35px);
    overflow-y: scroll;
    z-index: 999;
    transition: all 1s;
    width: 100%;
    min-width: 800px;
    max-width: 800px;
    height: 100%;
    min-height: 460px;
    max-height: 460px;
    padding-left: 40px;
}
.menu div {
    padding: 8px 10px;
}
.menu div a {
    text-decoration: none;
    color: #316588;
    font-size: 14px;
    font-weight: 400;
}
.menu div a:hover {
    text-decoration: underline;
    color: #316588;
    font-size: 14px;
    font-weight: 400;
}
/* Toggle the menu when burger icon is clicked */
.burger-menu.active .bar:nth-child(1) {
    transform: rotate(-47deg) translate(-2.5px,6px);
}
.burger-menu.active .bar:nth-child(2) {
    opacity: 0;
}
.burger-menu.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-2.5px,-6px);
}
.mobile-dropdown-user-log {
    width: 100%;
    min-width: 325px;
    max-width: 325px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
}
.media-style a {
    width: 100%;
    min-width: 20px;
    max-width: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}
.border {
    width: 100%;
    min-width: 20000px;
    max-width: 20000px;
    border-bottom: 0.1px solid #1c557c24;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translate(-999px, 10px);
}