/**
 * 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_position.topRight {
    top: 10px;
    right: 10px;
}

#trustifyWrapper .popup_position.topLeft {
    top: 10px;
    left: 10px;
}

#trustifyWrapper .popup-item {
    padding: 15px;
    width: 100%; 
    float: left;
    display: inline-flex;
    align-items: center;
}
#trustifyWrapper.style-large .popup-item {
    padding: 0;
    box-shadow: 0 0 5px 0 rgb(0 0 0 / 6%);
    flex-direction: column;
}

#trustifyWrapper figure{
    margin: 0; 
    width: 75px; 
    height: 75px;
    overflow: hidden;
    float: left;
    margin-right: 5px;
}
#trustifyWrapper.style-large figure {
    width: 100%;
    height: 200px;
    min-width: 100%;
    display: flex;
    align-items: center;
}
#trustifyWrapper figure img{
    height: 100%;
    object-fit: contain;
}

#trustifyWrapper.style-large figure img {
    max-width: 100%;
    object-fit: cover;
}
#trustifyWrapper .imageOnRight figure{
    float: right;
}

#trustifyWrapper .textOnly  figure{
   display: none;
}
#trustifyWrapper .popup_position .image-circle figure {
    border-radius: 50%;
}
#trustifyWrapper .popup_position .image-circle figure {
    position: relative;
    height: 75px;
    overflow: hidden;
    width: auto;
    min-width: 75px;
    margin: 0 5px 0 0;
}
#trustifyWrapper figure img{
    width: 100%;
}
#trustifyWrapper .popup_position .image-circle figure img {
    position: absolute;
    bottom: 0;
    left: 0;
}
#trustifyWrapper .trustify-content-wrap{
    width: calc(100% - 80px);    
    float: right; 
    font-size: 14px;
    color: #1e1e1e;
    line-height: 1.4;
}

#trustifyWrapper.style-large .trustify-content-wrap{
    width: 100%;
    padding: 10px;
}

#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;
}

.popup_close {
    z-index: 1;
    cursor: pointer;
    width: 15px;
    height: 15px;
    position: absolute;
    right: 5px;
    top: 5px;
    font-size: 0;
    background-color: #9a9a9a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.popup_close:before, 
.popup_close:after {
    content: '';
    width: 8px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    transform: rotate(45deg);
}
.popup_close:after{
    transform: rotate(-45deg);
    
}
.trustify-settings-wrap:not(:last-child) {
    padding-bottom: 0;
}
@media screen and ( max-width: 767px){

    #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;
    } 
    #trustifyWrapper .popup_position {
        max-width: calc(100% - 20px);
        margin-left: 10px;  
    }
    #trustifyWrapper.style-large .popup_position {
        max-width: 200px;
        margin-left: auto;
    }
    #trustifyWrapper figure,
    #trustifyWrapper .popup_position .image-circle figure {
        min-width: 60px;
        width: 60px;
        height: 60px;
    }
    #trustifyWrapper .trustify-content-wrap {
        width: calc(100% - 65px);
    }
}


 