1969 lines
30 KiB
SCSS
1969 lines
30 KiB
SCSS
/*--------------------------------------------------------------
|
|
2. header
|
|
--------------------------------------------------------------*/
|
|
|
|
|
|
/*-- 2.1 topbar --*/
|
|
|
|
.topbar {
|
|
padding: 20px 0;
|
|
border-bottom: 1px solid #D9D9D9;
|
|
|
|
.contact-info-wrap {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
align-items: center;
|
|
|
|
@media(max-width:991px) {
|
|
justify-content: center;
|
|
padding-right: 0;
|
|
}
|
|
|
|
@media(max-width:640px) {
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.contact-info {
|
|
margin: 0 30px;
|
|
position: relative;
|
|
|
|
@media(max-width:1199px) {
|
|
margin: 0 20px;
|
|
}
|
|
|
|
@media(max-width:991px) {
|
|
margin: 0 15px;
|
|
}
|
|
|
|
@media(max-width:767px) {
|
|
margin: 0 5px;
|
|
}
|
|
|
|
@media(max-width:640px) {
|
|
text-align: center;
|
|
justify-content: space-between;
|
|
margin: 0 10px;
|
|
}
|
|
|
|
@media(max-width:575px) {
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
&+.contact-info {
|
|
&:before {
|
|
position: absolute;
|
|
left: -30px;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
width: 1px;
|
|
height: 40px;
|
|
content: "";
|
|
background: #D9D9D9;
|
|
|
|
@media(max-width:1199px) {
|
|
left: -20px;
|
|
}
|
|
|
|
@media(max-width:767px) {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
.icon {
|
|
float: left;
|
|
text-align: center;
|
|
margin-right: 20px;
|
|
|
|
@media(max-width:640px) {
|
|
float: none;
|
|
margin: 0 auto;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
@media(max-width:575px) {
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.fi {
|
|
&:before {
|
|
line-height: unset;
|
|
color: $theme-primary-color;
|
|
font-size: 25px;
|
|
|
|
@media(max-width:640px) {
|
|
font-size: 18px;
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
.info-text {
|
|
overflow: hidden;
|
|
margin-left: 20px;
|
|
|
|
@media(max-width:575px) {
|
|
margin-left: 0;
|
|
}
|
|
|
|
@media(max-width:640px) {
|
|
margin-left: 0;
|
|
}
|
|
|
|
span {
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
line-height: 30px;
|
|
color: $text-color;
|
|
display: block;
|
|
margin-bottom: 0px;
|
|
|
|
@media(max-width:1400px) {
|
|
font-size: 13px;
|
|
}
|
|
}
|
|
|
|
p {
|
|
font-weight: 400;
|
|
font-size: 20px;
|
|
line-height: 26px;
|
|
color: #262626;
|
|
margin-bottom: 0;
|
|
font-family: $heading-font;
|
|
|
|
@media(max-width:1399px) {
|
|
font-size: 16px;
|
|
}
|
|
}
|
|
}
|
|
|
|
&:last-child {
|
|
margin-right: 0;
|
|
|
|
.info-text {
|
|
margin-right: 0;
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
/* 2.2 navigation */
|
|
|
|
|
|
.wpo-site-header {
|
|
/* navigation open and close btn hide for width screen */
|
|
/* style for navigation less than 992px */
|
|
/*navbar collaps less then 992px*/
|
|
/*** cart-search-contact ***/
|
|
background-color: transparent;
|
|
}
|
|
|
|
.wpo-site-header .navigation {
|
|
background-color: #fff;
|
|
margin-bottom: 0;
|
|
padding: 0;
|
|
border: 0;
|
|
-webkit-border-radius: 0;
|
|
-moz-border-radius: 0;
|
|
-o-border-radius: 0;
|
|
-ms-border-radius: 0;
|
|
border-radius: 0;
|
|
}
|
|
|
|
.sticky-header {
|
|
width: 100%;
|
|
position: fixed;
|
|
left: 0;
|
|
top: -400px;
|
|
z-index: 9999;
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
-webkit-transition: all 1s;
|
|
-moz-transition: all 1s;
|
|
-o-transition: all 1s;
|
|
-ms-transition: all 1s;
|
|
transition: all 1s;
|
|
-webkit-box-shadow: 0 -5px 15px #086ad84a;
|
|
box-shadow: 0 -5px 15px #086ad84a;
|
|
}
|
|
|
|
.sticky-on {
|
|
opacity: 1;
|
|
top: 0;
|
|
visibility: visible;
|
|
}
|
|
|
|
.wpo-site-header .navigation>.container {
|
|
position: relative;
|
|
}
|
|
|
|
@media (min-width: 991px) {
|
|
.wpo-site-header {
|
|
padding: 0 250px;
|
|
|
|
}
|
|
}
|
|
|
|
.wpo-site-header {
|
|
.row {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
|
|
@media (max-width: 991px) {
|
|
.wpo-site-header .navigation {
|
|
padding: 20px 0;
|
|
}
|
|
}
|
|
|
|
.wpo-site-header #navbar {
|
|
-webkit-transition: all 0.5s;
|
|
-moz-transition: all 0.5s;
|
|
-o-transition: all 0.5s;
|
|
-ms-transition: all 0.5s;
|
|
transition: all 0.5s;
|
|
}
|
|
|
|
.wpo-site-header #navbar>ul li a:hover,
|
|
.wpo-site-header #navbar>ul li a:focus {
|
|
text-decoration: none;
|
|
color: $theme-primary-color;
|
|
}
|
|
|
|
@media screen and (min-width: 992px) {
|
|
.wpo-site-header #navbar {
|
|
/*** hover effect ***/
|
|
justify-content: center;
|
|
}
|
|
|
|
.wpo-site-header #navbar li {
|
|
position: relative;
|
|
}
|
|
|
|
.wpo-site-header #navbar>ul>li>a:before {
|
|
position: absolute;
|
|
left: 50%;
|
|
top: 0;
|
|
width: 0;
|
|
height: 4px;
|
|
transform: translateX(-50%);
|
|
background: $theme-primary-color-gradient;
|
|
content: "";
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
transition: all .3s;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.wpo-site-header #navbar>ul>li>a:hover:before,
|
|
.wpo-site-header #navbar>ul>li>a.active:before {
|
|
opacity: 1;
|
|
visibility: visible;
|
|
width: 100%;
|
|
}
|
|
|
|
.wpo-site-header #navbar>ul>li>a.active {
|
|
color: $theme-primary-color-s2;
|
|
}
|
|
|
|
.wpo-site-header #navbar>ul>li>.sub-menu>.menu-item-has-children>a {
|
|
position: relative;
|
|
}
|
|
|
|
.wpo-site-header #navbar>ul>li>.sub-menu>.menu-item-has-children>a:before {
|
|
font-family: "themify";
|
|
content: "\e649";
|
|
font-size: 11px;
|
|
font-size: 0.73333rem;
|
|
position: absolute;
|
|
right: 15px;
|
|
top: 58%;
|
|
-webkit-transform: translateY(-50%);
|
|
-moz-transform: translateY(-50%);
|
|
-o-transform: translateY(-50%);
|
|
-ms-transform: translateY(-50%);
|
|
transform: translateY(-50%);
|
|
}
|
|
|
|
.wpo-site-header #navbar>ul>li:hover>.sub-menu {
|
|
top: 100%;
|
|
visibility: visible;
|
|
opacity: 1;
|
|
}
|
|
|
|
.wpo-site-header #navbar .sub-menu>li:hover>.sub-menu {
|
|
left: 100%;
|
|
visibility: visible;
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.wpo-site-header .container-fluid {
|
|
padding-right: 0;
|
|
}
|
|
|
|
@media (max-width: 991px) {
|
|
.wpo-site-header {
|
|
/* class for show hide navigation */
|
|
}
|
|
|
|
.wpo-site-header .container {
|
|
width: 100%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.wpo-site-header .header-right {
|
|
right: -10px;
|
|
}
|
|
|
|
.wpo-site-header .navbar-header button span {
|
|
background-color: #fff;
|
|
width: 20px;
|
|
display: block;
|
|
height: 2px;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.wpo-site-header .navbar-header button span:last-child {
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
.wpo-site-header #navbar {
|
|
ul {
|
|
list-style: none;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 991px) and (max-width: 991px) {
|
|
.wpo-site-header #navbar {
|
|
top: 0;
|
|
visibility: visible;
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 991px) {
|
|
.wpo-site-header #navbar>ul {
|
|
z-index: 101;
|
|
}
|
|
|
|
.wpo-site-header #navbar ul a {
|
|
color: #000;
|
|
}
|
|
|
|
.wpo-site-header #navbar ul a:hover,
|
|
.wpo-site-header #navbar ul li.current a {
|
|
color: $theme-primary-color-s2;
|
|
}
|
|
|
|
.wpo-site-header #navbar .close-navbar .ti-close {
|
|
position: relative;
|
|
top: 1px;
|
|
}
|
|
|
|
.wpo-site-header .navbar-toggler .first-angle,
|
|
.wpo-site-header .navbar-toggler .last-angle {
|
|
-webkit-transition: all 0.3s;
|
|
-moz-transition: all 0.3s;
|
|
-o-transition: all 0.3s;
|
|
-ms-transition: all 0.3s;
|
|
transition: all 0.3s;
|
|
}
|
|
|
|
.wpo-site-header .x-close .middle-angle {
|
|
opacity: 0;
|
|
}
|
|
|
|
.wpo-site-header .x-close .first-angle {
|
|
position: absolute;
|
|
-webkit-transform: rotate(-44deg);
|
|
top: 16px;
|
|
left: 10px;
|
|
}
|
|
|
|
.wpo-site-header .x-close .last-angle {
|
|
-webkit-transform: rotate(44deg);
|
|
position: absolute;
|
|
top: 16px;
|
|
right: 10px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 767px) {
|
|
.wpo-site-header .navbar-header .navbar-brand {
|
|
font-size: 24px;
|
|
}
|
|
|
|
.wpo-site-header #navbar .navbar-nav {
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 991px) {
|
|
.wpo-site-header .navbar-collapse.collapse {
|
|
display: none;
|
|
}
|
|
|
|
.wpo-site-header .navbar-collapse.collapse.in {
|
|
display: block;
|
|
}
|
|
|
|
.wpo-site-header .navbar-header .collapse,
|
|
.wpo-site-header .navbar-toggle {
|
|
display: block;
|
|
}
|
|
|
|
.wpo-site-header .navbar-header {
|
|
float: none;
|
|
position: relative;
|
|
z-index: 99;
|
|
text-align: center;
|
|
}
|
|
|
|
.wpo-site-header .navbar-right {
|
|
float: none;
|
|
}
|
|
|
|
.wpo-site-header .navbar-nav {
|
|
float: none;
|
|
}
|
|
|
|
.wpo-site-header .navbar-nav>li {
|
|
float: none;
|
|
}
|
|
}
|
|
|
|
.wpo-site-header .header-right {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
z-index: 991;
|
|
position: relative;
|
|
align-items: center;
|
|
}
|
|
|
|
.wpo-site-header .header-right button {
|
|
padding: 0;
|
|
border: 0;
|
|
outline: 0;
|
|
}
|
|
|
|
.wpo-site-header .header-right>div {
|
|
float: left;
|
|
position: relative;
|
|
}
|
|
|
|
.wpo-site-header .header-right {
|
|
.close-form {
|
|
.theme-btn {
|
|
@media(max-width:1400px) {
|
|
padding: 15px 15px;
|
|
font-size: 15px;
|
|
}
|
|
|
|
@media(max-width:1110px) {
|
|
font-size: 13px;
|
|
padding: 6px 10px;
|
|
}
|
|
|
|
@media(max-width:991px) {
|
|
padding: 0;
|
|
width: 40px;
|
|
height: 40px;
|
|
}
|
|
|
|
.text {
|
|
@media (max-width:991px) {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.mobile {
|
|
@media (min-width:991px) {
|
|
display: none;
|
|
}
|
|
|
|
.fi {
|
|
font-size: 20px;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
}
|
|
|
|
@media (max-width: 450px) {
|
|
.wpo-site-header .header-right>div {
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.header-right {
|
|
right: -10px;
|
|
}
|
|
}
|
|
|
|
.wpo-site-header .header-right>div:last-child {
|
|
margin: 0 0 0 10px;
|
|
position: relative;
|
|
|
|
@media (max-width:1199px) {
|
|
margin: 0;
|
|
}
|
|
|
|
|
|
@media (max-width: 767px) {}
|
|
|
|
}
|
|
|
|
.wpo-site-header .header-right .header-search-form-wrapper {
|
|
position: relative;
|
|
}
|
|
|
|
|
|
|
|
.wpo-site-header .header-right .header-search-form-wrapper .fi:before {
|
|
font-size: 18px;
|
|
}
|
|
|
|
.wpo-site-header .header-right .cart-toggle-btn {
|
|
@media(max-width:450px) {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.wpo-site-header .header-right .search-toggle-btn {
|
|
|
|
@media(max-width:450px) {
|
|
width: 18px;
|
|
height: 30px;
|
|
text-align: center;
|
|
}
|
|
|
|
.fi {
|
|
color: $white;
|
|
margin-right: 20px;
|
|
|
|
@media(max-width:450px) {
|
|
margin-right: 0;
|
|
text-align: center;
|
|
}
|
|
|
|
&:before {
|
|
@media(max-width:991px) {
|
|
font-size: 16px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.ti-close {
|
|
display: block;
|
|
line-height: 20px;
|
|
position: relative;
|
|
top: 0;
|
|
}
|
|
|
|
}
|
|
|
|
/*** cart-search-contact ***/
|
|
.cart-search-contact {
|
|
|
|
button {
|
|
background: transparent;
|
|
padding: 0;
|
|
border: 0;
|
|
outline: 0;
|
|
}
|
|
|
|
.fi {
|
|
font-size: 30px;
|
|
font-size: calc-rem-value(30);
|
|
color: $dark-gray;
|
|
}
|
|
|
|
>div {
|
|
float: left;
|
|
position: relative;
|
|
}
|
|
|
|
>div+div {
|
|
margin-left: 12px;
|
|
}
|
|
|
|
.header-search-form {
|
|
position: absolute;
|
|
width: 350px;
|
|
right: 0;
|
|
top: 75px;
|
|
transform: scale(0);
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
background: $white;
|
|
padding: 30px;
|
|
border-radius: 6px;
|
|
@include transition-time(0.5s);
|
|
box-shadow: -2px 18px 40px -9px rgba(153, 153, 153, 1);
|
|
|
|
@include media-query(991px) {
|
|
top: 65px;
|
|
}
|
|
|
|
@include media-query(767px) {
|
|
right: 15px;
|
|
}
|
|
|
|
@include media-query(575px) {
|
|
width: 260px;
|
|
padding: 15px;
|
|
}
|
|
}
|
|
|
|
.header-search-form-wrapper .fi:before {
|
|
font-size: 18px;
|
|
font-size: calc-rem-value(18);
|
|
}
|
|
|
|
form div {
|
|
position: relative;
|
|
|
|
button {
|
|
position: absolute;
|
|
right: 15px;
|
|
top: 50%;
|
|
@include translatingY();
|
|
|
|
.fi {
|
|
&:before {
|
|
font-size: 18px !important;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
input {
|
|
width: 100%;
|
|
height: 50px;
|
|
padding: 6px 20px;
|
|
border: 0;
|
|
border-radius: 0;
|
|
box-shadow: none;
|
|
border: 1px solid $border-color;
|
|
|
|
&:focus {
|
|
box-shadow: none;
|
|
border-color: $theme-primary-color;
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
|
|
.wpo-site-header .header-right .header-search-content-toggle {
|
|
opacity: 1;
|
|
visibility: visible;
|
|
right: 0;
|
|
transform: scale(1);
|
|
}
|
|
|
|
.mini-cart .cart-count {
|
|
background: $theme-primary-color;
|
|
width: 19px;
|
|
height: 19px;
|
|
font-size: 10px;
|
|
font-size: calc-rem-value(8);
|
|
line-height: 17px;
|
|
color: white;
|
|
position: absolute;
|
|
top: -2px;
|
|
right: -5px;
|
|
border-radius: 50%;
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
.mini-cart-content {
|
|
background: $white;
|
|
width: 320px;
|
|
height: 100%;
|
|
z-index: 100;
|
|
position: fixed;
|
|
right: -320px;
|
|
top: 0;
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
@include transition-time(0.5s);
|
|
box-shadow: -2px 18px 40px -9px rgba(153, 153, 153, 1);
|
|
|
|
@media(max-width:575px) {
|
|
width: 290px;
|
|
}
|
|
|
|
|
|
.mini-cart-close {
|
|
display: block;
|
|
width: 40px;
|
|
height: 40px;
|
|
background-color: rgb(51, 51, 51);
|
|
color: rgb(255, 255, 255);
|
|
font-size: 0px;
|
|
text-align: center;
|
|
overflow: hidden;
|
|
position: relative;
|
|
float: right;
|
|
line-height: 54px;
|
|
border-radius: 3px;
|
|
right: 10px;
|
|
top: 20px;
|
|
|
|
i {
|
|
font-size: 15px;
|
|
}
|
|
}
|
|
|
|
p {
|
|
font-size: 15px;
|
|
font-size: calc-rem-value(15);
|
|
font-weight: 500;
|
|
color: $heading-color;
|
|
margin: 0;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.mini-cart-items {
|
|
padding: 100px 20px 25px;
|
|
}
|
|
|
|
.mini-cart-item {
|
|
padding-top: 15px;
|
|
margin-top: 15px;
|
|
border-top: 1px solid #efefef;
|
|
}
|
|
|
|
.mini-cart-item:first-child {
|
|
padding-top: 0;
|
|
margin-top: 0;
|
|
border-top: 0;
|
|
}
|
|
|
|
|
|
.mini-cart-item-image {
|
|
width: 50px;
|
|
height: 50px;
|
|
border: 2px solid #f3f3f3;
|
|
float: left;
|
|
margin-right: 15px;
|
|
}
|
|
|
|
.mini-cart-item-image a,
|
|
.mini-cart-item-image img {
|
|
display: block;
|
|
width: 46px;
|
|
height: 46px;
|
|
}
|
|
|
|
.mini-cart-item-des {
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.mini-cart-item-des a {
|
|
font-size: 14px;
|
|
font-size: calc-rem-value(14);
|
|
font-weight: 600;
|
|
text-align: left;
|
|
color: $heading-color;
|
|
}
|
|
|
|
.mini-cart-item-des a:hover {
|
|
color: $theme-primary-color;
|
|
}
|
|
|
|
|
|
.mini-cart-item-des .mini-cart-item-price {
|
|
font-size: 13px;
|
|
font-size: calc-rem-value(13);
|
|
color: #888;
|
|
display: block;
|
|
margin-top: 3px;
|
|
}
|
|
|
|
.mini-cart-item-des .mini-cart-item-quantity {
|
|
font-size: 12px;
|
|
font-size: calc-rem-value(12);
|
|
color: #444;
|
|
display: block;
|
|
position: absolute;
|
|
right: 0;
|
|
top: 6px;
|
|
}
|
|
|
|
.visible-icon {
|
|
position: absolute;
|
|
left: 50%;
|
|
top: 50%;
|
|
transform: translate(-50%, -50%);
|
|
width: 300px;
|
|
height: 300px;
|
|
opacity: .02;
|
|
z-index: -1;
|
|
}
|
|
|
|
.mini-cart-action {
|
|
padding: 20px 0 30px;
|
|
text-align: center;
|
|
position: absolute;
|
|
left: 50%;
|
|
bottom: 0;
|
|
transform: translateX(-50%);
|
|
|
|
.theme-btn-s2 {
|
|
float: right;
|
|
}
|
|
|
|
.mini-btn {
|
|
width: 240px;
|
|
}
|
|
}
|
|
|
|
.mini-cart-action .mini-checkout-price {
|
|
font-size: 16px;
|
|
font-size: calc-rem-value(16);
|
|
font-weight: 600;
|
|
color: $heading-color;
|
|
display: block;
|
|
margin-bottom: 30px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
|
|
span {
|
|
color: #c79652;
|
|
font-size: 20px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.mini-cart-content-toggle,
|
|
.mini-wislist-content-toggle {
|
|
opacity: 1;
|
|
visibility: visible;
|
|
right: 0;
|
|
}
|
|
|
|
@media (max-width: 991px) {
|
|
.page-wrapper {
|
|
-webkit-transition: all 0.3s;
|
|
-moz-transition: all 0.3s;
|
|
-o-transition: all 0.3s;
|
|
-ms-transition: all 0.3s;
|
|
transition: all 0.3s;
|
|
}
|
|
|
|
.body-overlay:before {
|
|
content: "";
|
|
width: 100%;
|
|
height: 100%;
|
|
background: rgba(0, 0, 0, 0.9);
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
z-index: 10;
|
|
-webkit-transition: all 0.3s;
|
|
-moz-transition: all 0.3s;
|
|
-o-transition: all 0.3s;
|
|
-ms-transition: all 0.3s;
|
|
transition: all 0.3s;
|
|
}
|
|
}
|
|
|
|
.header-search-area {
|
|
background: #fff;
|
|
width: 100%;
|
|
padding: 100px 0;
|
|
text-align: center;
|
|
position: fixed;
|
|
left: 0;
|
|
top: 0;
|
|
z-index: 999;
|
|
}
|
|
|
|
.header-search-area h3 {
|
|
font-size: 45px;
|
|
margin: 0 0 1em;
|
|
}
|
|
|
|
.header-search-area form {
|
|
position: relative;
|
|
}
|
|
|
|
.header-search-area input {
|
|
height: 50px;
|
|
font-size: 18px;
|
|
font-size: 1.2rem;
|
|
border-radius: 0;
|
|
border: 0;
|
|
border-bottom: 1px solid #d0d0d0;
|
|
-webkit-box-shadow: none;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.header-search-area input:focus {
|
|
-webkit-box-shadow: none;
|
|
box-shadow: none;
|
|
border-color: $theme-primary-color;
|
|
}
|
|
|
|
.header-search-area form button {
|
|
background: transparent;
|
|
border: 0;
|
|
font-size: 20px;
|
|
font-size: 1.33333rem;
|
|
position: absolute;
|
|
right: 0;
|
|
bottom: 10px;
|
|
}
|
|
|
|
.header-search-area form button:focus {
|
|
border: none;
|
|
outline: none;
|
|
}
|
|
|
|
.header-search-area .close-form {
|
|
position: absolute;
|
|
right: 35px;
|
|
top: 35px;
|
|
bottom: auto;
|
|
padding-bottom: 5px;
|
|
border-bottom: 1px solid;
|
|
}
|
|
|
|
.header-search-area .close-form button {
|
|
background: transparent;
|
|
border: 0;
|
|
outline: 0;
|
|
font-size: 13px;
|
|
font-size: 0.86667rem;
|
|
text-transform: uppercase;
|
|
color: #000;
|
|
letter-spacing: 2px;
|
|
z-index: 99;
|
|
}
|
|
|
|
.header-search-area .close-form button:focus {
|
|
border: 0;
|
|
outline: 0;
|
|
}
|
|
|
|
|
|
.wpo-site-header {
|
|
.navigation {
|
|
background-color: transparent;
|
|
margin-bottom: 0;
|
|
padding: 0;
|
|
border: 0;
|
|
@include rounded-border(0);
|
|
|
|
>.container {
|
|
position: relative;
|
|
}
|
|
|
|
@include media-query(991px) {
|
|
padding: 20px 0;
|
|
}
|
|
}
|
|
|
|
#navbar {
|
|
@include transition-time(0.5s);
|
|
|
|
>ul li a:hover,
|
|
>ul li a:focus {
|
|
text-decoration: none;
|
|
color: $theme-primary-color-s2;
|
|
}
|
|
|
|
// style for widther screen
|
|
@include widther(992px) {
|
|
li {
|
|
position: relative;
|
|
}
|
|
|
|
>ul>li>a {
|
|
font-size: 18px;
|
|
padding: 35px 25px;
|
|
display: block;
|
|
color: $dark-gray;
|
|
font-weight: 500;
|
|
position: relative;
|
|
font-family: $heading-font;
|
|
text-transform: uppercase;
|
|
|
|
|
|
@media(max-width:1870px) {
|
|
padding: 35px 18px;
|
|
}
|
|
}
|
|
|
|
>ul .sub-menu {
|
|
background-color: #fff;
|
|
box-shadow: 0px 2px 20px 0px rgba(62, 65, 159, 0.09);
|
|
width: 235px;
|
|
position: absolute;
|
|
padding: 20px 0;
|
|
left: 0;
|
|
top: 110%;
|
|
z-index: 10;
|
|
visibility: hidden;
|
|
opacity: 0;
|
|
@include transition-time(0.3s);
|
|
}
|
|
|
|
>ul>li .sub-menu a {
|
|
font-size: 16px;
|
|
display: block;
|
|
padding: 10px 15px;
|
|
color: $dark-gray;
|
|
font-family: $heading-font;
|
|
position: relative;
|
|
overflow: hidden;
|
|
font-weight: 500;
|
|
text-transform: uppercase;
|
|
|
|
&:after {
|
|
position: absolute;
|
|
left: 15px;
|
|
bottom: 4px;
|
|
width: 0px;
|
|
height: 2px;
|
|
content: "";
|
|
background: $theme-primary-color-gradient;
|
|
transition: all .3s;
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
}
|
|
|
|
&:hover,
|
|
&.active {
|
|
&:after {
|
|
width: 40px;
|
|
opacity: 1;
|
|
visibility: visible;
|
|
}
|
|
}
|
|
}
|
|
|
|
>ul>li>.sub-menu .sub-menu {
|
|
left: 110%;
|
|
top: 0;
|
|
}
|
|
|
|
>ul>li>.sub-menu>.menu-item-has-children>a {
|
|
position: relative;
|
|
|
|
&:before {
|
|
font-family: "themify";
|
|
content: "\e649";
|
|
font-size: 11px;
|
|
font-size: calc-rem-value(11);
|
|
position: absolute;
|
|
right: 15px;
|
|
top: 50%;
|
|
@include translatingY();
|
|
}
|
|
}
|
|
|
|
/*** hover effect ***/
|
|
>ul>li:hover>.sub-menu {
|
|
top: 100%;
|
|
visibility: visible;
|
|
opacity: 1;
|
|
}
|
|
|
|
.sub-menu>li:hover>.sub-menu {
|
|
left: 100%;
|
|
visibility: visible;
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
@include media-query(991px) {
|
|
|
|
>ul>li a {
|
|
display: block;
|
|
font-size: 15px;
|
|
font-size: calc-rem-value(15);
|
|
color: $white;
|
|
font-weight: 600;
|
|
|
|
&:hover,
|
|
&.active {
|
|
color: $white;
|
|
}
|
|
}
|
|
|
|
>ul .sub-menu>li:last-child {
|
|
border-bottom: 0;
|
|
}
|
|
|
|
>ul>li>.sub-menu a {
|
|
padding: 8px 15px 8px 45px;
|
|
}
|
|
|
|
>ul>li>.sub-menu .sub-menu a {
|
|
padding: 8px 15px 8px 65px;
|
|
}
|
|
|
|
>ul .menu-item-has-children>a {
|
|
position: relative;
|
|
color: #ddd;
|
|
|
|
&:hover,
|
|
&.active {
|
|
color: #fff;
|
|
}
|
|
|
|
&:before {
|
|
font-family: "themify";
|
|
content: "\e649";
|
|
font-size: 11px;
|
|
font-size: calc-rem-value(11);
|
|
position: absolute;
|
|
right: 30px;
|
|
top: 50%;
|
|
@include translatingY();
|
|
@include transition-time(0.3s);
|
|
}
|
|
|
|
&.rotate {
|
|
&:before {
|
|
transform: rotate(90deg);
|
|
top: 29%;
|
|
}
|
|
}
|
|
|
|
&.rotate {
|
|
color: #fff;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/* navigation open and close btn hide for width screen */
|
|
@include widther(992px) {
|
|
.navbar-header .open-btn {
|
|
display: none;
|
|
}
|
|
|
|
#navbar .close-navbar {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.menu-close {
|
|
display: none;
|
|
}
|
|
|
|
|
|
/* style for navigation less than 992px */
|
|
@include media-query (991px) {
|
|
.container {
|
|
width: 100%;
|
|
}
|
|
|
|
.mobail-menu button {
|
|
background-color: $theme-primary-color;
|
|
width: 40px;
|
|
height: 35px;
|
|
border: 0;
|
|
padding: 5px 10px;
|
|
outline: 0;
|
|
position: relative;
|
|
z-index: 20;
|
|
|
|
&:focus {
|
|
outline: none;
|
|
box-shadow: none;
|
|
}
|
|
|
|
|
|
span {
|
|
background-color: $white;
|
|
width: 20px;
|
|
display: block;
|
|
height: 2px;
|
|
margin-bottom: 5px;
|
|
|
|
&:last-child {
|
|
margin: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
#navbar {
|
|
background: linear-gradient(286.02deg, #080A14 38.02%, #10121E 61.92%, #282A34 74.32%, #404354 90.71%, #343643 99.65%);
|
|
display: block !important;
|
|
width: 300px;
|
|
height: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
border: 0;
|
|
position: fixed;
|
|
left: -320px;
|
|
top: 0px;
|
|
z-index: 999999;
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
|
|
.navbar-nav {
|
|
display: block;
|
|
}
|
|
|
|
>ul {
|
|
position: relative;
|
|
z-index: 101;
|
|
}
|
|
|
|
ul a {
|
|
color: $black;
|
|
}
|
|
|
|
ul a:hover,
|
|
ul li.current a {
|
|
color: $theme-primary-color;
|
|
}
|
|
|
|
.navbar-nav {
|
|
height: 100%;
|
|
overflow: auto;
|
|
padding-bottom: 60px;
|
|
}
|
|
|
|
.close-navbar {
|
|
background-color: $white;
|
|
width: 40px;
|
|
height: 40px;
|
|
color: $black;
|
|
border: 0;
|
|
outline: none;
|
|
position: absolute;
|
|
left: -41px;
|
|
top: 90px;
|
|
z-index: 20;
|
|
|
|
.ti-close {
|
|
position: relative;
|
|
top: 1px;
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
|
|
.menu-close {
|
|
display: block;
|
|
z-index: 99;
|
|
background: none;
|
|
text-align: center;
|
|
color: $white;
|
|
border: 0;
|
|
text-align: center;
|
|
margin-left: auto;
|
|
margin-top: 30px;
|
|
margin-right: 30px;
|
|
margin-bottom: 30px;
|
|
width: 40px;
|
|
height: 40px;
|
|
line-height: 40px;
|
|
border: 1px solid $white;
|
|
}
|
|
|
|
/* class for show hide navigation */
|
|
.slideInn {
|
|
left: 0 !important;
|
|
opacity: 1 !important;
|
|
visibility: visible !important;
|
|
}
|
|
|
|
.navbar-toggler .first-angle,
|
|
.navbar-toggler .last-angle {
|
|
@include transition-time(0.3s);
|
|
}
|
|
|
|
.x-close .middle-angle {
|
|
opacity: 0;
|
|
}
|
|
|
|
.x-close .first-angle {
|
|
position: absolute;
|
|
-webkit-transform: rotate(-44deg);
|
|
top: 16px;
|
|
left: 10px;
|
|
}
|
|
|
|
.x-close .last-angle {
|
|
-webkit-transform: rotate(44deg);
|
|
position: absolute;
|
|
top: 16px;
|
|
right: 10px;
|
|
}
|
|
}
|
|
|
|
@include media-query(767px) {
|
|
.navbar-header .navbar-brand {
|
|
font-size: 24px;
|
|
}
|
|
|
|
#navbar .navbar-nav {
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
.navbar-header .navbar-brand {
|
|
img {
|
|
max-width: 170px;
|
|
}
|
|
}
|
|
|
|
|
|
/*navbar collaps less then 992px*/
|
|
@include media-query (991px) {
|
|
.navbar-collapse.collapse {
|
|
display: none;
|
|
}
|
|
|
|
.navbar-collapse.collapse.in {
|
|
display: block;
|
|
}
|
|
|
|
.navbar-header .collapse,
|
|
.navbar-toggle {
|
|
display: block;
|
|
}
|
|
|
|
.navbar-header {
|
|
float: none;
|
|
}
|
|
|
|
.navbar-right {
|
|
float: none;
|
|
}
|
|
|
|
.navbar-nav {
|
|
float: none;
|
|
}
|
|
|
|
.navbar-nav>li {
|
|
float: none;
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media(max-width: 440px) {
|
|
.wpo-site-header .navbar-header .navbar-brand {
|
|
img {
|
|
max-width: 250px;
|
|
}
|
|
}
|
|
}
|
|
|
|
@media(max-width: 370px) {
|
|
.wpo-site-header .navbar-header .navbar-brand {
|
|
img {
|
|
max-width: 140px;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@media(max-width: 1700px) {
|
|
.wpo-site-header {
|
|
padding: 0 30px;
|
|
}
|
|
}
|
|
|
|
@media(max-width: 1500px) {
|
|
.wpo-site-header #navbar>ul>li>a {
|
|
padding: 30px 15px;
|
|
}
|
|
|
|
.wpo-site-header {
|
|
padding: 0 10px;
|
|
}
|
|
|
|
}
|
|
|
|
@media(max-width: 1400px) {
|
|
.wpo-site-header #navbar>ul>li>a {
|
|
padding: 30px 10px;
|
|
font-size: 18px;
|
|
}
|
|
|
|
}
|
|
|
|
@media(max-width: 1200px) {
|
|
.wpo-site-header #navbar>ul>li>a {
|
|
padding: 30px 6px;
|
|
font-size: 16px;
|
|
}
|
|
}
|
|
|
|
@media(max-width: 991px) {
|
|
.wpo-site-header #navbar>ul>li>a {
|
|
font-size: 15px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 767px) {
|
|
.header-right .theme-btn {
|
|
padding: 20px 12px;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
@media(max-width:991px) {
|
|
.wpo-site-header #navbar>ul>li>a {
|
|
padding: 15px 30px;
|
|
}
|
|
}
|
|
|
|
@media(max-width:991px) {
|
|
|
|
.wpo-site-header,
|
|
.wpo-header-style-2 {
|
|
z-index: 99999;
|
|
}
|
|
}
|
|
|
|
.wpo-site-header .navigation.sticky-header {
|
|
padding: 0 130px;
|
|
background: $white;
|
|
}
|
|
|
|
@media(max-width:1700px) {
|
|
.wpo-site-header .navigation.sticky-header {
|
|
padding: 0 50px;
|
|
}
|
|
}
|
|
|
|
@media(max-width:1400px) {
|
|
.wpo-site-header .navigation.sticky-header {
|
|
padding: 0 20px;
|
|
}
|
|
}
|
|
|
|
@media(max-width:991px) {
|
|
.wpo-site-header .navigation.sticky-header {
|
|
padding: 20px;
|
|
}
|
|
}
|
|
|
|
@media(max-width:575px) {
|
|
.wpo-site-header .navigation.sticky-header {
|
|
padding: 20px 10px;
|
|
}
|
|
}
|
|
|
|
|
|
// wpo-header-style-2
|
|
|
|
.wpo-header-style-2 {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 30px;
|
|
width: 100%;
|
|
z-index: 99;
|
|
background: transparent;
|
|
|
|
.navigation {
|
|
background: $white;
|
|
border-radius: 5px;
|
|
|
|
&.sticky-on {
|
|
background: $white;
|
|
}
|
|
|
|
.navbar-header {
|
|
.navbar-brand {
|
|
margin-left: 5px;
|
|
|
|
@media (max-width:991px) {
|
|
margin-left: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
@media screen and (min-width: 992px) {
|
|
.wpo-site-header #navbar>ul .sub-menu {
|
|
background: $white;
|
|
|
|
a {
|
|
color: $dark-gray;
|
|
}
|
|
}
|
|
}
|
|
|
|
#navbar>ul>li>a {
|
|
color: $dark-gray;
|
|
}
|
|
|
|
.header-right .cart-toggle-btn,
|
|
.header-right .search-toggle-btn {
|
|
background-color: rgba(255, 255, 255, 0.1);
|
|
color: $white;
|
|
|
|
.fi {
|
|
color: $white;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
// wpo-site-header-s1
|
|
.wpo-site-header-s1 {
|
|
position: absolute;
|
|
width: 100%;
|
|
z-index: 99;
|
|
|
|
@media (min-width: 1200px) {
|
|
padding: 0 100px;
|
|
}
|
|
|
|
@media (max-width:1199px) {
|
|
padding: 0 30px;
|
|
}
|
|
|
|
@media (max-width:991px) {
|
|
padding: 0;
|
|
position: relative;
|
|
background: $dark-gray;
|
|
}
|
|
|
|
|
|
#navbar>ul>li>a {
|
|
@media screen and (min-width: 992px) {
|
|
color: $white;
|
|
|
|
&:hover,
|
|
&.active {
|
|
color: $theme-primary-color-s2;
|
|
}
|
|
}
|
|
}
|
|
|
|
.theme-btn {
|
|
@media (min-width: 1400px) {
|
|
padding: 12px 20px;
|
|
}
|
|
|
|
@media (max-width: 1600px) {
|
|
padding: 12px 15px;
|
|
font-size: 15px;
|
|
}
|
|
}
|
|
|
|
.header-right>div:last-child {
|
|
@media (max-width:1399px) {
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
.header-right .close-form .theme-btn {
|
|
|
|
@media (max-width: 1399px) {
|
|
font-size: 13px;
|
|
padding: 15px 10px;
|
|
}
|
|
|
|
@media (max-width:1199px) {
|
|
padding: 8px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
@media (max-width: 450px) {
|
|
padding: 5px 10px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 450px) {
|
|
.header-right {
|
|
right: -20px;
|
|
}
|
|
}
|
|
|
|
.navigation.sticky-header {
|
|
background: linear-gradient(286.02deg, #080A14 38.02%, #10121E 61.92%, #282A34 74.32%, #404354 90.71%, #343643 99.65%);
|
|
}
|
|
}
|
|
|
|
|
|
// wpo-site-header-s2
|
|
|
|
.wpo-site-header-s2 {
|
|
#navbar>ul>li {
|
|
a {
|
|
padding: 22px 22px;
|
|
|
|
@media (max-width: 1400px) {
|
|
padding: 30px 10px;
|
|
font-size: 16px;
|
|
}
|
|
|
|
@media (max-width: 991px) {
|
|
padding: 15px 30px;
|
|
}
|
|
}
|
|
|
|
&:first-child {
|
|
>a {
|
|
@media (min-width: 991px) {
|
|
padding-left: 0;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
#navbar {
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.container {
|
|
width: 100%;
|
|
justify-content: space-between;
|
|
display: block;
|
|
}
|
|
|
|
.row {
|
|
width: unset;
|
|
}
|
|
|
|
.header-right {
|
|
>div {
|
|
margin: 0 30px;
|
|
position: relative;
|
|
|
|
@media (max-width: 575px) {
|
|
margin-right: 10px;
|
|
}
|
|
|
|
&+div {
|
|
&::before {
|
|
position: absolute;
|
|
left: -20px;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
width: 1px;
|
|
height: 20px;
|
|
content: "";
|
|
background: $border-color-s2;
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.search-toggle-btn .fi {
|
|
margin-right: 0;
|
|
}
|
|
|
|
.search-toggle-btn .fi {
|
|
color: $dark-gray;
|
|
}
|
|
|
|
.language {
|
|
@media (max-width: 991px) {
|
|
display: none;
|
|
}
|
|
|
|
select {
|
|
border: 0;
|
|
text-transform: uppercase;
|
|
width: 100%;
|
|
height: 68px;
|
|
|
|
&:focus {
|
|
outline: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
.social {
|
|
@media (max-width: 575px) {
|
|
display: none;
|
|
}
|
|
|
|
ul {
|
|
list-style: none;
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
li {
|
|
a {
|
|
color: #888888;
|
|
|
|
&:hover {
|
|
color: $theme-primary-color;
|
|
}
|
|
}
|
|
|
|
&+li {
|
|
margin-left: 15px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
// wpo-site-header-s3
|
|
|
|
.wpo-site-header-s3 {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
width: 100%;
|
|
z-index: 99;
|
|
|
|
@media (min-width: 991px) {
|
|
padding: 0 130px;
|
|
}
|
|
|
|
@media (max-width: 1900px) {
|
|
padding: 0 70px;
|
|
}
|
|
|
|
@media (max-width: 1700px) {
|
|
padding: 0 0px;
|
|
}
|
|
|
|
.header-right .search-toggle-btn .fi {
|
|
color: $dark-gray;
|
|
}
|
|
|
|
.header-right .close-form .theme-btn {
|
|
|
|
@media (max-width: 1700px) {
|
|
font-size: 14px;
|
|
padding: 15px 10px;
|
|
}
|
|
|
|
@media (max-width: 1399px) {
|
|
font-size: 13px;
|
|
padding: 15px 10px;
|
|
}
|
|
|
|
@media (max-width:1199px) {
|
|
padding: 8px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
@media (max-width: 450px) {
|
|
padding: 5px 10px;
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
|
|
.fixed-navbar {
|
|
position: relative;
|
|
z-index: 5555;
|
|
}
|
|
|
|
.fixed-navbar.active .wpo-site-header,
|
|
.fixed-navbar.active .header-style-2 {
|
|
position: fixed;
|
|
z-index: 555;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
background: $white;
|
|
border: none;
|
|
box-shadow: 0px 1px 5px rgba(0, 0, 0, .1);
|
|
-moz-box-shadow: 0px 1px 5px rgba(0, 0, 0, .1);
|
|
-webkit-box-shadow: 0px 1px 5px rgba(0, 0, 0, .1);
|
|
}
|
|
|
|
.fixed-navbar.active .wpo-site-header {
|
|
background: linear-gradient(286.02deg, #080A14 38.02%, #10121E 61.92%, #282A34 74.32%, #404354 90.71%, #343643 99.65%);
|
|
}
|
|
|
|
.fixed-navbar.active .wpo-site-header-s2,
|
|
.fixed-navbar.active .wpo-site-header-s3 {
|
|
background: $white;
|
|
}
|
|
|
|
|
|
|
|
.mobileMenu {
|
|
position: fixed;
|
|
left: -300px;
|
|
top: 0;
|
|
z-index: 9999;
|
|
height: 100vh;
|
|
width: 300px;
|
|
background: linear-gradient(286.02deg, #080A14 38.02%, #10121E 61.92%, #282A34 74.32%, #404354 90.71%, #343643 99.65%);
|
|
transition: all 0.3s ease 0s;
|
|
box-shadow: 0px 10px 40px 0px rgba(50, 50, 50, 0.1);
|
|
overflow-x: auto;
|
|
overflow-y: scroll;
|
|
}
|
|
.responsivemenu .card-body{
|
|
background: linear-gradient(286.02deg, #080A14 38.02%, #10121E 61.92%, #282A34 74.32%, #404354 90.71%, #343643 99.65%);
|
|
}
|
|
.mobileMenu h2{
|
|
padding-left: 20px;
|
|
}
|
|
.mobileMenu.show{
|
|
left: 0;
|
|
}
|
|
.showmenu {
|
|
position: relative;
|
|
top: 0;
|
|
z-index: 999;
|
|
cursor: pointer;
|
|
}
|
|
.responsivemenu {
|
|
list-style: none;
|
|
padding-left: 0;
|
|
padding-top: 10px;
|
|
}
|
|
.responsivemenu li a,
|
|
.responsivemenu li p,
|
|
.responsivemenu ul{
|
|
display: block;
|
|
padding: 13px 35px;
|
|
font-size: 16px;
|
|
letter-spacing: 0;
|
|
text-transform: capitalize;
|
|
font-weight: 500;
|
|
color: #fff;
|
|
cursor: pointer;
|
|
}
|
|
.responsivemenu li p{
|
|
position: relative;
|
|
margin-bottom: 0;
|
|
}
|
|
.responsivemenu ul.subMenu{
|
|
padding-top: 0;
|
|
padding-left: 15px;
|
|
padding-right: 0;
|
|
}
|
|
.responsivemenu ul.subMenu ul{
|
|
position: relative;
|
|
margin-bottom: 0;
|
|
padding-left: 0;
|
|
}
|
|
.responsivemenu ul{
|
|
list-style: none;
|
|
}
|
|
.responsivemenu ul p,
|
|
.responsivemenu ul a{
|
|
color: #fff;
|
|
position: relative;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.responsivemenu ul p i{
|
|
position: absolute;
|
|
right: 0;
|
|
top: 5px;
|
|
}
|
|
|
|
.responsivemenu .card{
|
|
border:none
|
|
}
|
|
.responsivemenu .card-body{
|
|
padding-top: 0;
|
|
}
|
|
|
|
|
|
.responsivemenu li a{
|
|
position: relative;
|
|
}
|
|
.responsivemenu li i{
|
|
position: absolute;
|
|
right: 20px;
|
|
top: 17px;
|
|
}
|
|
.showmenu i {
|
|
font-size: 30px;
|
|
color: #fff;
|
|
}
|
|
|
|
.mobileMenu{
|
|
display: none;
|
|
}
|
|
.showmenu{
|
|
display: none;
|
|
}
|
|
@media (max-width:992px){
|
|
.showmenu {
|
|
display: block;
|
|
width: 40px;
|
|
height: 36px;
|
|
text-align: center;
|
|
line-height: 40px;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.showmenu button:focus{
|
|
outline: none;
|
|
box-shadow: none;
|
|
}
|
|
.showmenu button span{
|
|
background-color: #fff;
|
|
width: 20px;
|
|
display: block;
|
|
height: 2px;
|
|
margin: 0 auto;
|
|
margin-bottom: 5px;
|
|
}
|
|
.mobileMenu{
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.middle-header-3 .showmenu {
|
|
top: 36px;
|
|
}
|
|
.middle-header2 .showmenu {
|
|
top: 26px;
|
|
}
|
|
|
|
.middle-header-3 .showmenu i{
|
|
color: #fff;
|
|
}
|
|
|
|
|
|
@media(max-width:450px){
|
|
.mobileMenu {
|
|
left: -260px;
|
|
width: 260px;
|
|
}
|
|
.responsivemenu li a, .responsivemenu li p {
|
|
font-size: 14px;
|
|
padding: 13px 25px;
|
|
}
|
|
}
|
|
|
|
|
|
.responsivemenu a:not([href]):not([class]),
|
|
.responsivemenu a:not([href]):not([class]):hover{
|
|
color: #ddd;
|
|
} |