.next-button a button {
    position: fixed;
    top: 50%;
    z-index: 99;
}
.next-button a .previous-product-item {
    left: 0;
}
.next-button a .next-product-item {
    right: 0;
}
.next-button .next-product-item,
.next-button .previous-product-item{
    color: #0a0a0a;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    font-size: 1rem;
    margin: 0 10px;
    display: block;
    float: left;
    cursor: pointer;
    outline: 0;
    text-transform: uppercase;
    font-family: inherit;
    background-color: #0a0a0a;
    font-size: 1.14286rem;
    color: #fefefe;
}
.next-button .next-product-item{
    float: right;
}

/*Search Form*/
.module-header .search{
    position: absolute;
    top: 65px;
    right: 10px;
    width: 200px;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #000;
}
.module-header .search form{
    display: flex
}
.module-header .search input{
    font-size: 14px;
    border: none;
    margin: 0;
    padding: 0;
    width: calc(100% - 28px);
    height: 28px;
    line-height: 28px;
    text-indent: 10px;
    width: 200px;
}
.module-header .search input:focus{
    border: none;
}
.module-header .search button{
    width: 28px;
    height: 28px;
    color: #000;
    font-size: 20px;
}

.popup_choice_url {
    padding: 10px;
}

.popup_choice_url a {
    padding: 10px;
    background-color: black;
    color: white;
}

@media (max-width: 768px){
    .module-header .search{
        display: none;
    }
}

.module-top-banner-box{
    margin-bottom: 20px;
}

/*Like button list page*/
.module-card-product .like-button{
    opacity: 0.4;
    font-size: 2.2rem;
    padding: 0;
}
.module-card-product .like-button i{
    color: #fff;
}
.module-card-product .like-button.active{
    transform: none;
    opacity: 1;
}
.module-card-product .like-button.active i::before{
    content: "\e905";
}

/*Lookbook Submenu*/
.page-index .module-banner-box .item.has-submenu {
    position: relative;
}
.page-index .module-banner-box .item.has-submenu:hover .lookbook-menu {
    display: block;
}
.page-index .module-banner-box .item.has-submenu .lookbook-menu{
    position: absolute;
    bottom: 20px;
    right: calc(50% - 90px);
    width: 180px;
    height: 180px;
    background-color: #fff;
    padding: 10px;
    display: none;
}
.page-index .module-banner-box .item.has-submenu .lookbook-menu .lookbook-list{
    height: 160px;
    overflow-y: auto;
}
.page-index .module-banner-box .item.has-submenu a {
    overflow-wrap: break-word;
    min-height: auto;
    line-height: 18px;
    display: table-footer-group;
    margin-bottom: 5px;
    position: relative;
}
.page-index .module-banner-box .item.has-submenu a:before {
    position: absolute;
    top: 0;
    left: 0;
}

@media (min-width: 769px){
}