﻿.PopupShell {
    position: fixed;
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
    font-family: Arial,'Roboto';
}

    .PopupShell > .PopupOverlay {
        position: fixed;
        top: 0;
        left: 0;
        background: #000;
        opacity: 0.6;
        width: 100%;
        height: 100%;
    }

    .PopupShell > .PopupBody {
        box-shadow: 0 0 5px #666;
        position: fixed;
        display: none;
        border-radius: 5px;
        /*! border: #808080 1px solid; */
        background: #fff;
    }

        .PopupShell > .PopupBody > .PopupHeader {
            background: #b9b9b9;
            border-top-left-radius: 5px;
            border-top-right-radius: 5px;
            padding: 5px 10px;
        }

.dialogExButtons {
    background: #F5DBAB;
    padding: 5px;
    overflow: hidden;
}

    .dialogExButtons .chck_block {
        border: 1px solid #9A9A9A;
        border-radius: 3px;
    }

        .dialogExButtons .chck_block .lbl_check {
            margin: 1px 5px;
        }

.PopupShell > .PopupBody > .PopupHeader:after {
    clear: both;
}

.PopupShell > .PopupBody > .PopupHeader > .PopupTitle {
    display: inline-block;
    margin-right: 10px;
    padding: 2px 20px 0 0;
    font-weight: 600;
    color: #646464;
    font-size: 12px;
    float: left;
    color: #000;
    /* background: #595959; */
    border-radius: 3px;
    padding: 3px 10px;
    /* box-shadow: inset 1px 1px 1px rgba(255, 255, 255, 0.2), inset 0px 0px 2px rgba(0, 0, 0, 0.2); */
    /* border: #535353 1px solid; */
    /* box-shadow: 1px 1px 1px rgba(0,0,0,.2); */
    /* border-bottom: #4a4a4a 2px solid; */
}

.PopupShell > .PopupBody > .PopupHeader > .PopupCloseButton {
    float: right;
    /*! border-right: none !important; */
    padding: 3px 24px 3px 10px;
    /*background-color: #fff;*/
    background-color: #ff9696;
}

.PopupButton {
    cursor: pointer;
    /*! border-right: 1px solid #B7B7B7; */
    padding-right: 5px;
    font-size: 11px;
    position: relative;
    padding: 3px 8px 3px 25px;
    margin-left: 3px;
    /*! float: left; */
    font-weight: 500;
    background: radial-gradient(#ececec, #afafaf);
    border-radius: 3px;
    background: #f9f9f9;
    background: #fff linear-gradient( 0deg, rgba(0, 0, 0, 0.1) 0%, rgba(255,255,255,0) 100%);
    /*border-bottom: #939393 1px solid;*/
    box-shadow: 1px 1px 1px rgba(0,0,0,.2);
}

    .PopupButton:first-child {
        margin: 0;
    }

    .PopupButton:before {
        font-family: "tab";
        font-size: 14px;
        display: inline-block;
        position: absolute;
        top: 2px;
        left: 6px;
        font-weight: normal;
    }

    .PopupButton:hover {
        background: linear-gradient(0deg, rgb(255, 140, 84) 0%, rgb(255, 231, 208) 5%, rgb(255, 255, 255) 100%);
    }

.PopupCloseButton {
    color: #666;
}

    .PopupCloseButton:before {
        content: "\f10c";
        font-weight: bold;
        font-size: 15px;
        color: #666;
        right: 5px;
        left: auto;
    }

.PopupSaveButton {
    /*! color: #328a3e; */
    /*background-color: #daffd0;*/
}

    .PopupSaveButton:before {
        content: "\f115";
        /*color: #328a3e;*/
    }

.PopupPrintButton {
    /*! color: #5266d6; */
}

    .PopupPrintButton:before {
        /*color: #5266d6;*/
        content: "\f130";
    }

.PopupOptionButton {
    color: #d87c1e;
}

    .PopupOptionButton:before {
        content: "\f13b";
        /*color: #d87c1e;*/
    }

.PopupDeleteButton:before {
    content: "\f114";
}

.PopupSaveAndCloseButton {
    color: #c55959;
}

    .PopupSaveAndCloseButton:before {
        color: #c55959;
        content: "\f115";
    }

.PopupBackButton:before {
    content: "\f105";
    font-size: 13px;
    /*font-size: 14px;*/
    /*padding: 2px 5px 2px 3px;*/
    padding: 0px 3px 0px 1px;
    border: 2px solid #878786;
    border-radius: 100%;
    /*top: 5px;
    left: -3px;*/
    top: 1px;
    left: 2px
}

.PopupSaveAndCloseButton:after {
    content: "\f116";
    font-family: "Flaticon";
    font-size: 13px;
    display: inline-block;
    color: #803333;
    padding: 5px;
    position: absolute;
    top: 10px;
    left: 10px;
}

.PopupShell > .PopupBody > .PopupContent {
    overflow: auto;
    padding: 5px;
}

.PopupShell.grayPad10 > .PopupBody, .PopupShell.grayPad15 > .PopupBody, .PopupShell.grayPad0 > .PopupBody {
    background: #eaeaea;
}

.PopupShell.grayPad0 > .PopupBody {
    background: #eaeaea;
}



.PopupShell.grayPad10 > .PopupBody > .PopupContent {
    padding: 10px;
}

    .PopupShell.grayPad15 > .PopupBody > .PopupContent {
        padding: 15px;
    }

    .PopupShell.grayPad0 > .PopupBody > .PopupContent {
        padding: 0px;
    }

.PopupShell > .PopupBody > .PopupCommands {
    padding: 5px;
}

.PopupButtonText {
    width: 28px;
    height: 28px;
    overflow: hidden;
    -webkit-transition: width 0.5s ease-in-out;
    -moz-transition: width 0.5s ease-in-out;
    -o-transition: width 0.5s ease-in-out;
    transition: width 0.5s ease-in-out;
}

    .PopupButtonText:hover {
        width: 90px;
        height: 28px;
    }

        .PopupButtonText:hover span {
            display: inline-block;
        }

    .PopupButtonText span {
        padding-right: 10px;
        color: #878786;
        font-size: 12px;
        display: none;
    }

.ProScheduler {
    font-size: 12px;
}

    .ProScheduler .PopupBody {
        border-radius: 3px !important;
        box-shadow: 2px 2px 4px #303030 !important;
        border: none;
    }

    .ProScheduler .PopupHeader {
        margin: 0px;
        font-size: 12px;
        font-size: 14px !important;
        padding: 15px 10px !important;
        background: #F6F6F6 !important;
        background: #fff !important;
        border-bottom: #d6d7d8 1px solid;
        border-bottom: #dfece6 3px solid;
        text-align: center;
    }

    .ProScheduler .PopupTitle {
        font-size: 10px !important;
        padding: 0 !important;
        margin: 0 !important;
        font-size: 12px !important;
        color: #757e81 !important;
    }

    .ProScheduler .PopupCloseButton::before {
        display: none;
    }

    .ProScheduler .PopupButton::before {
        display: none;
    }

    .ProScheduler .PopupCloseButton {
        display: inline-block;
        border-radius: 3px;
        line-height: 12px;
        margin-right: 0px;
        height: 12px;
        background: #fff;
        border: #ccc 1px solid !important;
        border-right: #ccc 1px solid !important;
        margin: 0;
        float: right;
        padding: 3px !important;
        cursor: pointer;
        box-sizing: content-box;
    }

.PopupShell.ProScheduler > .PopupBody > .PopupHeader > .PopupCloseButton {
    border-right: #ccc 1px solid !important;
}

.PopupShell.ProScheduler > .PopupBody > .PopupContent {
    overflow: auto;
    padding: 0px;
}

.ProScheduler .PopupCloseButton span {
    display: inline-block;
    float: left;
    width: 12px;
    height: 12px;
    vertical-align: text-bottom;
    background: url(../../Modules/RIS/Styles/commands.png) no-repeat left top;
    text-indent: -9999px;
}


.pmkPopup {
    font-size: 12px;
}

    .pmkPopup .PopupBody {
        border-radius: 5px !important;
        box-shadow: 0px 0px 8px rgba(0,0,0,0.4);
        border: none;
        background: white;
        /*height:100%;*/
    }

    .pmkPopup .PopupHeader {
        margin: 0px;
        font-size: 12px;
        font-size: 14px !important;
        padding: 5px 10px 5px 0px !important;
        background: #dbdbdb !important;
        text-align: left;
    }



    .pmkPopup .PopupCloseButton::before {
        display: none;
    }

    .pmkPopup .PopupButton::before {
        display: none;
    }



    .pmkPopup .PopupButton {
        background: #3ca239;
        border-right: 0;
        padding: 1px 15px;
        font-size: 12px;
        color: #fff !important;
        border-radius: 3px;
        margin-right: 2px;
        margin-left: 0;
    }

    .pmkPopup .PopupTitle {
        font-size: 10px !important;
        padding: 0 !important;
        margin: 0 !important;
        font-size: 12px !important;
        color: #000 !important;
        margin-left: 10px !important;
    }

    .pmkPopup .PopupPrintButton {
        background: #fb8e2e !important;
        margin-left: 10px;
    }


    .pmkPopup .PopupCloseButton {
        display: inline-block;
        border-radius: 3px;
        line-height: 12px;
        margin-right: 0px;
        height: 12px;
        background: #aeb3bb;
        border: none !important;
        margin: 0;
        float: right;
        padding: 3px 3px !important;
        cursor: pointer;
        box-sizing: content-box;
        color: #6a6a6a !important;
    }

.PopupShell.pmkPopup > .PopupBody > .PopupHeader > .PopupCloseButton {
    border-right: none !important;
}

.PopupShell.pmkPopup > .PopupBody > .PopupContent {
    overflow: auto;
    padding: 10px;
    background: #fff;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
}

.pmkPopup .PopupCloseButton span {
    display: inline-block;
    float: left;
    width: 12px;
    height: 12px;
    vertical-align: text-bottom;
    background: url(../../Modules/RIS/Styles/commands.png) no-repeat left top;
    text-indent: -9999px;
    color: #bbb !important;
    font-size: 12px;
}




@media (max-width: 768px) {
    .PopupTitle {
        margin-left: 0;
        padding: 7px 0 !important;
    }

    .PopupButton {
        height: 30px;
        padding: 7px 8px 10px 31px;
    }

        .PopupButton:before {
            top: 5px;
            left: 10px;
        }

        .PopupButton span {
            display: none;
        }

    .PopupCloseButton:before {
        right: 10px;
    }

    #malzemeDepoBilgi {
        display: none;
    }
}




.modal {
    font-size: 12px;
    font-family: Arial,'Roboto';
}

    /*.modal .PopupBody {
        border-radius: 5px !important;
        box-shadow: 0px 0px 8px rgb(0 0 0 / 40%);
        border: none;
        background: white;
    }

    .modal .PopupHeader {
        margin: 0px;
        font-size: 14px !important;
        padding: 10px 20px !important;
        background: #ffffff !important;
        text-align: left;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
        position: relative;
        box-shadow: 0 5px 5px rgba(114, 136, 187, 0.2);
    }*/







    .PopupButton {
        /*background: #3ca239;
        border-right: 0;
        padding: 1px 15px;
        font-size: 12px;
        color: #fff !important;
        border-radius: 3px;
        margin-right: 2px;
        margin-left: 0;*/
        font-weight: bold;
        color: #000;
    }

        .modal .PopupButton::before {
            color: #ff8d00;
        }

        .modal .PopupButton:hover::after {
            content: '';
            position: absolute;
            top: 1px;
            left: 1px;
            width: calc(100% - 2px);
            height: 50%;
            background: linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.2));
        }

    .modal .PopupCloseButton {
        /*padding: 8px 32px 8px 14px !important;
        background: #d6d6d6 !important;
        font-weight: 400 !important;
        position: absolute;
        top: 2px;
        right: 0;
        color: #333 !important;
        font-weight: 700 !important;*/
        /* padding-right: 29px !important; */
    }

        .modal .PopupCloseButton::before {
            /*display: none;*/
            /*top: 7px;
            right: 7px;*/
        }

        .modal .PopupCloseButton:hover {
            /*background: #ffcaca !important;
            color: #e9474c !important;*/
        }

    /*.modal .PopupTitle {
        padding: 0 !important;
        margin: 0 !important;
        font-size: 13px !important;
        color: #666 !important;
        font-weight: 700 !important;
    }*/

    .modal .PopupTitle .modalKeys {
        position: absolute;
        top: -20px;
        right: 0;
        font-size: 9px;
        font-weight: normal;
        color: darkgrey;
        /* background: #eee; */
    }

        .modal .PopupTitle .modalKeys span {
            margin-left: 15px;
        }

.PopupShell.modal > .PopupBody > .PopupContent {
    overflow: auto;
    padding: 0px;
    background: #fff;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
}

    .PopupShell.modal > .PopupBody > .PopupContent > .message {
        white-space: pre-line;
        padding: 10px;
        /* font-weight: bold; */
        background: #f5f5f5;
        border: #e6e6e6 1px solid;
        border-left: none;
        border-right: none;
        color: #000;
        outline: none;
        /* max-width: 550px; */
    }

        .PopupShell.modal > .PopupBody > .PopupContent > .message.nowhsp {
            white-space: normal;
        }



    .PopupShell.modal > .PopupBody > .PopupContent > .buttons {
        white-space: normal;
        /*text-align: center;*/
        padding: 10px;
        background: #ffffff;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        text-align: center;
    }

        .PopupShell.modal > .PopupBody > .PopupContent > .buttons > .text_btn {
            /* min-width: 120px; */
            /* text-align: center; */
            padding: 2px 10px 2px 10px;
            font-weight:bold;
            color:#000;
        }

            .PopupShell.modal > .PopupBody > .PopupContent > .buttons > .text_btn::before {
                left: 20px;
                left: 0;
                position: relative;
                margin-right: 5px;
            }


        .PopupShell.modal > .PopupBody > .PopupContent > .buttons > .mb {
            padding: 5px 15px 5px 32px;
            font-size: 12px;
            background: #fff;
            font-weight: 500;
            color: #000;
            border-radius: 3px;
            margin-right: 5px;
            border: none;
            outline: none;
            font-family: Arial,'Roboto';
            background: #fff linear-gradient( 0deg, rgba(0, 0, 0, 0.2) 0%, rgba(255,255,255,0) 100%);
            border: #d4d4d4 1px solid;
        }

            .PopupShell.modal > .PopupBody > .PopupContent > .buttons > .mb.text_btn::before {
                top: 5px;
                color: #000;
            }









            .PopupShell.modal > .PopupBody > .PopupContent > .buttons > .mb:last-child {
                margin-right: 0px;
            }

            .PopupShell.modal > .PopupBody > .PopupContent > .buttons > .mb.mavi {
                background-color: #205ece;
                border-color: #1a4eab !important;
                color: #fff;
            }

            .PopupShell.modal > .PopupBody > .PopupContent > .buttons > .mb.turuncu {
                background-color: #e17617;
                border-color: #ab4a1a !important;
                color: #fff;
            }

                .PopupShell.modal > .PopupBody > .PopupContent > .buttons > .mb.turuncu.text_btn::before {
                    color: #fff;
                }

                .PopupShell.modal > .PopupBody > .PopupContent > .buttons > .mb.turuncu.text_btn:hover::before {
                    color: #fff !important;
                }

            .PopupShell.modal > .PopupBody > .PopupContent > .buttons > .mb.yesil {
                /*background: #71a76b;
            color: #fff;*/
            }

            .PopupShell.modal > .PopupBody > .PopupContent > .buttons > .mb.basic {
                /*background: #ffffff;
            color: #000;
            border: #d4d4d4 1px solid;
            box-shadow: none;*/
            }

        .PopupShell.modal > .PopupBody > .PopupContent > .buttons > .button:focus {
            border: #000000 2px solid;
            outline: none;
        }

        .PopupShell.modal > .PopupBody > .PopupContent > .buttons > .cct {
            font-size: 12px;
            color: #000;
            border-radius: 3px;
            background: #dfdfdf;
            padding: 3px 16px;
            font-weight: bold;
        }

            .PopupShell.modal > .PopupBody > .PopupContent > .buttons > .cct > input[type=checkbox] {
                vertical-align: text-top;
            }




#userLog h3 {
    padding: 10px;
    color: #dfdfdf;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    font-weight: bold;
    /* position: relative; */
    left: 0;
    margin-left: 36px;
}

    #userLog h3 span {
        color: #ff8d00;
    }




#userLog {
    position: absolute;
    background: #4c4c4c;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
    z-index: 1000000;
    font-size: 11px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    width: 495px;
    height: 450px;
    top: calc(100% - 480px);
    left: calc(100% - 495px);
}

@keyframes kfLogFS {
    from {
        /*width: 495px;
        height: 250px;*/
        /*right: 7px;*/
        /*top: calc(100% - 280px);
        left: calc(100% - 500px);*/
    }

    to {
        width: 100%;
        height: calc(100% - 29px);
        top: 0%;
        left: 0%;
    }
}

@keyframes kfLogSH {
    from {
        /*width: 100%;*/
        /*height: calc(100% - 29px);*/
        /*top: 0%;
        left: 0%;*/
    }

    to {
        width: 495px;
        height: 450px;
        top: calc(100% - 480px);
        left: calc(100% - 500px);
    }
}

#userLog .typShrink {
    display: none;
}

#userLog.shrink {
    transition: all .2s ease;
    animation-duration: .2s;
    width: 495px;
    height: 450px;
    top: calc(100% - 480px);
    left: calc(100% - 495px);
    animation-name: kfLogSH;
}

    #userLog.shrink .typShrink {
        display: none;
    }



    #userLog.shrink .typExpand {
        display: inline-block;
    }




#userLog.fullscreen {
    transition: all .2s ease;
    animation-duration: .2s;
    width: 100%;
    height: calc(100% - 29px);
    top: 0%;
    left: 0%;
    animation-name: kfLogFS;
}

    #userLog.fullscreen .typExpand {
        display: none;
    }

    #userLog.fullscreen .typShrink {
        display: inline-block;
    }


#userLog #opCtrl {
    width: 94px;
    background: #2d2d2d;
    border: none;
    position: absolute;
    bottom: 9px;
    right: 42px;
    height: 5px;
}

#userLog #opHandle {
    /* background: #ff854a; */
    border: none;
    /* height: 11px; */
    /* width: 11px; */
    position: absolute;
    /* top: -3px; */
    /* text-indent: -9999px; */
    background: none;
    /* border: none; */
    top: -8px;
    /* position: relative; */
    color: #ff8d00;
}



#userLog .btnClr {
    border: none !important;
    float: right;
    top: 2px;
    color: #fff;
    margin-right: 16px;
    margin-top: 5px;
}

#userLog .buttons {
    float: right;
    margin-top: 7px;
    margin-right: 7px;
}

    #userLog .buttons a {
        color: #aaa;
    }

        #userLog .buttons a:hover {
            color: #ff854a;
        }

#userLogList {
    /* padding: 7px; */
    /* box-shadow: 0px 0px 4px rgba(0,0,0,0.3) inset; */
    margin: 0 7px;
    height: calc(100% - 70px);
    /* background: #666; */
    overflow: auto;
    color: #bbb;
    position: relative;
    border-radius: 3px;
}

    #userLogList li {
        /* border-bottom: rgba(0,0,0,0.1) 1px solid; */
        padding: 7px;
        overflow: auto;
        /* border-top: rgba(255,255,255,0.1) 1px solid; */
        background: #393939;
        margin-bottom: 1px;
        border-radius: 3px;
        margin-right: 7px;
        color: #aaa;
    }

        #userLogList li span {
            display: inline-block;
            color: #5e5e5e;
        }

            #userLogList li span.t, #userLogList li span.tm {
                margin-right: 10px
            }

                #userLogList li span.t{
                    display:none;
                }

                #userLogList li span.p {
                    /*float: right;*/
                    color: #658ab0;
                    font-weight: bold;
                }

            #userLogList li span.sts {
                /*float: right;*/
                margin-right: 5px;
                color: #95c679;
            }

                #userLogList li span.sts.red {
                    color: #ff8686;
                }

            #userLogList li span.c {
                display: block;
                color: #bfbfbf;
                font-weight: bold;
                cursor:pointer;
            }

                #userLogList li span.c i {
                    position: absolute;
                    left: 10px;
                    /* color: #eee; */
                    top: 8px;
                }

            #userLogList li span.p i.cl {
                margin-right: 5px;
                font-size: 15px;
                color: #606060;
            }


            #userLogList li span.cc {
                padding: 0px 4px;
                background: #4a4a4a;
                line-height: 15px;
                border-radius: 4px;
                font-size: 11px;
                font-weight: bold;
                color: #939393 !important;
                margin-right: 5px;
            }

        #userLogList li .ch {
            /* margin-bottom: 5px; */
            padding: 5px;
            background: #2b2c2f;
            border-radius: 5px;
            border-bottom-left-radius: 0;
        }

        #userLogList li .cs {
            padding: 5px;
            background: #424242;
            border-radius: 5px;
            margin-bottom: 1px;
            /* margin-left: 30px; */
            position: relative;
            padding-left: 30px;
        }






        #userLogList li .ad {
            /* border-left: #2b2c2f 3px solid; */
            padding: 5px 10px;
            border-bottom: #111 1px dashed;
            border-top: #606060 1px dashed;
        }

    #userLogList > li > .ad:nth-child(2) {
        border-top: none;
    }

    #userLogList > li > .ad:last-child {
        border-bottom: none;
    }

    #userLogList li .ad .adt {
        /* margin-top: 5px; */
        color: #8297ac;
        margin-bottom: 5px;
    }

        #userLogList li .ad .adt .cl {
            margin-right: 5px;
        }

    #userLogList li .ad .nodb {
        font-style: italic;
        color: #c55959;
    }

    #userLogList li .cs .cdt {
        display: none;
    }

    #userLogList li .cs .cdt.sld {
        display: block;
    }

        #userLogList li .cs .cdt .cp {
            padding: 1px 10px;
            /*! background: #393939; */
            border-radius: 5px;
            /*! margin-bottom: 1px; */
        }

            #userLogList li .cs .cdt .cp span {
                color: #777;
                padding: 0;
                /*! font-weight: bold; */
                background: #2d2f33;
                padding: 0px 5px;
                border-radius: 5px;
                vertical-align:top;
            }

                #userLogList li .cs .cdt .cp span.pn {
                    width: 150px;
                    /*! color: #a18eae; */
                    /*! background: #2d2f33; */
                }

                #userLogList li .cs .cdt .cp span.pt {
                    width: 80px;
                    color: #567e60 !important;
                    /*! background: #2d2f33; */
                }

                #userLogList li .cs .cdt .cp span.pd {
                    width: 80px;
                    color: #567e60 !important;
                    /*! background: #2d2f33; */
                }

                #userLogList li .cs .cdt .cp span.pv {
                    width: calc(100% - 320px);
                    color: #c68ac8;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    white-space: nowrap;
                    vertical-align: middle;
                    /*! background: #2d2f33; */
                }

.noTxEly {
    overflow: visible !important;
    white-space: pre-wrap !important;
}

xmp {
    margin: 0;
    margin: 0;
    font-family: Arial;
}

.ui-resizable-s {
    cursor: s-resize;
    height: 7px;
    width: 100%;
    bottom: -5px;
    left: 0;
    position: absolute;
}

.ui-resizable-e {
    cursor: e-resize;
    width: 4px;
    right: 0px;
    top: 0;
    height: 100%;
    position: absolute;
    /* border: #ccc 1px solid; */
    /* background: #000; */
}

.ui-resizable-se {
    cursor: se-resize;
    right: 1px;
    bottom: 1px;
    position: absolute;
    background-image: url("images/ui-icons_777777_256x240.png");
}



/*signal animation*/


.sigCon {
    position: absolute;
    width: 42px;
    height: 42px;
    top: -3px;
    left: -3px;
    overflow: hidden;
    transform: scale(1);
    /* z-index: -1; */
    /* background: #fff; */
}

    .sigCon .ant {
        position: absolute;
        display: inline-block;
        width: 2px;
        height: 10px;
        background: #2d2d2d;
        left: 22px;
        top: 29px;
    }

.sigRing {
    border: 1px solid #ff8d00;
    border-radius: 30px;
    animation: pulsate 2s ease-out;
    animation-iteration-count: infinite;
    opacity: 0.0;
    position: absolute;
    top: 10px;
    left: 10px;
}

@-webkit-keyframes pulsate {
    0% {
        -webkit-transform: scale(1, 1);
        opacity: 0;
    }

    50% {
        opacity: 1.0;
    }
    /*50% {-webkit-transform: scale(1.2, 1.2); opacity: 0.0;}*/
    100% {
        -webkit-transform: scale(1.3, 1.3);
        opacity: 0.0
    }
}

@-webkit-keyframes pulsateDot {
    0% {
        /*-webkit-transform: scale(1, 1);*/
        opacity: 0;
    }

    50% {
        opacity: 1.0;
        box-shadow: 0 0 9px #ff8d00;
    }
    /*50% {-webkit-transform: scale(1.2, 1.2); opacity: 0.0;}*/
    100% {
        /*-webkit-transform: scale(1, 1);*/
        opacity: 0.0;
        /*box-shadow:0 0 20px #fff;*/
    }
}


.outring {
    width: 26px;
    height: 26px;
    animation-delay: .8s;
    border-width: 1px;
    border-color: #715431;
}



.midring {
    height: 20px;
    width: 20px;
    margin: 3px;
    animation-delay: .4s;
    border-width: 1px;
    border-color: #936c3c;
}

.inring {
    margin: 6px;
    width: 14px;
    height: 14px;
    border-color: #c67125;
}

.smallring {
    margin: 9px;
    width: 8px;
    height: 8px;
    animation-delay: 0s;
    background: #ff7800;
    /* background: none; */
    border-width: 0;
    animation-duration: 2s;
    /* border-radius: 0; */
    /* animation: none; */
    opacity: 1;
    animation-name: pulsateDot;
}


.PopupShell.onlyContent > .PopupBody{
    background:none !important;
}

.PopupShell.onlyContent > .PopupBody > .PopupHeader {
    display: none !important;
}

    .PopupShell.onlyContent > .PopupBody > .PopupContent {
        background: none !important;
    }