/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
 
#trustifyWrapper .popup_template {
    background-color: #e0e0e0; 
    bottom: 20px;
    border-radius: 0;
}

#trustifyWrapper  .popup_position {
    position: fixed; 
    z-index: 99999;
    width: 250px;
}

#trustifyWrapper  .popup_position.bottomRight {
    bottom: 10px;
    right: 10px;
}

#trustifyWrapper .popup_position.bottomLeft {
    bottom: 10px;
    left: 10px;
}

#trustifyWrapper .popup-item {
    padding: 10px;
    width: 100%; 
    float: left;
    display: inline-flex;
    align-items: center;
}

#trustifyWrapper figure{
    margin: 0; 
    width: 75px; 
    height: 75px;
    overflow: hidden;
    float: left;
    margin-right: 15px;
}
#trustifyWrapper figure img{
    height: 100%;
    object-fit: contain;
}

#trustifyWrapper .imageOnRight figure{
    float: right;
}

#trustifyWrapper .textOnly  figure{
   display: none;
}


#trustifyWrapper figure img{
    width: 100%;
}

#trustifyWrapper .trustify-content-wrap{
    width: calc(100% - 85px);    
    float: right; 
    font-size: 14px;
    color: #1e1e1e;
    line-height: 1.4;
}

#trustifyWrapper .imageOnRight .trustify-content-wrap{
    float: left;
}

#trustifyWrapper .textOnly .trustify-content-wrap{
   width: 100%;
}

#trustifyWrapper .trustify-content-wrap .t-product{
    display: block; 
    font-size: 120%;
    font-weight: bold;
    line-height: 1.4;
}

#trustifyWrapper .trustify-content-wrap small{
    font-size: 70%;
    font-style: italic;
}
 
.clearfix::after {
    content: "";
    clear: both;
    display: table;
}


@media screen and ( max-width: 767px){
    #trustifyWrapper .popup-item{
        padding: 10px !important;
    }

    #trustifyWrapper .popup_position.bottomRight {
        bottom: 0 !important;
        right: 0 !important;
        width: 100% !important;
        left: 0 !important;
    }  

    #trustifyWrapper .popup_position .trustify-content-wrap {
        font-size: 13px !important;
        line-height: 1.5 !important;
    } 
}


 