*{
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

body {
    font-family: Helvetica, Tahoma, Arial, "Hiragino Sans GB", "Hiragino Sans GB W3", "Microsoft YaHei", STXihei, STHeiti, Heiti, SimSun, sans-serif;
    font-size: 14px;
    background-color: white;
    margin: 0px;
    padding: 0px;
    -webkit-text-size-adjust: none;
}

body * {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    border: 0;
    display: block;
}

a {
    border: 0;
    text-decoration: none;
}

.clear {
    clear: both;
}

.checkbox-item{
    display: flex;
}

.checkbox-item input {
    opacity: 0;
    position: absolute;
    z-index: -1;
    width: auto !important;
}

.checkbox-item input:checked ~ .checkbox-element{
    background-image: url('./../images/tick.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-color: #C9AC7D;
}

.checkbox-item .checkbox-element{
    width: 20px;
    height: 20px;
    border: 1px solid #DDDDDD;
}

.checkbox-item .checkbox-text{
    margin-left: 6px;
    font-size: 14px;
    line-height: 24px;
}

input:focus{
    outline: none;
}

/*.container {
    width: 900px;
    margin: 0 auto;
    overflow: hidden;
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}
*/
.wrap {
    width: 100%;
    margin: 0;
    padding: 0;
    margin: 0 auto;
    overflow: hidden;
    max-width: 1440px;
    padding: 194px 0 0 0;
}

.overlay{
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    top: 0%;
    z-index: 9;
    display: none;
}

.overlay.active{
    display: block;
}

.toggle{
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    display: inline-block;
    vertical-align: middle;
    position: relative;
    margin: 0;
    width: 36px;
    height: 20px;
    cursor: pointer;
}

.toggle input{
    position: absolute;
    opacity: 0;
    z-index: -1;
    margin: 0;
    border: none;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.toggle .track {
    border-radius: 7px;
    background: #fff;
    border: 1px solid #dcdcdc;
    height: 6.5px;
    width: 32.5px;
    display: block;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.toggle .track::after {
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 50%;
    /* background-color: #D70F64; */
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    transition: all .15s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    border: double 1px transparent;
    background-image: linear-gradient(white, white), linear-gradient(266deg, rgba(252, 175, 23, 0.75), rgba(243, 113, 105, 0.75) 32%, rgba(229, 0, 118, 0.75));
    background-origin: border-box;
    background-clip: content-box, border-box;
}

.toggle :checked ~ .track:after {
    -webkit-transform: translate(16px, -50%);
    transform: translate(16px, -50%);
}

.floating-container{
    position: fixed;
    bottom: 30%;
    right: 15%;
    z-index: 14;
}

.filter-category-triggle{
    cursor: pointer;
}

.swiper-button-prev{
    outline: none;
}

.swiper-button-next{
    outline: none;
}


.mv{
    display: none;
}

.dv{
    display: block;
}

.d1250{
    max-width: 1250px;
    width: 100%;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari and Chrome */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@media screen and (max-width: 1330px){
    .d1250 {
        width: 90%;
    }
    
    .floating-container{
        bottom: 10%;
        right: 3%;
    }
}

@media screen and (max-width: 640px){
    .mv{
        display: block;
    }
    
    .dv{
        display: none !important;
    }
    
    .wrap{
        padding: 124px 0 0 0;
    }
    
    .floating-container{
        bottom: 10%;
        right: 5%;
    }
}