.header-area {
    padding: 20px 0;
}

.header-area-inner {
    display: flex;
    align-items: center;
}

/*.header-item a img {
    max-width: 100%;
    margin-right: 35px;
}*/

.header-item a:last-of-type {
    font-size: 18px;
    font-weight: 500;
    color: #535353;
    display: none;
    transition: .3s all ease;
    -webkit-transition: .3s all ease;
    -moz-transition: .3s all ease;
}

.header-item a:last-of-type img {
    width: 30px;
}

.header-item a:last-of-type:hover {
    color: #FA3F80;
}

.header-item2 form {
    display: flex;
    align-items: center;
}

.header-item2-inner {
    display: none;
}

.header-item2-inner img {
    width: 20px;
    cursor: pointer;
}

.header-item2-inner2 {
    position: relative;
}

.header-item2-inner2 i {
    font-size: 18px;
    color: #a0a0a0;
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
    cursor: pointer;
    position: absolute;
}

.header-item2-inner2 input {
    font-family: 'BergernThin';
    font-size: 15px;
    font-weight: 300;
    color: #666;
    padding: 0px 20px;
    display: block;
    background-color: #fff;
    border: 1px solid #dbdbdb;
    border-radius: 10px 0 0 10px;
    width: 100%;
    border-right: none;
    padding-left: 50px;
    height: 47px;
    line-height: 47px;
}

.header-item2-inner2 input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #A1A1A1;
  opacity: 1; /* Firefox */
}

.header-item2-inner2 input:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #A1A1A1;
}

.header-item2-inner2 input::-ms-input-placeholder { /* Microsoft Edge */
  color: #A1A1A1;
}

.header-item2-inner3 button {
    font-family: 'BergernRegular';
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    padding: 0px 34px;
    background-color: #ef4f7f;
    display: block;
    border-radius: 0 10px 10px 0;
    border: none;
    height: 47px;
    line-height: 47px;
    transition: .3s all ease;
    -webkit-transition: .3s all ease;
    -moz-transition: .3s all ease;
}

.header-item2 form button {
    opacity: .8;
}

.header-menu-desktop ul {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: end;
}

.header-menu-desktop ul.sub-menu {
    position: absolute;
    flex-wrap: wrap;
    width: 200px;
    background-color: white;
    margin-left: 0;
    text-align: left;
    justify-content: start;
    padding: 5px 10px;
    line-height: 2em;
    border: 1px solid #ddd;
    border-radius: 8px;
    right: -20px;
    top: 50px;
    display: none;
    z-index: 100;
}

.header-menu-desktop ul.sub-menu:before {
    content: ' ';
    display: block;
    width: 20px;
    height: 20px;
    background-color: white;
    position: absolute;
    top: -11px;
    right: 26px;
    border: 1px solid #ddd;
    border-width: 1px 1px 0 0;
    transform: rotate(-45deg);
}

.header-menu-desktop ul.sub-menu.show {
    display: block;
}
.header-menu-desktop li.notifications,
.header-menu-desktop li.store-settings,
.header-menu-desktop li.profile {
    position: relative;
}
.header-menu-desktop li.notifications > a,
.header-menu-desktop li.store-settings > a,
.header-menu-desktop li.profile > a {
    color: transparent;
    font-size: 0px;
    display: block;
    height: 35px;
    width: 35px;
    background: #efefef center center no-repeat;
    border-radius: 50%;
    margin-right: 0;
    background-size: cover;
}
.header-menu-desktop ul.sub-menu li,
.header-menu-desktop ul.sub-menu li a {
    width: 100%;
    display: block;
}
.header-menu-desktop li.notifications,
.header-menu-desktop li.store-settings {
    margin-right: 20px;
}
.header-menu-desktop li.notifications > a {
    background: transparent url('images/icon-notification.png') center center no-repeat;
    background-size: 32px;
}

.header-menu-desktop li.store-settings > a {
    background: transparent url('images/icon-shop.svg') center center no-repeat;
    background-size: 32px;
    border-radius: 0;
}
ul#menu-primary {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.header-menu-desktop ul li > a {
    font-size: 16px;
    font-weight: 500;
    color: #535353;
    margin-right: 35px;
    display: block;
    transition: .3s all ease;
    -webkit-transition: .3s all ease;
    -moz-transition: .3s all ease;
}

.header-menu-mobile {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.header-menu-mobile-inner ul li a img {
    max-width: 100%;
    display: block;
    margin-bottom: 30px;
}

.header-menu-mobile-inner ul li:last-of-type:not(:first-child) a {
    font-size: 16px;
    font-weight: 500;
    color: #FA3F80;
    padding: 12px 20px;
    text-align: center;
    border: 1px solid #FA3F80;
    border-radius: 8px;
    margin-bottom: 30px;
    transition: .3s all ease;
    -webkit-transition: .3s all ease;
    -moz-transition: .3s all ease;
}

.header-menu-mobile-inner ul li:last-of-type:not(:first-child) a:hover {
    background-color: #FA3F80;
    color: #fff;
}

.header-menu-mobile ul li > a {
    font-family: 'BergernRegular';
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 15px;
    display: block;
    color: #535353;
    transition: .3s all ease;
    -webkit-transition: .3s all ease;
    -moz-transition: .3s all ease;
}

.header-menu-mobile ul li > a:hover {
    color: #FA3F80;
}

.header-menu-mobile ul li a .fas {
    width: 16px;
    text-align: center;
    margin-right: 5px;
    float: right;
}

.header-menu-mobile ul ul {
    padding-left: 15px;
}

.header-menu-mobile-inner2 {
    margin-top: 50px;
}

.header-menu-mobile-inner2 ul li > a {
    font-size: 16px;
    font-weight: 500;
    color: #1E1E1E;
    margin-bottom: 15px;
    display: block;
    transition: .3s all ease;
    -webkit-transition: .3s all ease;
    -moz-transition: .3s all ease;
}

#active,
.header-menu-mobile-inner2 ul li a:hover {
    color: #FA3F80;
}

.header-menu-mobile-inner3 h3 {
    font-size: 16px;
    font-weight: 500;
    color: #1E1E1E;
    margin-bottom: 18px;
}

.header-menu-mobile-inner3 ul li {
    display: inline-block;
}

.header-menu-mobile-inner3 ul li a {
    font-size: 18px;
    color: #a1a1a1;
    display: block;
    margin-right: 20px;
    transition: .3s all ease;
    -webkit-transition: .3s all ease;
    -moz-transition: .3s all ease;
}

.header-menu-mobile-inner3 ul li a {
    width: 26px;
}

.header-menu-mobile-inner3 ul li a:hover {
    color: #FA3F80;
}

.offcanvas-box {
    box-shadow: 20px 0px 20px -25px #000;  
    display: none;
}

#my-navigation {
    background-color: #fff;
    color: #fff;
    padding: 30px 20px;
    width: 300px;
    min-height: 100vh;
    overflow: auto;
    z-index: 99999999999999999999999;
}

#my-navigation i {
    font-size: 20px;
    color: #000;
    display: block;
    text-align: right;
    cursor: pointer;
    transition: .3s all ease;
    -webkit-transition: .3s all ease;
    -moz-transition: .3s all ease;
}

#my-navigation i:hover {
    color: #FA3F80;
}

.offcanvas {
    position: fixed;
    z-index: 999999999999999;
    display: none;
    flex-direction: column;
    transform: translate3d(0, 0, 0);
    transition: transform 400ms cubic-bezier(0.645, 0.045, 0.355, 1);
    box-sizing: border-box;
}

.offcanvas--top {
    bottom: 100%;
    left: 0;
    width: 100%;
}

.offcanvas--top--active {
    transform: translate3d(0, 100%, 0);
}

.offcanvas--right {
    top: 0;
    left: 100%;
    height: 100%;
}

.offcanvas--right--active {
    transform: translate3d(-100%, 0, 0);
}

.offcanvas--bottom {
    top: 100%;
    left: 0;
    width: 100%;
}

.offcanvas--bottom--active {
    transform: translate3d(0, -100%, 0);
}

.offcanvas--left {
    top: 0;
    right: 100%;
    height: 100%;
}

.offcanvas--left--active {
    transform: translate3d(100%, 0, 0);
}

.offcanvas--initialized {
    display: block;
}


/*=== footer area start ===*/

#footer-area {
    padding: 30px 0 30px;
    background-color: #f5f5f5;
}

.shfooter .collapse {
  display: inherit;
}

.shfooter h2 {
    font-size: 18px;
    font-weight: 600;
    color: #535353;
    margin-bottom: 20px;
}

.shfooter ul li a {
    font-family: 'BergernRegular';
    font-size: 16px;
    font-weight: 400;
    color: #535353;
    display: block;
    margin-bottom: 20px;
    transition: .3s all ease;
    -webkit-transition: .3s all ease;
    -moz-transition: .3s all ease;
}

.collapse li a:hover {
    color: #fa3f80;
}

.copyright-area {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    /*padding-top: 30px;
    border-top: 1px solid #dbdbdb;
    margin-top: 50px;*/
}

.copyright-area p img {
    max-width: 100%;
    margin-right: 15px;
    display: inline-block;
}

.copyright-area p {
    font-family: 'BergernRegular';
    font-size: 16px;
    font-weight: 400;
    color: #535353;
    margin: 0;
    display: flex;
    align-items: center;
}

.copyright-area ul li {
    display: inline-block;
}

.copyright-area ul li a {
    font-size: 14px;
    color: #818181;
    padding: 0 10px;
    display: block;
    transition: .3s all ease;
    -webkit-transition: .3s all ease;
    -moz-transition: .3s all ease;
}

.copyright-area ul li a:hover {
    color: #fa3f80;
}

.title {
    font-family: 'BergernRegular';
    font-size: 17px;
    font-weight: 500;
    color: #535353;
    margin-bottom: 15px;
    cursor: pointer;
}