.shop-btn{
    position: absolute;
    top: 20px;
    right: 20px;
    border: none;
    outline: none;
    line-height: 16px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 5px 12px 5px 30px;
    border-radius: 4px;
    cursor: pointer;
}
.spreading-red{
    display: inline-block;
    border-radius: 50%;
    outline: 0px solid red;
    width: 4px;
    height: 4px;
    position: absolute;
    left: 14px;
    background-color: red;
    animation: spreadRed 1.2s infinite;
}
.collective-dress-container.active .black-bg{
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999999;
}
 .collective-dress-container.active .dress-conatiner{
    right: 0;
}
.dress-conatiner>p{
    color: #454545;
    font-size: 20px;
    font-weight: 700;
    position: absolute;
    left: 20px;
    top: 16px;
}
.dress-conatiner{
    background-color: #fff;
    width: 25%;
    height: calc(100vh - 50px);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: flex-start;
    gap: 16px;
    padding: 110px 10px 30px;
    overflow-y: auto;
    right: -40%;
    top: 0;
    bottom: 0;
    z-index: 9999999;
    position: fixed;
    transition: all 0.5s ease-in-out;
}
.dress-conatiner::-webkit-scrollbar{
    display: none;
}
.cross-mark{
    width: 30px;
    height: 25px;
    color: #000;
    position: absolute;
    right: 16px;
    z-index: 20000000;
    font-weight: 400;
    top: 6px;
    cursor: pointer;
}
.dress-content-wrap p {
  padding: 10px;
}
.dress-content-wrap {
  position: fixed;
  top: 0;
  width: 340px;
  background: #fff;
}
.cross-mark::after{
    position: absolute;
    left: 15px;
    content: ' ';
    height: 24px;
    width: 1px;
    background-color: #000;
    transform: rotate(-45deg);
}

.cross-mark::before{
    position: absolute;
    left: 15px;
    content: ' ';
    height: 24px;
    width: 1px;
    background-color: #000;
    transform: rotate(45deg);
}

.each-dress{
    border: 1px solid #ececec;
    width: 45%;
    
    overflow: hidden;
    padding: 10px 0px 0 0;
}
.mid-part-container{
    border: 1px solid #ececec;
    border-left: none;
    border-right: none;
    padding: 8px 5px 16px 5px;
}

@keyframes spreadRed {
    0%{
        outline: 0px solid red;
    }
    30%{
        outline: 3px solid red;  
    }
    100%{
        outline: 8px solid #fff;
    }
}
.mid-part-container>p{
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 8px;
    height: auto;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.price-container span{
    margin-right: 4px;
}
.price-container span:nth-of-type(1){
    font-size: 12px;
    font-weight: 600;
    color: #1a1a1a;

}
.price-container span:nth-of-type(2){
    color: #ccc;
    font-weight: 500;
    font-size: 11px;
    text-decoration:line-through;
}
.price-container span:nth-of-type(3){
    color: #e21b22;
    font-size: 11px;
    font-weight: 500;
}
.each-dress>img{
    width: 100%;
    height: 156px;
    object-fit: contain;
}
.amazon-container{
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
    padding:16px 5px;
}
.amazon-container>img{
    width: 50px;
}
.amazon-container>p{
    color: #e21b22;
    font-weight: 600;
    font-size: 12px;
}
.photos-main-count {
	right: unset !important;
    position: absolute !important;
    top: 20px !important;
    left : 20px !important;
    padding: 5px 10px !important;
    font-size: 16px !important;
    background: rgba(0, 0, 0, 0.6) !important;
    color: #ffffff !important;
    border-radius: 3px !important;
    min-width: auto !important;
    text-align: center !important;
    height: auto !important;
    width: auto !important;
    line-height: inherit!important;
}

.shop-look-tabs {text-align: left;margin: 20px 10px;}
.shop-look-tabs ul {list-style-type: none;overflow-x: auto;white-space: nowrap;}
.shop-look-tabs ul {-ms-overflow-style: none;  /* Internet Explorer 10+ */scrollbar-width: none;  /* Firefox */}
.shop-look-tabs ul::-webkit-scrollbar { display: none;  /* Safari and Chrome */}
.shop-look-tabs ul li {display: inline-block;white-space: normal;vertical-align: top;margin: 0 6px 8px 0;}
.shop-look-tabs ul li a {display: block;padding: 2px 12px;border-radius: 20px;background-color: #f6f6f6;border: 1px solid #ececec;font-size: 12px;color: #595959;}
.shop-look-tabs ul li a.active {display: block;color: #1a1a1a;border: 1px solid #1a1a1a;}

.shop-nextarrow {width: 24px;height: 24px;background: #333;border-radius: 50%;position: absolute;right: 5px;top: 35px;cursor: pointer;}	            
.shop-prevarrow {width: 24px;height: 24px;background: #333;border-radius: 50%;position: absolute;right: 40px;top: 35px;cursor: pointer;}
.nextarrow-icon {border: solid #fff;border-width: 0 1px 1px 0;display: inline-block;padding: 2px;transform: rotate(-45deg);-webkit-transform: rotate(-45deg);position: absolute;left: 9px;top: 9px;}
.prevarrow-icon {border: solid #fff;border-width: 0 1px 1px 0;display: inline-block;padding: 2px;transform: rotate(135deg);-webkit-transform: rotate(135deg);position: absolute;left: 10px;top: 9px;}	
.disabled {background: #E9E9E9;}
.disabled .nextarrow-icon {border: solid #bdbdbd;border-width: 0 1px 1px 0;}
.disabled .prevarrow-icon {border: solid #bdbdbd;border-width: 0 1px 1px 0;}	