.credit_info_popup {
        position: fixed;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        z-index: 2000;
        display: none;
    }
    .cip__overlay {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        z-index: 2;
        background: rgba(0,0,0,.3);
    }
    
    .cip__content {
        position: absolute;
        width: 400px;
        left: 50%;
        margin-left: -200px;
        top: 50%;
        margin-top: -200px;
        z-index: 3;
        background: #ffffff;
        box-sizing: border-box;
        padding: 31px 35px 35px 35px;
        color: #293340 !important;
    }
    
    .cip__button {
        height: 40px;
        line-height: 40px;
        font-size: 16px;
        background: #888888;
        color: #ffffff;
        text-align: center;
        border-radius: 3px;
        cursor: pointer;
    }
    
    .cip__button:hover {
        background: #666666;
    }
    
    .cip__title {
        font-size: 25px;
        font-weight: bold;
        line-height: 30px;
        margin-bottom: 15px;
    }
    
    .cip__text {
        font-size: 15px;
        line-height: 22px;
        margin-bottom: 20px;
    }
    .cip__close {
        display: block;
        width: 20px;
        height: 20px;
        background: url('/images/shop/close-shop-popup.png') center center no-repeat;
        opacity: .7;
        position: absolute;
        right: 17px;
        top: 17px;
        cursor: pointer;
    }
    .cip__close:hover {
        opacity: 1;
    }
    .cip__text_border {
        box-sizing: border-box;
        padding: 19px 33px 17px 33px;;
        border:  2px solid #EBEBEB;
        font-size: 17px;
        line-height: 22px;
        text-align: center;
        margin-bottom: 25px;
    }