.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;
    }
}