
.chart-all {
    position: fixed;
    bottom: 10px;
    right: 30px;
    z-index: 999999999;
    cursor: pointer;
}

    .chart-all img {
        width: 65px;
    }

#common-msg {
    position: fixed;
    right: 30px;
    z-index: 9999;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    bottom: 39px;
    width: 300px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 12px 8px rgba(0,0,0,0.25);
    opacity: 0;
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
    -webkit-transform: scale(0);
    transform: scale(0);
    visibility: hidden;
}

    #common-msg.is_visable {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
        visibility: visible;
        -webkit-transition: all 300ms ease;
        transition: all 300ms ease;
        min-height: auto;
        bottom: 85px;
        z-index: 99999;
    }

    #common-msg h3 {
        background: #016fc5;
        color: #fff;
        margin: 0 auto;
        font-size: 19px;
        padding: 15px 20px;
        border-radius: 10px 10px 0 0;
    }

    #common-msg::after {
        position: absolute;
        content: "";
        right: 18px;
        bottom: -8px;
        border-top: 10px solid #fff;
        border-left: 14px solid transparent;
        border-right: 14px solid transparent;
    }

.chat-image {
    text-align: center;
    margin: 10px 0 10px 0;
    align-items: center;
    display: flex;
    justify-content: flex-start;
    padding: 0 15px;
}
.chat-box .fa.fa-envelope {
    color: #016fc5;
    margin-right: 8px;
    font-size: 20px;
}

.chat-content h5 {
    color: #3b3b3b;
    font-size: 15px;
    font-weight: normal;
    margin: 0 0 20px 0;
    line-height: 1.4;
}

.chat-content {
    padding: 0 15px;
    text-align: left;
}

.chat-image img {
    margin-right: 6px;
}


.chat-content .table {
    border-top: 1px solid #0498f2;
    border-left: 1px solid #0498f2;
}

    .chat-content .table tr td {
        border-bottom: 1px solid #0498f2;
        border-right: 1px solid #0498f2;
        word-break: break-all;
        text-align: center;
        padding: 3px;
        vertical-align: middle;
        width: 50%;
    }

.UpdateBtnProfile {
    background: linear-gradient(57deg,rgba(4,160,224,1) 0%, rgba(2,122,206,1) 80%);
    border-radius: 5px;
    font-weight: 700;
}

.proifleBtnNotnow {
    background: linear-gradient( 57deg,#ddd 0%, rgba(2,122,206,1) 80%);
    border-radius: 5px;
    font-weight: 700;
}

.chat-content .table .iboticMsg {
    word-break: keep-all;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 105px;
    float: right;
    position: relative;
    top: 3px;
    cursor: pointer;
}
.NewiboticMsg{
    font:12px;
    text-align:justify;
}
.chat-bot-box {
    position: fixed;
    right: 30px;
    z-index: 99999999;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    bottom: 39px;
    width: 300px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 12px 8px rgba(0,0,0,0.25);
    opacity: 0;
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
    -webkit-transform: scale(0);
    transform: scale(0);
    visibility: hidden;
}

    .chat-bot-box.is_visable {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
        visibility: visible;
        -webkit-transition: all 300ms ease;
        transition: all 300ms ease;
        min-height: 25%;
        bottom: 85px;
    }

    .chat-bot-box h3 {
        background: #016fc5;
        color: #fff;
        margin: 0 auto;
        font-size: 19px;
        padding: 15px 20px;
        border-radius: 7px 7px 0 0;
    }

.chat-box-content {
    padding: 15px;
}

.chat-bot-box::after {
    position: absolute;
    content: "";
    right: 18px;
    bottom: -8px;
    border-top: 10px solid #fff;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
}

.chat-box-content h2 {
    margin: 0 0 9px 0;
    font-size: 20px;
    background: #fff;
    box-shadow: 0px 0px 6px 2px rgb(0 0 0 / 13%);
    display: inline-block;
    padding: 8px;
    border-radius: 5px;
    width: 100%;
}

.chat-box-content p {
    margin: 0 0 9px 0;
    font-size: 14px;
    background: #fff;
    box-shadow: 0px 0px 6px 2px rgb(0 0 0 / 13%);
    display: inline-block;
    padding: 8px;
    border-radius: 5px;
    width: 100%;
}

.chat-box-content ul {
    padding: 0;
    list-style: none;
    margin: 0;
}

    .chat-box-content ul li a {
        color: #fff;
        display: inline-block;
        padding: 7px 18px;
        margin-bottom: 8px;
        border-radius: 5px;
        background: rgb(4,160,224);
        background: linear-gradient( 67deg, rgba(4,160,224,1) 0%, rgba(2,122,206,1) 80%);
        font-weight: 700;
        font-size: 16px;
        width: 100%;
        text-align: center;
    }

.chat-box-footer {
    margin: 0 15px;
    margin-bottom: 14px;
    position: relative;
    border: 1px solid #ccc;
    border-radius: 30px;
    padding: 2px 7px;
}

    .chat-box-footer .form-control {
        border: none;
        height: auto;
        color: #666;
    }

        .chat-box-footer .form-control:focus {
            outline: none;
        }

span.chat-back {
    position: relative;
    cursor: pointer;
}

    span.chat-back .fa {
        font-size: 23px !important;
        width: auto !important;
        float: none;
        margin-right: 11px !important;
    }

span.chat-mini {
    cursor: pointer;
    float: right;
}

.btn-chatbox {
    position: absolute;
    right: 0;
    top: 6px;
    background: none;
    border: none;
}

.req-sep {
    background: #efefef;
    color: #3b3b3b;
    font-size: 14px;
    padding: 6px 18px;
    margin: 0 0 10px 0;
}

.chat-box-content h5 {
    color: #666;
    margin: 0 0 9px 0;
    font-size: 17px;
    line-height: 1.4;
    max-height: 150px;
    overflow-y: auto;
}

    .chat-box-content h5 strong {
        color: #000;
    }

.chat-box-content .form-group label {
    margin: 0 5px 0 0;
    font-size: 16px;
}

.chat-box-content .form-group select {
    border: none;
    color: #000;
    font-size: 15px;
    font-weight: 700;
    border-bottom: 2px solid #716e6e;
    width: 160px;
}

    .chat-box-content .form-group select:focus {
        outline: none;
    }

.chat-box-content .form-group input[type="text"] {
    width: 100%;
    border-bottom: 2px solid #716e6e;
    border-top: none;
    border-left: none;
    border-right: none;
    color: #000;
}

    .chat-box-content .form-group input[type="text"]:-moz-placeholder {
        color: #000;
        font-size: 15px;
        font-weight: 700;
    }

    .chat-box-content .form-group input[type="text"]::-webkit-input-placeholder {
        color: #000;
        font-size: 15px;
        font-weight: 700;
    }

    .chat-box-content .form-group input[type="text"]:focus {
        outline: none;
    }

.chat-box-content span {
    color: #666;
    margin: 27px 0 5px 0;
    display: block;
}

.chat-content-emoji h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 7px 0 9px 0;
}

.chat-content-emoji {
    padding: 0 15px;
}

div#div2 {
    margin-top: 20px;
}

#emoji-part {
    margin-top: 8px;
    margin-bottom: 5px;
}

.radoi-list {
    margin-bottom: 6px;
}

#emoji-part ul li a {
    display: block;
    position: relative;
}

    #emoji-part ul li a input[type="radio"] {
        position: absolute;
        left: 0;
        right: 0;
        height: 100%;
        width: 100%;
        opacity: 0;
        z-index: 99;
        cursor: pointer;
        margin: 0;
    }

#emoji-part ul li img {
    width: 63px;
    border: 1px solid #ccc;
    padding: 3px;
    margin: 2px;
    border-radius: 3px;
}

#emoji-part ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

    #emoji-part ul li {
        flex: 25%;
    }

button.yes-btn {
    border: none;
    color: #fff;
    font-size: 18px;
    padding: 4px 19px;
    border-radius: 3px;
    margin: 2px 0px 20px 0;
    background: rgb(4,160,224);
    background: linear-gradient(67deg, rgba(4,160,224,1) 0%, rgba(2,122,206,1) 80%);
}

button.no-btn {
    border: none;
    color: #04a0e0;
    font-size: 16px;
    padding: 5px 21px;
    border-radius: 4px;
    margin: 2px 7px;
    font-weight: 600;
    background: transparent;
    border: 1px solid #04a0e0;
}

.chat-image strong {
    font-size: 20px;
}

.disclaimer-box .chat-image strong {
    color: #f7b608;
}

.success-box .chat-image strong {
    color: #3bd519;
}

.error-box .chat-image strong {
    color: #e12828;
}

.application-rate .chat-content {
    padding: 15px;
    text-align: center;
    position: relative;
}

    .application-rate .chat-content ul li img {
        width: 23px;
    }
/*.hover-img {
    filter: grayscale(1);
}*/
.rate-ibot .star.result_hover .hover-img {
    /*filter: grayscale(0);*/
    cursor: pointer;
}

.rate-ibot .star.selected .hover-img {
    /*filter: grayscale(0);*/
    cursor: pointer;
}

.application-rate .chat-content ul li {
    flex: 1;
    margin: 2px;
}

.application-rate .chat-content ul {
    padding: 0;
    list-style: none;
    display: flex;
}

.application-rate .chat-content p {
    margin: 14px 0 16px 0;
}

.application-rate .yes-btn {
    border: none;
    color: #fff;
    font-size: 18px;
    padding: 4px 19px;
    border-radius: 3px;
    margin: 2px 0px;
    background: rgb(4,160,224);
    background: linear-gradient(67deg, rgba(4,160,224,1) 0%, rgba(2,122,206,1) 80%);
}

.application-rate .yes-btn1 {
    border: none;
    color: #fff;
    font-size: 13px;
    padding: 4px 19px;
    border-radius: 3px;
    margin: 2px 0px;
    background: rgb(4,160,224);
    background: linear-gradient(67deg, rgba(4,160,224,1) 0%, rgba(2,122,206,1) 80%);
    margin-bottom: 8px;
    display: inline-block;
}

.application-rate .no-btn1 {
    border: #2885ce 1px solid;
    color: #2885ce;
    font-size: 13px;
    padding: 4px 19px;
    border-radius: 3px;
    margin: 2px 0px;
    background: rgb(4,160,224);
    display: inline-block;
    background: #fff;
}

.application-rate .chat-content ul li i {
    font-size: 25px;
}

.rate-ibot .star.result_hover .hover-img {
    cursor: pointer;
}

.rate-ibot li:first-child.star.result_hover .hover-img {
    color: #de1d0f;
}

.rate-ibot li:nth-child(2).star.result_hover .hover-img {
    color: #de1d0f;
}

.rate-ibot li:nth-child(3).star.result_hover .hover-img {
    color: #de1d0f;
}

.rate-ibot li:nth-child(4).star.result_hover .hover-img {
    color: #de1d0f;
}

.rate-ibot li:nth-child(5).star.result_hover .hover-img {
    color: #de1d0f;
}

.rate-ibot li:nth-child(6).star.result_hover .hover-img {
    color: #de1d0f;
}

.rate-ibot li:nth-of-type(7).star.result_hover .hover-img {
    color: #ffba00;
}

.rate-ibot li:nth-of-type(8).star.result_hover .hover-img {
    color: #ffba00;
}

.rate-ibot li:nth-child(9).star.result_hover .hover-img {
    color: #32CD32;
}

.rate-ibot li:nth-child(10).star.result_hover .hover-img {
    color: #32CD32;
}



.rate-ibot li:first-child.star.selected .hover-img {
    color: #de1d0f;
}

.rate-ibot li:nth-child(2).star.selected .hover-img {
    color: #de1d0f;
}

.rate-ibot li:nth-child(3).star.selected .hover-img {
    color: #de1d0f;
}

.rate-ibot li:nth-child(4).star.selected .hover-img {
    color: #de1d0f;
}

.rate-ibot li:nth-child(5).star.selected .hover-img {
    color: #de1d0f;
}

.rate-ibot li:nth-child(6).star.selected .hover-img {
    color: #de1d0f;
}

.rate-ibot li:nth-of-type(7).star.selected .hover-img {
    color: #ffba00;
}

.rate-ibot li:nth-of-type(8).star.selected .hover-img {
    color: #ffba00;
}

.rate-ibot li:nth-child(9).star.selected .hover-img {
    color: #32CD32;
}

.rate-ibot li:nth-child(10).star.selected .hover-img {
    color: #32CD32;
}


.rate-ibot .star.selected .hover-img {
    cursor: pointer;
}



#arbelic-language .chat-image strong {
    font-size: 20px;
    color: #016fc5;
}

#arbelic-language .chat-box-content h5 {
    color: #000;
    font-size: 18px;
    line-height: 1.5;
    text-align: right;
}

#uae-login strong {
    color: #016fc5;
}


#togglerightpanel {
    position: fixed;
    right: 30px;
    z-index: 9999;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    bottom: 39px;
    width: 480px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 12px 8px rgba(0,0,0,0.25);
    opacity: 0;
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
    -webkit-transform: scale(0);
    transform: scale(0);
    visibility: hidden;
}

#togglerightpanel-calculator {
    position: fixed;
    right: 30px;
    z-index: 9999;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    bottom: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 12px 8px rgba(0,0,0,0.25);
    opacity: 0;
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
    -webkit-transform: scale(0);
    transform: scale(0);
    visibility: hidden;
    width: 480px;
    z-index: 99999;
}

    #togglerightpanel-calculator.is_visable1 {
        -webkit-transition: all 300ms ease;
        transition: all 300ms ease;
        height: auto;
        bottom: 85px;
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
        visibility: visible;
        -webkit-transition: all 300ms ease;
        transition: all 300ms ease;
    }

#togglerightpanel.is_visable {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    visibility: visible;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    height: auto;
    bottom: 85px;
}

#togglerightpanelHowToApply {
    position: fixed;
    right: 30px;
    z-index: 9999;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    bottom: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 12px 8px rgba(0,0,0,0.25);
    opacity: 0;
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
    -webkit-transform: scale(0);
    transform: scale(0);
    visibility: hidden;
    width: 480px;
    z-index: 99999;
}

    #togglerightpanelHowToApply.is_visable {
        -webkit-transition: all 300ms ease;
        transition: all 300ms ease;
        height: 65%;
        bottom: 85px;
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
        visibility: visible;
        -webkit-transition: all 300ms ease;
        transition: all 300ms ease;
    }

.logo-provider img {
    width: 172px;
}

.logo-provider {
    margin-top: 6px;
}

#select_product .chat-image strong {
    color: #016fc5;
}

#information_msg .chat-image strong {
    color: #016fc5;
}

#information_msg .chat-box-content h5 {
    color: #3b3b3b;
    font-size: 20px;
    line-height: 1.3;
}

#unlisted_msg .chat-box-content h5 {
    color: #3b3b3b;
    font-size: 20px;
    line-height: 1.3;
}

#unlisted_msg .chat-image strong {
    color: #016fc5;
}

.save-view a {
    background: rgba(4,168,228,1);
    background: -moz-linear-gradient(left, rgba(4,168,228,1) 0%, rgba(2,115,202,1) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(4,168,228,1)), color-stop(100%, rgba(2,115,202,1)));
    background: -webkit-linear-gradient(left, rgba(4,168,228,1) 0%, rgba(2,115,202,1) 100%);
    background: -o-linear-gradient(left, rgba(4,168,228,1) 0%, rgba(2,115,202,1) 100%);
    background: -ms-linear-gradient(left, rgba(4,168,228,1) 0%, rgba(2,115,202,1) 100%);
    background: linear-gradient(to right, rgba(4,168,228,1) 0%, rgba(2,115,202,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#04a8e4', endColorstr='#0273ca', GradientType=1 );
    color: dimgray;
    display: inline-block;
    text-align: center;
    color: #fff;
    padding: 7px 21px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
}

.save-view p {
    color: #3b3b3b;
    line-height: 1.3;
}

.save-view h1 {
    font-size: 17px;
    color: #000;
    font-weight: 700;
}

.resend-btn {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border: 1px solid #0271c9;
    padding: 5px 26px;
    border-radius: 4px;
    margin: 0 5px;
    background: #0271c9;
}

.application-rate .chat-image i {
    color: #c79403;
    font-size: 23px;
    margin-right: 8px;
}

.application-rate .chat-image strong {
    color: #c79403;
}

.delete-application .chat-image i {
    color: #f13a11;
    font-size: 23px;
    margin-right: 8px;
}

.delete-application .chat-image strong {
    color: #f13a11;
}

.delete-application ul {
    padding: 0;
    list-style: none;
    display: inline-block;
}

    .delete-application ul li {
        width: 50%;
        float: left;
    }

        .delete-application ul li .resend-btn {
            font-size: 14px;
            font-weight: 600;
            border: 1px solid #0271c9;
            padding: 5px 12px;
            border-radius: 6px;
            margin: 6px 5px;
            color: #0271c9;
            text-align: center;
            min-height: 84px;
            display: flex;
            align-items: center;
            background: transparent;
            transition: .4s ease-in-out;
        }

            .delete-application ul li .resend-btn:hover {
                background: #0271c9;
                color: #fff;
                transition: .4s ease-in-out;
            }

#change-valuaton-time {
    width: 449px;
    max-width: 100%;
}

#pick-bank-doc {
    width: 449px;
    max-width: 100%;
}

.chat-box-content.form-chat-content .form-control {
    width: 100% !important;
    border: 1px solid #ccc !important;
}

.chat-box-content.form-chat-content .form-group {
    margin-bottom: 5px !important;
}

.ui-timepicker-standard {
    z-index: 999999999 !important;
}

#togglerightpanel-calculatorpf {
    position: fixed;
    right: 30px;
    z-index: 9999;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    bottom: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 12px 8px rgba(0,0,0,0.25);
    opacity: 0;
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
    -webkit-transform: scale(0);
    transform: scale(0);
    visibility: hidden;
    width: 550px;
    z-index: 99999;
}

    #togglerightpanel-calculatorpf.is_visable1 {
        -webkit-transition: all 300ms ease;
        transition: all 300ms ease;
        height: auto;
        bottom: 85px;
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
        visibility: visible;
        -webkit-transition: all 300ms ease;
        transition: all 300ms ease;
    }

#togglerightpanel-calculatoraf {
    position: fixed;
    right: 30px;
    z-index: 9999;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    bottom: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 12px 8px rgba(0,0,0,0.25);
    opacity: 0;
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
    -webkit-transform: scale(0);
    transform: scale(0);
    visibility: hidden;
    width: 550px;
    z-index: 99999;
}

    #togglerightpanel-calculatoraf.is_visable1 {
        -webkit-transition: all 300ms ease;
        transition: all 300ms ease;
        height: auto;
        bottom: 85px;
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
        visibility: visible;
        -webkit-transition: all 300ms ease;
        transition: all 300ms ease;
    }

.offer-pf-credit img {
    width: 210px;
}

.offer-pf-credit {
    margin-bottom: 20px;
}

.bank-action-form .form-group {
    margin-bottom: 5px !important;
}

    .bank-action-form .form-group label {
        margin-bottom: 0px !important;
    }

.Timepicker .input-group, .Datepicker .input-group {
    width: 100%;
}

.Timepicker span.input-group-addon, .Datepicker span.input-group-addon {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 9;
    pointer-events: none;
    width: 45px;
    height: 100%;
    border-left: 1px solid #ccc;
    bottom: 0;
    margin: 0;
}

    .Timepicker span.input-group-addon i, .Datepicker span.input-group-addon i {
        position: relative;
        top: 4px;
    }

.chat-form .form-group {
    margin-bottom: 15px !important;
}

.chat-form .is-floating-label {
    position: relative;
    margin-bottom: 15px;
}

#togglerightpanel-calculatorhf {
    position: fixed;
    right: 30px;
    z-index: 9999;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    bottom: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 12px 8px rgba(0,0,0,0.25);
    opacity: 0;
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
    -webkit-transform: scale(0);
    transform: scale(0);
    visibility: hidden;
    width: 550px;
    z-index: 99999;
}

    #togglerightpanel-calculatorhf.is_visable1 {
        -webkit-transition: all 300ms ease;
        transition: all 300ms ease;
        height: auto;
        bottom: 85px;
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
        visibility: visible;
        -webkit-transition: all 300ms ease;
        transition: all 300ms ease;
    }


#togglerightpanel-calculatorcc {
    position: fixed;
    right: 30px;
    z-index: 9999;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    bottom: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 12px 8px rgba(0,0,0,0.25);
    opacity: 0;
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
    -webkit-transform: scale(0);
    transform: scale(0);
    visibility: hidden;
    width: 550px;
    z-index: 99999;
}

    #togglerightpanel-calculatorcc.is_visable1 {
        -webkit-transition: all 300ms ease;
        transition: all 300ms ease;
        height: auto;
        bottom: 85px;
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
        visibility: visible;
        -webkit-transition: all 300ms ease;
        transition: all 300ms ease;
    }


#togglerightpanel-calculatoradv {
    position: fixed;
    right: 30px;
    z-index: 9999;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    bottom: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 12px 8px rgba(0,0,0,0.25);
    opacity: 0;
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
    -webkit-transform: scale(0);
    transform: scale(0);
    visibility: hidden;
    width: 550px;
    z-index: 99999;
}

    #togglerightpanel-calculatoradv.is_visable1 {
        -webkit-transition: all 300ms ease;
        transition: all 300ms ease;
        height: auto;
        bottom: 85px;
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
        visibility: visible;
        -webkit-transition: all 300ms ease;
        transition: all 300ms ease;
    }


ul.signature-success-list {
    padding: 0;
    list-style: none;
}

    ul.signature-success-list li {
        display: flex;
        margin: 0;
        border-bottom: 1px solid #e4dfdf;
        padding: 10px 0;
    }

        ul.signature-success-list li span {
            width: 50%;
            color: #666;
        }

        ul.signature-success-list li strong {
            width: 50%;
            color: #000;
        }

.signature-content h6 {
    font-size: 14px;
    color: #666;
    margin: 0 0 4px 0;
}

.signature-content strong {
    display: block;
    color: #000;
}

ul.down-can {
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px 0;
}

    ul.down-can li a {
        background: #016fc5;
        color: #fff;
        display: block;
        padding: 7px 17px;
        border-radius: 5px;
        margin: 0 5px;
    }

        ul.down-can li a.cancel-bttn {
            border: 1px solid #016fc5;
            color: #016fc5;
            background: #fff;
        }
