@import url(../fonts/DIN.css);
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

 :root {
    --primaryColor: #6c76e4;
    --secondary: #484f5d;
}

.header-container {
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: center;
}

.header-container>div {
    width: 30%;
}

.header-container div a img {
    width: 40%;
}

.nav-div {
    width: 40% !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

a {
    color: #2B2D42;
    -webkit-transition: 0.2s color;
    transition: 0.2s color;
}

.logo {
    display: flex;
    justify-content: start;
    position: relative;
    left: 70px;
}

a:hover,
a:focus {
    color: var(--primaryColor);
    text-decoration: none;
    outline: none;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none
}


/*----------------------------*\
      Buttons
  \*----------------------------*/


/*----------------------------*\
      Inputs
  \*----------------------------*/


/*-- Text input --*/

.input {
    height: 40px;
    padding: 0px 15px;
    border: 1px solid #E4E7ED;
    background-color: #FFF;
    width: 100%;
}


/*-- Select input --*/

.input-select {
    padding: 0px 15px;
    background: #FFF;
    border: 1px solid #E4E7ED;
    height: 40px;
}


/*-- checkbox & radio input --*/


/*----------------------------*\
      Section
  \*----------------------------*/


/*----------------------------*\
      Breadcrumb
  \*----------------------------*/


/*=========================================================
      02 -> HEADER
  ===========================================================*/


/*----------------------------*\
      Top header
  \*----------------------------*/

header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

#top-header {
    background-color: #fff;
    box-shadow: 1px 1px 11px var(--secondary);
}

.header-links li {
    display: inline-block;
    margin-right: 15px;
    font-size: 12px;
}

.header-links li:last-child {
    margin-right: 0px;
}

.header-links li a {
    color: #FFF;
}

.header-links li a:hover {
    color: #D10024;
}

.header-links li i {
    color: #D10024;
    margin-right: 5px;
}


/*----------------------------*\
      Logo
  \*----------------------------*/

#header {
    display: none;
    background-color: var(--primaryColor);
    /* height: 80px; */
}
.header-logo {
    float: left;
}

.header-icons {
    display: flex;
    align-items: center;
    justify-content: end;
    color: var(--secondary);
    font-size: 16px;
    margin-left: 2px;
    position: relative;
}

.header-icons>.icon {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background: var(--primaryColor);
    margin: 0 5px;
    color: #ffffffe8;
   display: flex;
   justify-content: center;
   align-items: center;
   position: relative;
   right: 0px;
  }
  .header-icons > .icon a{
      color: #fff;
  }

.header-icons>.icon a {
    color: #fff;
}

.header-icons div i {
    margin: 0px 8px 0 8px;
}

.header-logo .logo img {
    display: block;
}


/*----------------------------*\
      Search
  \*----------------------------*/

.header-search {
    padding: 15px 0px;

}
.header-search form {
    position: relative;
}
.header-search form .input-select {
    margin-right: -4px;
    border-radius: 0px 40px 40px 0px;
}

.header-search form .input {
    width: calc(100% - 260px);
    margin-right: -4px;
}

.header-search form .search-btn {
    height: 40px;
    width: 100px;
    background: #fff;
    color: var(--primaryColor);
    font-weight: 700;
    border: none;
    border-radius: 40px 0px 0px 40px;
    margin: 2px -4px 0 0;
}


/*----------------------------*\
      Cart
  \*----------------------------*/

.header-ctn {
    float: right;
}

.header-ctn>div {
    display: inline-block;
}

.header-ctn>div+div {
    margin-left: 15px;
}

.header-ctn>div>a {
    display: block;
    position: relative;
    width: 90px;
    text-align: center;
    color: #FFF;
}

.header-ctn>div>a>i {
    display: block;
    font-size: 18px;
}

.header-ctn>div>a>span {
    font-size: 12px;
}

.header-ctn>div>a>.qty {
    position: absolute;
    right: 15px;
    top: -10px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
    font-size: 10px;
    color: var(--primaryColor);
    background-color: #fff;
}

.menu-toggle {
    display: none;
}


/*=========================================================
      03 -> Navigation
  ===========================================================*/

#navigation {
    background: #FFF;
    border-bottom: 2px solid #E4E7ED;
    border-top: 3px solid #fff;
}


/*----------------------------*\
      Main nav
  \*----------------------------*/

.main-nav {
    display: flex;
}

.main-nav>li {
    margin-left: 30px
}

.main-nav>li>a {
    padding: 20px 0px;
    color: var(--secondary);
    text-decoration: none;
}

.main-nav>li>a:hover,
.main-nav>li>a:focus,
.main-nav>li.active>a {
    color: var(--primaryColor);
    background-color: transparent;
}

.main-nav>li>a:after {
    content: "";
    display: block;
    width: 0%;
    height: 2px;
    background-color: var(--primaryColor);
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.main-nav>li>a:hover:after,
.main-nav>li>a:focus:after,
.main-nav>li.active>a:after {
    width: 100%;
}

.header-ctn li.nav-toggle {
    display: none;
}

.user {
    position: relative;
}

.list-user {
    background-color: #fff;
    position: absolute;
    width: 700%;
    z-index: 2;
    top: 35px;
    right: -94px;
    padding: 15px;
    border-radius: 5px;
    font-size: 14px;
    display: none;
}

.visible {
    display: block;
}

.list-user>a {
    display: block;
    margin: 14px 0;
    color: var(--secondary)!important;
    text-align: right;
}

.user:hover .list-user {
    display: block;
}


/*----------------------------*\
      responsive nav
  \*----------------------------*/

@media only screen and (max-width: 991px) {
    .menu-toggle {
        display: block;
        background: none !important;
        width: 50%;
        text-align: center;
        margin: 25px 0;

    }
    .search-icon {
        background: var(--secondary) !important;
    }
    .header-container {
        display: flex;
        justify-content: space-between;
        justify-items: center;

    }
    .main-nav {
        display: block !important;
    }
    #responsive-nav {
        position: fixed;
        left: 0;
        top: 0;
        background: #15161D;
        height: 100vh;
        max-width: 250px;
        width: 0%;
        overflow: hidden;
        z-index: 22;
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        transform: translateX(-100%);
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
    }
    #responsive-nav.active {
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
        width: 100%;
    }
    .main-nav {
        margin: 0px;
        float: none;
    }
    .main-nav>li {
        display: block;
        text-align: right;
        margin-left: 0px !important
    }
    .main-nav>li>a {
        padding: 15px;
        color: #FFF;
    }
    .dropdown-menu.show {
        display: block;
        right: 8rem;
        width: 160px;
    }
}

.show-menu {
    display: none;
}

.login {
    background: var(--primaryColor);
    color: #fff;
    width: 30%;
    padding: 5px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    justify-items: center;
    position: relative;
    right: 20px;
    margin: 10px;
}

.register {
    background: #ffc107;
    width: 30%;
    padding: 5px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    justify-items: center;
    position: relative;
    right: 30px;
    margin: 10px;

}
.register a{
    color: #fff !important;
    font-size: 15px;
}

.login a {
    color: #fff !important;
    font-size: 15px;
}

.name-auth {
    color: #ffc107;
    font-size: 13px;
    font-weight: 600;
text-align: center;
margin: 6% 0 0 0;

}
.profileuser{
    position: relative;
    right: 40px;

}
.logo {
    left: 0 !important;
}

/*=========================================================
      13 -> RESPONSIVE
  ===========================================================*/

@media only screen and (max-width: 1201px) {}

@media only screen and (max-width: 991px) {
    #top-header .header-links.pull-left {
        float: none !important;

    }
    #top-header .header-links.pull-right {
        float: none !important;
        margin-top: 5px;
    }
    .header-logo {
        float: none;
        text-align: center;
    }
    .header-logo .logo {
        display: inline-block;
    }
    .show-menu {
        display: block;
    }
    .show{
        display: none;
    }
    .header-container div a img {
        width: 100%;
    }
    .show{
        display: block;
            }
            .navbar-toggler:focus {
                text-decoration: none;
                outline: 0;
                box-shadow: 0 0 0 0rem;
            }
}

@media only screen and (max-width: 767px) {

    .section-title .section-nav {
        float: none;
        margin-top: 10px;
    }
    .section-tab-nav li {
        margin-top: 10px;
    }

    .show{
display: block;
    }
    .navbar-toggler:focus {
        text-decoration: none;
        outline: 0;
        box-shadow: 0 0 0 0rem;
    }
    .header-container div a img {
        width: 100%;
    }
}

@media only screen and (max-width: 480px) {
    [class*='col-xs'] {
        width: 100%;
    }

    .store-grid {
        float: none;
        margin-top: 10px;
    }
    .store-pagination {
        float: none;
        margin-top: 10px;
    }
    .dropdown-menu.show {
        display: block;
        right: 6rem;
        width: 160px;
    }
}
@media only screen and (max-width: 390px) {
  .md-stepper-horizontal{
      display: none;
  }

}


/* slider */

.close-menu-style {
    color: #fff;
    font-size: 35px;
    text-align: center;
}

.menu-style {
    font-size: 35px;
}
.alert a{
text-decoration: underline;
color: #6c76e4;
}
.profile-img-container{
    display: flex;
    justify-content: center;
    align-items: center;
    justify-items: center;
}
.profile-img{
    width: 100px !important;
    height: 100px;
    border-radius: 50%;
}
