﻿#spopup.hiddenscroll {
    display: none !important;
    visibility: hidden !important;
}

#spopup {
    width: 325px;
    height: 150px;
    position: fixed;
    border-radius: 5px;
    bottom: 50px;
    left: 30px;
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 999;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    -webkit-box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, .3);
    box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, .3);
    background: linear-gradient(135deg, #0bab47, #42ce7a);
}

#spopup img {
    max-width: 90px;
    height: auto;
}

#spopup .popup-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

#spopup p {
    color: #FFF;
    font-size: 16px;
    line-height: 24px;
    max-width: 90%;
    width: 100%;
    display: inline;
    float: left;
    margin: 0 0 20px 0;
}

#spopup p b {
    font-weight: 600;
}

#spopup a.popup-button {
    color: #FFF;
    font-size: 14px;
    line-height: 20px;
    border-radius: 4px;
    border: solid 1px #ffffff;
    padding: 9px 20px;
    display: inline;
    float: left;
}

#spopup a.popup-button:hover {
    background: #FFF;
    color: #091f2c;
}

#spopup .popup-right,
#spopup .popup-left {
    display: inline;
    float: left;
}

#spopup .close-icon {
    position: absolute;
    display: block;
    top: 0px;
    right: 4px;
    width: 21px;
    height: 20px;
    cursor: pointer;
}

#spopup .close-icon:after {
    background: url(../image/sprite-wip2020.png) no-repeat -73px -122px transparent;
    height: 20px;
    width: 21px;
    margin-left: 0;
    position: absolute;
    top: 10px;
    zoom: 0.8;
    content: '';
}

@media screen and (max-width: 767px) {
    #spopup {
        bottom: 70px;
        left: 10px;
        width: 250px;
        padding: 15px;
        height: auto;
    }

    #spopup p {
        font-size: 14px;
        line-height: 20px;
        max-width: 95%;
    }

    #spopup img {
        max-width: 60px;
        height: auto;
    }

    #spopup a.popup-button {
        font-size: 12px;
        line-height: 18px;
    }
}

;

.rtl #spopup p {
    float: right;
    text-align: right;
    margin: 12px 0 12px 0;
}

.rtl #spopup a.popup-button {
    float: right;
}

.rtl #spopup .close-icon:after {
    right: 4px;
}