﻿body {
    background-image: url('../images/subtle_dots.png');
    font-family: Calibri;
}

.LoginMain {
    width: 300px;
    background-image: url('../images/header_bg.png');
    padding-top: 30px;
    top: 50%;
    left: 50%;
    margin-top: -155px;
    margin-left: -150px;
    -ms-border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -ms-box-shadow: 0 0 5px #333333;
    -moz-box-shadow: 0 0 5px #333333;
    -webkit-box-shadow: 0 0 5px #333333;
    box-shadow: 0 0 5px #333333;
    display: table;
    height: 310px;
    position: absolute;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.LoginHeader {
    height: 120px;
    background-color: #FFFFFF;
    text-align: center;
}

    .LoginHeader img {
        width: 100%;
        max-width: 280px;
        margin: 25px auto;
    }

.TextBoxUsername {
    height: 20px;
    padding: 3px 10px 3px 25px;
    background-image: url('../images/icons/User.png');
    background-repeat: no-repeat;
    margin: 15px 10px;
    border: 1px solid #282a73;
    background-color: #ffffff;
    -ms-border-radius: 5px;
    border-radius: 5px;
}

.TextBoxPassword {
    height: 20px;
    padding: 3px 10px 3px 25px;
    background-image: url('../images/icons/Password.png');
    background-repeat: no-repeat;
    margin: 15px 10px;
    border: 1px solid #282a73;
    background-color: #ffffff;
    -ms-border-radius: 5px;
    border-radius: 5px;
}

.customer-list-box-row {
    width: 100%;
    display: flex;
}

.customer-list-box-column {
    width: 50%;
    margin: 5px;
}

.customer-list-box-column-left {
    width: 31%;
}

.customer-list-box-column-right {
    width: 69%;
}

.dropdown-citown {
    min-width: 100%;
    border-radius: 2px;
    padding: 5px;
    border: 2px solid #cecece;
}

.text-center {
    text-align: center;
}

@media only screen and (min-width : 224px) and (max-width : 500px) {
    .customer-list-box-row {
        display: block;
    }

    .customer-list-box-column {
        width: 100%;
    }

    .customer-list-box-column-left {
        text-align: justify;
        padding: 5px 0px 4px 0px;
    }

    .customer-list-box-column-right {
        width: auto;
        padding: 0px 9px 0px 0px;
    }
}

.LoginGeneral {
    height: 45px;
}

.btnNewUser {
    float: left;
    font-size: 12px;
    padding-top: 15px;
    padding-left: 13px;
}

    .btnNewUser a {
        color: #FFFFFF;
        text-decoration: none;
    }

        .btnNewUser a:hover {
            color: #cccccc;
            text-decoration: underline;
        }

.btnLogin {
    float: right;
    margin: 0 12px;
    text-align: right;
    height: 25px;
    padding: 5px 0;
}

    .btnLogin a {
        color: #ffffff;
        text-decoration: none;
        background: -webkit-gradient(linear,50% 0,50% 100%,color-stop(0,#3d3f81),color-stop(100%,#282a73));
        background: -webkit-linear-gradient(top,#3d3f81,#282a73);
        background: -moz-linear-gradient(top,#3d3f81,#282a73);
        background: -o-linear-gradient(top,#3d3f81,#282a73);
        background: linear-gradient(to bottom,#3d3f81,#282a73);
        background-color: #282a73;
        border-color: #212360;
        padding: 5px 20px;
        -ms-border-radius: 3px;
        border-radius: 3px;
        -webkit-box-shadow: 0 0 2px #FFFFFF;
        -ms-box-shadow: 0 0 2px #FFFFFF;
        box-shadow: 0 0 2px #FFFFFF;
    }

        .btnLogin a:hover {
            color: #333333;
            text-decoration: none;
            background: #dedede;
            background: -moz-linear-gradient(top, #c1c1c1 0, #dedede 100%) fixed;
            background: -webkit-gradient(linear, left top, left bottom, color-stop(0,#c1c1c1), color-stop(100%,#dedede)) fixed;
            background: -webkit-linear-gradient(top, #c1c1c1 0,#dedede 100%);
            background: -o-linear-gradient(top, #c1c1c1 0,#dedede 100%);
            background: -ms-linear-gradient(top, #c1c1c1 0,#dedede 100%);
            background: linear-gradient(#c1c1c1 0,#dedede 100%);
            padding: 5px 20px;
            -ms-border-radius: 3px;
            border-radius: 3px;
            -webkit-box-shadow: 0 0 2px #FFFFFF;
            -ms-box-shadow: 0 0 2px #FFFFFF;
            box-shadow: 0 0 2px #FFFFFF;
        }

/*#region Hatalar Baslangic */
.info, .success, .warning, .error, .validation {
    border: 1px solid;
    margin: 10px 0;
    padding: 15px 10px 15px 50px;
    background-repeat: no-repeat;
    background-position: 10px center;
}

.info {
    color: #00529B;
    background-color: #BDE5F8;
    background-image: url('/images/messageBox/info.png');
}

.success {
    -ms-border-radius: 5px;
    border-radius: 5px;
    color: #4F8A10;
    background-color: #DFF2BF;
    background-image: url('../images/messageBox/success.png');
    background-repeat: no-repeat;
}

.warning {
    color: #9F6000;
    background-color: #FEEFB3;
    background-image: url('/images/messageBox/warning.png');
}

.error {
    -ms-border-radius: 5px;
    border-radius: 5px;
    color: #D8000C;
    background-color: #FFBABA;
    background-image: url('../images/messageBox/error.png');
    background-repeat: no-repeat;
    margin: 0 10px;
    margin-top: 10px;
}
/*#endregion Hatalar - Bitis */

/*#region Modal Popup Start */
.modalBackground, .pnlBackGround, .popup, .popupTable, .TotalBottomRight, .TotalBottomRight tr, .TelerikGorunumluTextBox, .popupHeader, .popupBody, .popupBodyRepeater, .popupBodyTop, .popupBodySecond, .popupBodyQuantity, .popupBodyButtons, .popupBodyButtonLeft, .popupBodyButtonRight, .popupBodyButton, .popupBodyAccept, .popupBodyAccept a, .popupBodyAccept a:hover, .popupBodyDecline, .popupBodyDecline a, .popupBodyDecline a:hover, .popup table input[type="text"], .popup table input[type="password"] {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.modalBackground {
    height: 100%;
    background-color: #000000;
    -webkit-filter: alpha(opacity=20);
    -moz-filter: alpha(opacity=20);
    -o-filter: alpha(opacity=20);
    filter: alpha(opacity=20);
    -ms-opacity: 0.6;
    opacity: 0.6;
}

.pnlBackGround {
    position: fixed;
    top: 10%;
    text-align: left;
    border: solid 0 #a9a9a9;
}

.popup {
    background-color: #E6ECFF;
    padding: 7px 7px 10px 7px;
    font-size: 11pt;
    border: 0;
    -ms-border-radius: 4px;
    border-radius: 4px;
}

    .popup table input[type="text"], .popup table input[type="password"] {
        width: 100%;
        padding: 2px 2px 2px 4px;
        border: 1px solid #CCCCCC;
        -ms-border-radius: 2px;
        border-radius: 2px;
        -webkit-transition: all 0.3s ease 0.01s;
        -moz-transition: all 0.3s ease 0.01s;
        -ms-transition: all 0.3s ease 0.01s;
        -o-transition: all 0.3s ease 0.01s;
        transition: all 0.3s ease 0.01s;
        -moz-resize: none;
        -ms-resize: none;
        -o-resize: none;
        resize: none;
        color: #555;
    }

        .popup table input[type="text"]:hover, .popup table input[type="password"]:hover {
            border: 1px solid #555555;
            color: #333333;
        }

        .popup table input[type="text"]:focus, .popup table input[type="password"]:focus {
            border: 1px solid #333333;
            color: #000000;
        }

.popupTable {
    padding: 5px;
    border: 0;
    text-align: left;
}

.TotalBottomRight {
    float: right;
    padding-top: 5px;
    padding-right: 10px;
    display: table;
}

    .TotalBottomRight tr {
        margin-top: 2px;
        margin-right: 5px;
    }

.TelerikGorunumluTextBox {
    text-align: right;
    border: 1px solid #dfdfdf;
    font-family: Calibri;
    font-weight: bold;
    padding: 1px 4px;
    width: 100px;
    -webkit-text-size-adjust: none;
}

.popupHeader {
    display: table;
    width: 100%;
    font-size: 14pt;
    color: #ffffff;
    padding-top: 12px;
    padding-bottom: 8px;
    background: -webkit-gradient(linear,50% 0,50% 100%,color-stop(0,#3d3f81),color-stop(100%,#282a73));
    background: -webkit-linear-gradient(top,#3d3f81,#282a73);
    background: -moz-linear-gradient(top,#3d3f81,#282a73);
    background: -o-linear-gradient(top,#3d3f81,#282a73);
    background: linear-gradient(to bottom,#3d3f81,#282a73);
    background-color: #282a73;
    border-color: #212360;
    text-align: center;
    border: 1px solid #cfcfcf;
}

.popupBody {
    padding: 15px 5px 15px 10px;
}

.popupBodyTop {
    height: 55px;
}

.popupBodySecond {
    float: left;
    height: 50px;
    margin-left: 10px;
}

.popupBodyRepeater {
    overflow-y: scroll;
    height: 300px;
}

.popupBodyQuantity {
    float: right;
    height: 55px;
    margin-right: 10px;
    margin-top: 5px;
    font-size: 20px;
    font-weight: bold;
    color: Black;
}

.popupBodyButtons {
    display: table;
    width: 100%;
    height: auto;
    text-align: center;
}

.popupBodyButtonLeft, .popupBodyButtonRight {
    display: table-cell;
    width: 50%;
    padding: 0 20px;
}

.popupBodyButtonLeft {
    float: left;
}

.popupBodyButtonRight {
    float: right;
}

.popupBodyButton {
    padding: 15px 5px 15px 10px;
    height: 20px;
}

.popupBodyAccept {
    float: left;
    width: 50%;
    text-align: center;
    height: 40px;
}

    .popupBodyAccept a {
        padding: 8px 140px;
        background-color: #66FF33;
        -ms-border-radius: 5px;
        border-radius: 5px;
        color: #333333;
        text-decoration: none;
        font-weight: bold;
        -ms-text-shadow: 0 0 2px #999999;
        text-shadow: 0 0 2px #999999;
        -webkit-box-shadow: 2px 2px 5px #333333;
        -moz-box-shadow: 2px 2px 5px #333333;
        -ms-box-shadow: 2px 2px 5px #333333;
        box-shadow: 2px 2px 5px #333333;
    }

        .popupBodyAccept a:hover {
            background-color: #00CC00;
            color: #000000;
            -webkit-box-shadow: 0 0 5px #333333;
            -moz-box-shadow: 0 0 5px #333333;
            -ms-box-shadow: 0 0 5px #333333;
            box-shadow: 0 0 5px #333333;
            margin-top: 2px;
            margin-left: 2px;
        }

.popupBodyDecline {
    float: left;
    width: 50%;
    text-align: center;
    height: 40px;
}

    .popupBodyDecline a {
        padding: 8px 140px;
        background-color: #FF3300;
        -ms-border-radius: 5px;
        border-radius: 5px;
        color: #FFFFFF;
        text-decoration: none;
        font-weight: bold;
        -ms-text-shadow: 0 0 2px #999999;
        text-shadow: 0 0 2px #999999;
        -webkit-box-shadow: 2px 2px 5px #333333;
        -moz-box-shadow: 2px 2px 5px #333333;
        -ms-box-shadow: 2px 2px 5px #333333;
        box-shadow: 2px 2px 5px #333333;
    }

        .popupBodyDecline a:hover {
            background-color: #CC0000;
            color: #CCCCCC;
            -webkit-box-shadow: 0 0 5px #333333;
            -moz-box-shadow: 0 0 5px #333333;
            -ms-box-shadow: 0 0 5px #333333;
            box-shadow: 0 0 5px #333333;
            margin-top: 2px;
            margin-left: 2px;
        }
/*#endregion Modal Popup Stop */

.ploginSearchGeneral {
    width: 100%;
    display: table;
}

.ploginSearchLine {
    margin-top: 10px;
    height: 20px;
    padding: 5px;
    width: 100%;
    padding: 0 0;
}

.ploginSearchLineLeft {
    font-size: 15px;
    padding-top: 3px;
    width: 15%;
    float: left;
}

.ploginSearchGeneralText {
    width: 70%;
    float: left;
}

.ploginSearchGeneralButton {
    width: 15%;
    float: left;
    text-align: right;
}

.ploginSearchGeneralCheck {
    width: 85%;
    float: left;
    margin-left: 15%;
}

/*Table Start*/
.Table {
    width: 100%;
    display: table;
    border-collapse: collapse;
}

.Title {
    display: table-caption;
    text-align: center;
    font-weight: bold;
    font-size: larger;
}

.Heading {
    display: table-row;
    font-weight: bold;
    text-align: center;
    border-bottom: 1px solid #5b5b5b;
    height: 40px;
}

    .Heading .Cell p {
        margin: 0;
    }

.HeadingBg {
    color: #FFFFFF;
    background: #868686;
    background: -moz-linear-gradient(top, #868686 0, #505050 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0,#868686), color-stop(100%,#505050));
    background: -webkit-linear-gradient(top, #868686 0,#505050 100%);
    background: -o-linear-gradient(top, #868686 0,#505050 100%);
    background: -ms-linear-gradient(top, #868686 0,#505050 100%);
    background: linear-gradient(to bottom, #868686 0,#505050 100%);
    -webkit-filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#868686', endColorstr='#505050',GradientType=0 );
    -moz-filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#868686', endColorstr='#505050',GradientType=0 );
    -o-filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#868686', endColorstr='#505050',GradientType=0 );
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#868686', endColorstr='#505050',GradientType=0 );
}

.Row {
    display: table-row;
    border-bottom: 1px solid #d8d8d8;
}

.RowGroup {
    width: 100%;
    display: table-row-group;
}

.Cell {
    display: table-cell;
    padding-left: 5px;
    padding-right: 5px;
    vertical-align: middle;
}

.CellBg {
    background: -webkit-gradient(linear,50% 0,50% 100%,color-stop(0,#3d3f81),color-stop(100%,#282a73));
    background: -webkit-linear-gradient(top,#3d3f81,#282a73);
    background: -moz-linear-gradient(top,#3d3f81,#282a73);
    background: -o-linear-gradient(top,#3d3f81,#282a73);
    background: linear-gradient(to bottom,#3d3f81,#282a73);
    background-color: #282a73;
    border-color: #212360;
}

.Row .Cell p {
    margin: 0;
    padding: 5px 0;
    position: relative;
}

.RowBg {
    background: #f3f3f3;
    background: -moz-linear-gradient(top, #f3f3f3 0, #e0e0e0 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0,#f3f3f3), color-stop(100%,#e0e0e0));
    background: -webkit-linear-gradient(top, #f3f3f3 0,#e0e0e0 100%);
    background: -o-linear-gradient(top, #f3f3f3 0,#e0e0e0 100%);
    background: -ms-linear-gradient(top, #f3f3f3 0,#e0e0e0 100%);
    background: linear-gradient(to bottom, #f3f3f3 0,#e0e0e0 100%);
    -webkit-filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f3f3f3', endColorstr='#e0e0e0',GradientType=0 );
    -moz-filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f3f3f3', endColorstr='#e0e0e0',GradientType=0 );
    -o-filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f3f3f3', endColorstr='#e0e0e0',GradientType=0 );
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f3f3f3', endColorstr='#e0e0e0',GradientType=0 );
}

.TableTextLeft {
    text-align: left;
}

.TableTextCenter {
    text-align: center;
}

.TableTextRight {
    text-align: right;
}
/*Table Start End*/

.pageHeader {
    display: table;
    width: 100%;
    font-size: 10pt;
    color: #ffffff;
    padding-top: 3px;
    padding-bottom: 2px;
    margin-bottom: 5px;
    text-align: left;
    background: rgb(255,255,255);
    background: -moz-linear-gradient(top, rgba(255,255,255,1) 0, rgba(246,246,246,1) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0,rgba(255,255,255,1)), color-stop(100%,rgba(246,246,246,1)));
    background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0,rgba(246,246,246,1) 100%);
    background: -o-linear-gradient(top, rgba(255,255,255,1) 0,rgba(246,246,246,1) 100%);
    background: -ms-linear-gradient(top, rgba(255,255,255,1) 0,rgba(246,246,246,1) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0,rgba(246,246,246,1) 100%);
    -webkit-filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f6f6f6',GradientType=0 );
    -moz-filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f6f6f6',GradientType=0 );
    -o-filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f6f6f6',GradientType=0 );
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f6f6f6',GradientType=0 );
    border: 1px solid #cfcfcf;
}

.pageHeaderIcon {
    float: left;
    padding-left: 10px;
}

    .pageHeaderIcon img {
        height: 30px;
    }

.pageHeaderHeader {
    float: left;
    margin-top: 7px;
    padding-left: 10px;
    font-weight: bold;
}

.allTextBoxes {
    padding: 2px 0 2px 4px;
    border: 1px solid #CCCCCC;
    -webkit-box-shadow: 1px 1px 1px 0 #CCCCCC inset;
    -ms-box-shadow: 1px 1px 1px 0 #CCCCCC inset;
    box-shadow: 1px 1px 1px 0 #CCCCCC inset;
    -ms-border-radius: 2px;
    border-radius: 2px;
    -webkit-transition: all 1s ease 0.01s;
    -moz-transition: all 1s ease 0.01s;
    -ms-transition: all 1s ease 0.01s;
    -o-transition: all 1s ease 0.01s;
    transition: all 1s ease 0.01s;
    -moz-resize: none;
    -ms-resize: none;
    -o-resize: none;
    resize: none;
}

    .allTextBoxes:hover {
        -webkit-box-shadow: 0 0 5px 2px #CCCCCC inset;
        -ms-box-shadow: 0 0 5px 2px #CCCCCC inset;
        box-shadow: 0 0 5px 2px #CCCCCC inset;
        border: 1px solid #373838;
        -ms-border-radius: 2px;
        border-radius: 2px;
    }

    .allTextBoxes:focus {
        -webkit-box-shadow: 0 0 5px 2px #CCCCCC inset;
        -ms-box-shadow: 0 0 5px 2px #CCCCCC inset;
        box-shadow: 0 0 5px 2px #CCCCCC inset;
        border: 1px solid #373838;
        -ms-border-radius: 2px;
        border-radius: 2px;
    }

.loadMoreMain {
    width: 100%;
    display: table;
}

.loadMoreA {
    display: table;
    margin: 0 auto;
}

    .loadMoreA img {
        float: left;
        margin-top: 5px;
        margin-right: 5px;
    }

    .loadMoreA span {
        float: left;
    }

.campanyLogoContent {
    display: table;
    margin: 0 auto;
}

    .campanyLogoContent img {
        max-height: 100px;
        max-width: 220px;
    }

.scrollup {
    width: 49px;
    height: 49px;
    position: fixed;
    bottom: 50px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    right: 5px;
    display: none;
    z-index: 999;
    text-indent: -9999px;
    background: url('../images/up.png') no-repeat;
}

.allBoxSizing, .allBoxSizing * {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.search, .ploginSearchGeneral, .ploginSearchGeneral input, .ploginSearchLine, .ploginSearchLineLeft, .ploginSearchGeneralText, .ploginSearchGeneralButton {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.ploginSearchLineLeft, .ploginSearchGeneralText, .ploginSearchGeneralButton {
    padding: 0 4px;
}

/*#region Genel Düğme Stilleri - Baslangic */
.button {
    -webkit-box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.5), 0px 1px 2px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.5), 0px 1px 2px rgba(0, 0, 0, 0.15);
    box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.5), 0px 1px 2px rgba(0, 0, 0, 0.15);
    background-color: #eeeeee;
    background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fbfbfb), color-stop(100%, #e1e1e1));
    background: -webkit-linear-gradient(top, #fbfbfb, #e1e1e1);
    background: -moz-linear-gradient(top, #fbfbfb, #e1e1e1);
    background: -o-linear-gradient(top, #fbfbfb, #e1e1e1);
    background: linear-gradient(to bottom, #fbfbfb, #e1e1e1);
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: middle;
    *vertical-align: auto;
    zoom: 1;
    *display: inline;
    border: 1px solid #d4d4d4;
    height: 20px;
    line-height: 20px;
    padding: 0px 20px;
    font-weight: 300;
    font-size: 14px;
    font-family: "Helvetica Neue Light", "Helvetica Neue", "Helvetica", "Arial", "Lucida Grande", sans-serif;
    color: #666666;
    text-shadow: 0 1px 1px white;
    margin: 0px 2px 0px 2px;
    text-decoration: none;
    text-align: center;
}

    .button:hover {
        background-color: #eeeeee;
        background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #dcdcdc));
        background: -webkit-linear-gradient(top, #ffffff, #dcdcdc);
        background: -moz-linear-gradient(top, #ffffff, #dcdcdc);
        background: -o-linear-gradient(top, #ffffff, #dcdcdc);
        background: linear-gradient(to bottom, #ffffff, #dcdcdc);
    }

    .button:active {
        -webkit-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.3), 0px 1px 0px white;
        -moz-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.3), 0px 1px 0px white;
        box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.3), 0px 1px 0px white;
        text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.4);
        background: #eeeeee;
        color: #bbbbbb;
    }

    .button:focus {
        outline: none;
    }

input.button, button.button {
    height: 34px;
    cursor: pointer;
    -webkit-appearance: none;
}

.button-block {
    display: block;
}

.button-rounded {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
}

.button-primary {
    background: -webkit-gradient(linear,50% 0,50% 100%,color-stop(0,#3d3f81),color-stop(100%,#282a73));
    background: -webkit-linear-gradient(top,#3d3f81,#282a73);
    background: -moz-linear-gradient(top,#3d3f81,#282a73);
    background: -o-linear-gradient(top,#3d3f81,#282a73);
    background: linear-gradient(to bottom,#3d3f81,#282a73);
    background-color: #282a73;
    border-color: #212360;
    color: #ffffff;
    text-shadow: 0 -1px 1px rgba(0,40,50,.35);
}

    .button-primary:hover {
        background: -webkit-gradient(linear,50% 0,50% 100%,color-stop(0,#2f3186),color-stop(100%,#282a73));
        background: -webkit-linear-gradient(top,#2f3186,#282a73);
        background: -moz-linear-gradient(top,#2f3186,#282a73);
        background: -o-linear-gradient(top,#2f3186,#282a73);
        background: linear-gradient(to bottom,#2f3186,#282a73);
        background-color: #353899;
        border-color: #212360;
    }

    .button-primary:active {
        background: #212360;
        color: #ffffff;
    }

.button-caution {
    background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e8543f), color-stop(100%, #d9331a));
    background: -webkit-linear-gradient(top, #e8543f, #d9331a);
    background: -moz-linear-gradient(top, #e8543f, #d9331a);
    background: -o-linear-gradient(top, #e8543f, #d9331a);
    background: linear-gradient(to bottom, #e8543f, #d9331a);
    background-color: #e54028;
    border-color: #c22d18;
    color: white;
    text-shadow: 0 -1px 1px rgba(103, 24, 13, 0.35);
}

    .button-caution:hover {
        background-color: #e54028;
        background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #eb6855), color-stop(100%, #d9331a));
        background: -webkit-linear-gradient(top, #eb6855, #d9331a);
        background: -moz-linear-gradient(top, #eb6855, #d9331a);
        background: -o-linear-gradient(top, #eb6855, #d9331a);
        background: linear-gradient(to bottom, #eb6855, #d9331a);
    }

    .button-caution:active {
        background: #cd5240;
        color: #952312;
    }

.button-action {
    background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #8fcf00), color-stop(100%, #6b9c00));
    background: -webkit-linear-gradient(top, #8fcf00, #6b9c00);
    background: -moz-linear-gradient(top, #8fcf00, #6b9c00);
    background: -o-linear-gradient(top, #8fcf00, #6b9c00);
    background: linear-gradient(to bottom, #8fcf00, #6b9c00);
    background-color: #7db500;
    border-color: #5a8200;
    color: white;
    text-shadow: 0 -1px 1px rgba(19, 28, 0, 0.35);
}

    .button-action:hover {
        background-color: #7db500;
        background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #a0e800), color-stop(100%, #6b9c00));
        background: -webkit-linear-gradient(top, #a0e800, #6b9c00);
        background: -moz-linear-gradient(top, #a0e800, #6b9c00);
        background: -o-linear-gradient(top, #a0e800, #6b9c00);
        background: linear-gradient(to bottom, #a0e800, #6b9c00);
    }

    .button-action:active {
        background: #76a312;
        color: #374f00;
    }
/*#endregion Genel Düğme Stilleri - Bitis */

.imgInvert {
    -webkit-filter: brightness(0) invert(1);
    -moz-filter: brightness(0) invert(1);
    -o-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

@media only screen and (min-device-width : 500px) and (max-device-width : 1023px) {
    .customerSelectRes {
        width: 95% !important;
    }

    .customerTextbox {
        width: 95% !important;
    }

    .ploginSearchGeneralCheck {
        margin-left: 15%;
    }

    .mobileBreak {
        -moz-min-width: 40px !important;
        -ms-min-width: 40px !important;
        -o-min-width: 40px !important;
        -webkit-min-width: 40px !important;
        min-width: 40px !important;
        width: auto !important;
        -moz-word-break: break-all !important;
        -o-word-break: break-all !important;
        word-break: break-all !important;
    }
}

@media only screen and (min-device-width : 224px) and (max-device-width : 500px) {
    .customerSelectRes {
        width: 95% !important;
        padding: 1% !important;
    }

    .customerTextbox {
        width: 95% !important;
    }

    .ploginSearchGeneralCheck {
        margin-left: 0;
        -moz-min-width: 240px;
        -ms-min-width: 240px;
        -o-min-width: 240px;
        -webkit-min-width: 240px;
        min-width: 240px;
        width: 100%;
        display: table;
    }

    .mobileHidden {
        display: none;
    }

    .mobileBreak {
        -moz-min-width: 40px !important;
        -ms-min-width: 40px !important;
        -o-min-width: 40px !important;
        -webkit-min-width: 40px !important;
        min-width: 40px !important;
        width: auto !important;
        -moz-word-break: break-all !important;
        -o-word-break: break-all !important;
        word-break: break-all !important;
    }

    .ploginSearchLineLeft, .ploginSearchGeneralText, .ploginSearchGeneralButton {
        display: table;
    }

    .ploginSearchLineLeft {
        font-size: 15px;
        padding-top: 2px;
        width: 30%;
        float: left;
    }

    .ploginSearchGeneralText {
        width: 70%;
        float: left;
    }

    .ploginSearchGeneralButton {
        width: 20%;
        float: right;
        text-align: right;
        margin: 5px 4px 5px 0;
    }

    .customerSelectRes {
        width: 95% !important;
        padding: 1% !important;
    }

    .customerTextbox {
        width: 100% !important;
        height: 30px;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    .mobileHidden {
        display: none;
    }

    .ploginSearchLineLeft, .ploginSearchGeneralText, .ploginSearchGeneralButton {
        width: 100%;
        margin: 2px 0;
    }

    .mBtnNew {
        width: 100%;
        line-height: 30px;
        height: 30px;
        padding: 0 !important;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    .mbtnWitdh {
        padding: 3px 3px !important;
        line-height: 10px !important;
    }

    .mobileBreak {
        -moz-min-width: 40px !important;
        -ms-min-width: 40px !important;
        -o-min-width: 40px !important;
        -webkit-min-width: 40px !important;
        min-width: 40px !important;
        width: auto !important;
        -moz-word-break: break-all !important;
        -o-word-break: break-all !important;
        word-break: break-all !important;
    }
}
