﻿label.is-invalid {
    color: #f93b7a !important;
    width: 100%;
}

.full-height {
    min-height: 75vh;
}

.margin-top-10 {
    margin-top: 10px;
}

.margin-top-15 {
    margin-top: 15px;
}

.margin-top-35 {
    margin-top: 35px;
}

.margin-top-100 {
    margin-top: 100px;
}

.margin-right-6 {
    margin-right: 6px !important;
}

div.app-search.margin-top-15 > a {
    line-height: 36px;
}

.header-row .btn {
    margin-left: 5px;
}

#time {
    width: 100%;
    color: #fff;
    font-size: 60px;
    margin-bottom: 80px;
    display: inline-block;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
}

.dataTables_filter {
    max-width: 50%;
    float: right;
}

.switch.btn {
    width: 100% !important;
}

@media print {
    html, body {
        height: 100vh;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden;
    }

    #btn-paid {
        display: none;
    }

    #invoiceTable {
        width: auto !important;
    }

    #invoiceNote {
        border: none;
        background-color: transparent;
        resize: none;
        outline: none;
    }

    #invoiceTable_filter {
        display: none;
    }

    #invoiceTable_info {
        display: none;
    }

    .dt-buttons {
        display: none;
    }

    #remittanceNote {
        border: none;
        background-color: transparent;
        resize: none;
        outline: none;
    }
}

/* Requried Field style */
.required-field:after {
    content: " *";
    font-weight: bold;
    color: red;
}

/* Checkbox Button style */
.btn-checkbox {
    font-size: 12px;
    margin-bottom: 5px;
}

/* Depo Edit page */
.add-warehouse:hover,
.add-warehouse:focus {
    color: white;
}

.add-stack:hover,
.add-stack:focus {
    color: white;
}

.delete-stack {
    border: none;
    background: transparent;
}

    .delete-stack > i {
        font-size: 24px;
        color: #f93b7a;
    }

.warehouse-list {
    list-style: none;
    padding-left: 0;
}

.warehouse-list-item {
    border: 1px solid #f2f5f7;
    background: #f2f5f7;
    border-radius: 4px;
    padding: 20px 10px;
}

.stack-list {
    list-style: none;
    padding-left: 0;
}

/* Invoice | Remittance | Credit Note - Custom styles */
.msg-padding {
    padding: 8px 9px !important;
}

.btn-padding {
    padding: 4.6px 9px !important;
}

/* Overlay & Loader */
.overlay {
    position: fixed;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 1050;
    opacity: 1;
    cursor: pointer;
}

.loader {
    position: absolute;
    display: block;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: 120px;
    height: 120px;
    margin: -76px 0 0 -76px;
    border: 16px solid #f2f5f7;
    border-radius: 50%;
    border-top: 16px solid rgb(32, 32, 32);
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hideButton {
    display: none;
}

.btn-refresh {
    position: absolute;
    top: -10px;
    right: 20px;
    padding: 2px 5px;
}