﻿.blocker {
    z-index: 1000;
}

.add-wantlist-modal {
    -webkit-border-radius: 0px !important;
    -moz-border-radius: 0px !important;
    -o-border-radius: 0px !important;
    -ms-border-radius: 0px !important;
    border-radius: 0px !important;
}

.modal {
    z-index: 1001;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -o-border-radius: 0px;
    -ms-border-radius: 0px;
    border-radius: 0px;
}

.wantlist-add-btn1 {
    background: #F5F5F5;
    color: #535353;
    display: flex;
    align-items: center;
    white-space: nowrap;
    text-align: center;
    padding: 0 .8em;
    border-radius: 2px;
    box-shadow: 0px 2px 2px rgba(0,0,0,0.2);
    justify-content: center;
    width: 235px;
    height: 50px;
}

    .wantlist-add-btn1:hover {
        opacity: .6;
        transition: .2s;
        cursor: pointer;
    }

    .wantlist-add-btn1 img {
        height: 1.5em;
        margin-right: 10px;
    }

.wantlist-add-btn2 {
    display: inline-block;
    text-align: center;
    border-radius: 3px;
    border: 1px solid #232323;
    /* background: #fff; */
    width: 240px;
    padding: 10px 0;
    margin: 5px 0;
    cursor: pointer;
    letter-spacing: 1.2px;
}

    .wantlist-add-btn2:hover {
        color: #45699F;
        border: 1px solid #45699F;
    }

.wantlist-list-area {
    display: flex;
    font-size: 16px;
    padding: 20px;
    /* border: solid 0.1px lightgrey; */
    margin: 10px;
    cursor: pointer;
    width: 670px;
    overflow: hidden;
    transition: .2s;
    outline: 1px solid #fff;
}

    .wantlist-list-area:hover {
        background: #f3f3f3;
        outline: 1px solid #dadada;
    }

    .wantlist-list-area:active {
        background: #ededed70;
    }

    .wantlist-list-area:hover .wantlist-list-wantlist-name {
        /*text-decoration:underline;*/
    }

.wantlist-list-add-done {
    position: absolute;
    padding: 15px;
    /* border: solid 1px darkslategrey; */
    width: 220px;
    margin: 0 auto;
    background: white;
    top: -40px;
    left: 250px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;
    text-align: center;
    display: none;
    z-index: 2000;
    filter: drop-shadow(0 1px 1px rgba(0,0,0,0.4));
    animation: anim .5s;
}

@keyframes anim {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }

    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

.wantlist-list-add-done:before {
    content: "";
    position: absolute;
    bottom: -24px;
    left: 50%;
    margin-left: -15px;
    border: 12px solid transparent;
    border-top: 12px solid #FFF;
    z-index: 2;
}

/*.wantlist-list-add-done:after {
        content: "";
        position: absolute;
        bottom: -25px;
        left: 50%;
        margin-left: -15px;
        border: 12px solid transparent;
        border-top: 12px solid #555;
        z-index: 1;
    }*/

.wantlist-list-wantlist-name {
    color: #005db9;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: calc(100% - 50px);
}

.popup-alert {
    position: relative;
    padding: 8px 20px;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
    margin: 0px 10px;
}

.popup-alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

#ListList {
    height: 400px;
    overflow-x: hidden;
    overflow-y: auto;
    margin-bottom: 20px;
}

/*商品詳細の欲しい物リスト追加ボタン↓*/
.add-Wantlist-item {
    position: relative;
    padding: 10px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    border: solid 1px #B2B2B2;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background: white;
    cursor: pointer;
    letter-spacing: 1.1px;
    transition: .2s;
    box-shadow: 0 0 8px rgba(0,0,0,.1);
}

    .add-Wantlist-item:hover {
        opacity: .6;
        text-decoration: none;
    }

    .add-Wantlist-item:active {
        opacity: .3;
        text-decoration: none;
    }

    .add-Wantlist-item[data-badge]:after {
        content: attr(data-badge);
        position: absolute;
        top: -5px;
        right: 5px;
        font-size: 1em;
        background: #D60024;
        color: white;
        width: 30px;
        height: 30px;
        text-align: center;
        line-height: 30px;
        border-radius: 50%;
        box-shadow: 0 0 1px #333;
    }

    .add-Wantlist-item i {
        font-size: 25px;
        color: #939393;
    }
p#WantlistAddBtnRegCnt {
    text-align: left;
    margin: 0 0 0 27%;
}
    .add-Wantlist-item img {
        width: 30px;
        display: block;
    }

    .add-Wantlist-item .add-text {
        text-align: center;
    }

    .add-Wantlist-item p {
        font-size: 12px;
        color: #232323;
        letter-spacing: 1.1px;
        padding: 0 0 0 10px;
        white-space: nowrap;
    }

        .add-Wantlist-item p:first-of-type {
            font-size: 16px;
            margin: 5px 0;
        }
.want-list-button {
    margin-right: 20px;
    background: #F5F5F5;
    color: #535353;
    display: flex;
    align-items: center;
    white-space: nowrap;
    text-align: center;
    padding: 0 .8em;
    border-radius: 2px;
    box-shadow: 0px 2px 2px rgba(0,0,0,0.2);
    justify-content: center;
    width: 235px;
    height: 50px;
}

    .want-list-button:hover {
        opacity: .6;
        transition: .2s;
        cursor: pointer;
    }

.add-wantlist-modal .modal-close-btn {
    padding: 4px 6px;
    box-sizing: border-box;
    width: 30px;
    font-size: 20px;
    text-align: center;
    cursor: pointer;
    margin-left: auto;
    position: absolute;
    right: 10px;
}

    .add-wantlist-modal .modal-close-btn:hover {
        background: #D60024;
        color: white;
        text-decoration: none;
    }

.add-collection-title　 {
    letter-spacing: 1px;
    font-size: 16px;
    color: #535353;
    margin-bottom: 10px;
    border-bottom: solid 0.1px lightgrey;
    padding: 10px;
    /* padding-left: 10px; */
    font-weight: bold;
    display: flex;
    align-items: center;
}

.add-collection-title i {
    margin: 0 10px 0 0;
}

.setumei {
    font-size: 14px;
    padding: 10px;
}

.collection-list-area {
    display: flex;
    font-size: 16px;
    padding: 20px;
    /* border: solid 0.1px lightgrey; */
    margin: 10px;
    cursor: pointer;
    width: 670px;
    overflow: hidden;
    transition: .2s;
    outline: 1px solid #fff;
}

.public-list {
    font-size: 10px;
    border-radius: 30px;
    background: #F3F3F3;
    color: #535353;
    padding: 4px 10px;
}

/* 入荷通知のトグルボタン */
.arrival-notice-conf {
    width: 140px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    font-size: .9em;
}
.tgl + .tgl-btn:after, .tgl + .tgl-btn:before {
    position: relative;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
}

.tgl-light + .tgl-btn:after {
    border-radius: 50%;
    background: #fff;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    top: -19.5px;
}

.tgl:checked + .tgl-btn:after {
    left: 50%;
}

.tgl, .tgl:after, .tgl:before, .tgl *, .tgl *:after, .tgl *:before, .tgl + .tgl-btn {
    box-sizing: border-box;
}

    .tgl + .tgl-btn {
        outline: 0;
        display: block;
        width: 4em;
        height: 2em;
        position: relative;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

label.control.control--checkbox.arrival-notice {
    display: flex;
    align-items: center;
}

.tgl, .tgl:after, .tgl:before, .tgl *, .tgl *:after, .tgl *:before, .tgl + .tgl-btn {
    box-sizing: border-box;
}

.tgl {
    display: none;
}

.tgl-light + .tgl-btn {
    background: #f0f0f0;
    border-radius: 2em;
    padding: 2px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    margin: 0 5px;
}

.tgl-light:checked + .tgl-btn {
    background: #de2637;
}
.arrival-notice {
    
}
