/*.smart-select .item-after {
    max-width: 100%;
}*/


/*.ios .list .item-after{
    color:#333;
    padding:0;
}*/


/*.smart-select-border{
    border:1px solid #e7e7e7;
}*/

.hedef-clear-button-one-custom-button:before {
    width: 15px !important;
    margin-left: -9px !important;
}

.hedef-right-input-button {
    padding: 5px;
    cursor: pointer;
}

.ios .list textarea.resizable {
    height: 88px;
}

.list.hedef-used-stocks li {
    /*background-color: #fff;
    border-top: 1px solid #e7e7e7;
    border-bottom: 1px solid #e7e7e7;
    color: #333;*/
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
    /* margin-bottom: 15px; */
}

.hedef-notification-badge {
    font-size: 10px !important;
    position: absolute;
    top: 9px;
    width: 2em;
    height: 2em !important;
    line-height: 2em !important;
    border-radius: 50% !important;
    text-align: center;
    color: #fff;
    background: #c10000;
    padding: 0 !important;
    font-weight: bold;
}

.alert {
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
}

.alert-primary {
    color: #004085;
    background-color: #cce5ff;
    border-color: #b8daff;
}

.alert-secondary {
    color: #383d41;
    background-color: #e2e3e5;
    border-color: #d6d8db;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

.alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}

.alert-dark {
    color: #1b1e21;
    background-color: #d6d8d9;
    border-color: #c6c8ca;
}

.hedef-list-button {
    display: flex;
    border: 1px solid #e7e7e7;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
    color: white !important;
}

.hedef-sub-item-title {
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(100% - 100px);
    line-height: 21px;
}


/*Stok Liste Detay*/

.green-grid {
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    border-collapse: collapse;
    width: 100%;
}

.green-grid td,
.green-grid th {
    border: 1px solid #ddd;
    padding: 8px;
}

.green-grid tr:nth-child(even) {
    background-color: #f2f2f2;
}

.green-grid tr:hover {
    background-color: #ddd;
}

#stokListeDepoDetail th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: #4CAF50;
    color: white;
}


/*Stok Liste Detay*/

.swipeout-actions-left {
    margin-left: 2px;
}

.swipeout-actions-right {
    margin-right: 2px;
}

.is-takip-badge-label {
    background-color: red;
    color: white;
    padding: 2px 10px;
    font-size: 11px;
    border-radius: 3px;
    font-weight: bold;
}

.documents-container .item {
    width: 150px;
    background-color: gainsboro;
    border-radius: 5px;
    border: 1px solid gray;
    padding: 3px;
    text-align: center;
}


/*SKELETON*/


/* 
Animated skeleton screen using CSS.

Create shapes using gradients that simulate solids.

Use `:empty` pseduo-class to show skeleton screen background only while container has no content (ex: for the "loading" state). When content is added to the container element, the pseudo-class selector won't match anymore and the skeleton screen will be removed automatically; no need to toggle a separate class on the container.

See: https://developer.mozilla.org/en-US/docs/Web/CSS/:empty

Animating one layer of the background which is a tilted linear gradient with white in the middle to achieve shine effect.
*/

.demooo:empty {
    margin: auto;
    width: 500px;
    height: 100px;
    /* change height to see repeat-y behavior */
    background-image: radial-gradient( circle 25px at 50px 50px, lightgray 99%, transparent 0), linear-gradient( 100deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 80%), linear-gradient( lightgray 10px, transparent 0), linear-gradient( lightgray 10px, transparent 0), linear-gradient( lightgray 10px, transparent 0), linear-gradient( lightgray 10px, transparent 0);
    background-repeat: repeat-y;
    background-size: 100px 80px, /* circle */
    50px 200px, /* highlight */
    100px 20px, 190px 200px, 170px 200px, 250px 200px;
    background-position: 0 0, /* circle */
    0 0, /* highlight */
    120px 0, 120px 40px, 120px 80px, 120px 120px;
    animation: shine 1s infinite;
}

@keyframes shine {
    to {
        background-position: 0 0, 100% 0, /* move highlight to right */
        120px 0, 120px 40px, 120px 80px, 120px 120px;
    }
}


/*SKELETON*/