.try-before-purchased-wrap{
    position: fixed;
    left:20px;
    bottom: 25px;
    display: inline-flex;
    z-index: 999;
    transform: translateX(calc(-100% - 22px));
    transition: .3s ease;
    opacity: 0.9;
}
.try-before-purchased-wrap:hover{
    transition: .3s ease;
    opacity: 1;
    color: #1f1f1f!important;
}

.try-before-purchased-wrap.promo-set-view{
    transform: translateX(0);
    transition: .3s ease;
}

.try-before-purchased-wrap a{
    font-size: 12px;
    letter-spacing: .1em;
    box-shadow: 1px 1px 5px -3px rgb(0 0 0 / 50%);
    background: #fff;
    color: #222;
    padding: 10px 20px 10px 20px;
    transition: .3s ease;
}
.try-before-purchased-wrap:hover a{
    transition: .3s ease;
    color: #1f1f1f!important;
}
.try-before-purchased-wrap a:after{
    font: normal normal normal 14px/1 FontAwesome;
    content: "\f105";
    margin-left: 7px;
    width: 25px;
    height: 25px;
    border: 1px solid #9f9f9f;
    color: #9f9f9f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}
/* Promo set*/

.promo-set-price-wrap{
    position: fixed;
    right:20px;
    bottom: 20px;
    display: inline-flex;
    z-index: 999;
    transform: translateX(calc(100% + 22px));
    transition: .4s ease;
    opacity: 0.9;
}
.promo-set-price-wrap:hover{
    transition: .4s ease;
    opacity: 1;
}
.promo-set-price-wrap.promo-set-view{
    transform: translateX(0);
    transition: .4s ease;
}
.promo-set-price-wrap .icon-wrap{
    height: 16px;
    width: 16px;
    display: inline-flex;
    padding: 15px;
    background: #a9d05b;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    font-size: 13px;
    margin-right: -9px;
    margin-top: 12px;
    z-index: 2;
}
.promo-set-price-wrap .icon-wrap i{
    color:#fff!important;
}
.promo-set-price-wrap .price-link{
    display: flex;
    align-items: center;
}

.promo-set-price-wrap .price-item-wrapper{
    height: 55px;
    width: 55px;
    display: inline-flex;
    background: #90B24C;
    color: #fff;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    font-size: 20px;
    position: relative;
}

.promo-set-price-wrap .price-item-wrapper:before{
    content: '';
    position: absolute;
    left: -5px;
    top: -5px;
    width: -webkit-calc(100% + 10px);
    width: calc(100% + 10px);
    height: -webkit-calc(100% + 10px);
    height: calc(100% + 10px);
    background: #90B24C;
    opacity: .3;
    z-index: -1;
    display: block;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    -webkit-animation: pulse-border2 2s ease infinite;
    animation: pulse-border2 2s ease infinite;
}
.promo-set-price-wrap .price-item-wrapper .currency-price-promo{
    position: relative;
    font-size: 13px;
    top: -7px;
    left: -1px;
}
.promo-set-price-wrap .price-item-wrapper .price-item{
    position: relative;
    left: -2px;
    font-size: 18px;
}

@-webkit-keyframes pulse-border2 {
    0%,
    100% {
        -webkit-transform: scale(1);
        transform: scale(1); }
    50% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05); } }





@media (max-width: 1100px) {
    
  .try-before-purchased-wrap{
        display: none !important;
    }
    
}