﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification\ 
for details on configuring this project to bundle and minify static web assets. */
:root {
    /*own*/
    --color-common: #2f3640;
    --color-darkCoco: #bda25e;
    --color-darkCocoH: #816a2f;
    --color-library: #4b7bec;
    --color-libraryH: #445e9b;
    --color-oranges: #f7b731;
    --color-orangesH: #e3aa31;
    --color-sea: #0041f3;
}   
/*--------------Button--------------------------*/

.btn-ownset {
    color: var(--color-common);
    background-color: transparent;
    border-color: var(--color-common);
}

    .btn-ownset:hover {
        color: #fff !important;
        background-color: var(--color-common);
        border-color: var(--color-common);
    }

.btn-optionCoco {
    color: #fff !important;
    background-color: var(--color-darkCoco);
    border-color: var(--color-darkCoco);
    min-width: 70px;
}

    .btn-optionCoco:hover {
        color: #fff !important;
        background-color: var(--color-darkCocoH);
        border-color: var(--color-darkCocoH);
    }

.btn-optionlibrary {
    color: #fff !important;
    background-color: var(--color-library);
    border-color: var(--color-library);
    min-width: 70px;
}

    .btn-optionlibrary:hover {
        color: #fff !important;
        background-color: var(--color-libraryH);
        border-color: var(--color-libraryH);
    }

.btn-optionoranges {
    color: #fff !important;
    background-color: var(--color-oranges);
    border-color: var(--color-oranges);
    min-width: 70px;
}

    .btn-optionoranges:hover {
        color: #fff !important;
        background-color: var(--color-orangesH);
        border-color: var(--color-orangesH);
    }

.page-item.active .page-link {
    z-index: 1;
    color: #fff;
    background-color: var(--color-common);
    border-color: var(--color-common);
}
/*--------------Color--------------------------*/
.gray {
    color: gray;
}
.bg-gray {
    background-color: gray;
}

.rosybrown {
    color: rosybrown
}
.forestgreen {
    color: yellowgreen !important
}
.orangered {
    color: orange
} 
.sea {
    color: var(--color-sea) !important
}
/*--------------Bg Color--------------------------*/
.bg-black {
    background-color: black
}

.halfblack {
    background-color: #2f3640
}

.blackgray {
    background-color: #576574
}

.strom {
    background-color: #0a3d62
}

.lightblue {
    background-color: #c8d6e5
}

.bg-primary {
    background-color: var(--color-common) !important;
    color: white;
}

.bg-coco {
    background-color: var(--color-darkCoco) !important;
    color: white;
}

.nnav {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 0;
    list-style: none;
    font-size: larger;
}
/*--------------Data Table--------------------------*/
.right-aligned-cell {
    text-align: right
}
/*--------------Icon--------------------------*/
.icon {
    font-size: 2.0rem;
}

.smallicon {
    font-size: 1.5rem;
}

.verysmallicon {
    font-size: 1.0rem;
}

/*--------------Border--------------------------*/
.borderdarkgray {
    border-color: darkgray
}

.borderdarkcyan {
    border-color: darkcyan
}

.borderdarkslategrey {
    border-color: darkslategrey
}

.border-gray {
    border-color: gray
}
/*--------------Text--------------------------*/
.bold {
    font-weight: 700;
}

.smallbold {
    font-weight: 500;
}

.txtred {
    color: red !important;
    background-color: none !important;
}

.txtgreen {
    color: green
}

.txtdarkred {
    color: #ce3140 !important;
}

/*--------------Line--------------------------*/
.vhrLine {
    border-right: 1px solid #333;
    height: 100%;
}

.line-through {
    text-decoration: line-through
}

/*--------------Start placeholder--------------------------*/
form .form-control::-webkit-input-placeholder {
    color: #b2bec3 !important;
    font-style: italic;
}

form .form-control::-moz-placeholder {
    color: #b2bec3 !important;
    font-style: italic;
}

form .form-control:-ms-input-placeholder {
    color: #b2bec3 !important;
    font-style: italic;
}

form .form-control:placeholder {
    color: #b2bec3 !important;
    font-style: italic;
}
/*--------------End placeholder--------------------------*/

.ticket {
    font-family: Arial;
    font-size: 12px;
    font-weight: bold;
    position: relative !important;
    background: #c6af7c;
    padding: 10px 10px;
}

    .ticket:after {
        content: "";
        position: absolute !important;
        z-index: 100;
        top: 0;
        left: 0;
        border-right: #fff 20px solid;
        border-bottom: #fff 20px solid;
        -moz-border-radius: 0 0 20px 0;
        -webkit-border-radius: 0 0 20px 0;
        border-radius: 0 0 20px 0;
    }

    .ticket:before {
        content: "";
        position: absolute !important;
        z-index: 100;
        top: 0;
        right: 0;
        border-left: #fff 20px solid;
        border-bottom: #fff 20px solid;
        -moz-border-radius: 0 0 0 20px;
        -webkit-border-radius: 0 0 0 20px;
        border-radius: 0 0 0 20px;
    }

    .ticket .row {
        outline: 1px rgba(255,255,255,0.4) dashed;
        border: 1px white;
        padding: 4px 10px 4px 20px;
        text-decoration: none;
        color: white;
        white-space: nowrap;
    }

    .ticket a:after {
        content: "";
        position: absolute !important;
        z-index: 100;
        bottom: 0;
        left: 0;
        border-right: #fff 20px solid;
        border-top: #fff 20px solid;
        -moz-border-radius: 0 20px 0 0;
        -webkit-border-radius: 0 20px 0 0;
        border-radius: 0 20px 0 0;
    }

    .ticket a:before {
        content: "";
        position: absolute !important;
        z-index: 1000;
        bottom: 0;
        right: 0;
        border-left: #fff 20px solid;
        border-top: #fff 20px solid;
        -moz-border-radius: 20px 0 0 0;
        -webkit-border-radius: 20px 0 0 0;
        border-radius: 20px 0 0 0;
    }

/*---------------------------------------------*/
.btn {
    margin:unset !important;
}
table.table td {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
.navbar.navbar-dark .breadcrumb .nav-item .nav-link, .navbar.navbar-dark .navbar-nav .nav-item .nav-link {
    color:  gray;
    -webkit-transition: .35s;
    -o-transition: .35s;
    /* transition: .35s; */
}
.no-padding{
    padding:0 !important;
}

.alert {
    padding: 0.5rem 1rem;
}
.validation-summary-errors ul {
    padding-left: 15px;
    margin: 0;
}
.card {
    -webkit-box-shadow: 0 3px 5px rgba(0,0,0,0.1);
    box-shadow: 0 3px 5px rgba(0,0,0,0.1);
    border: 0;
    border-top: 3px solid #d2d6de;
}
/*bootstrap modal open loading animation*/
.modal-backdrop::before {
    font-family: "FontAwesome";
    content: "\f1ce";
    font-size: 50px;
    text-align: center;
    display: block;
    margin-top: 20%;
    color: #fff;
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
}

.flatpickr input{
    background: #fff !important;
}

.input-group.flatpickr input:nth-child(2) {
    border-radius: .25rem 0 0 .25rem;
}

.fullpayment {
    background: #f3ffdb;
}
.pendingpayment {
    background: #fff4e0;
}
@media (min-width: 1200px) {
    .modal-xl {
        width: 100%;
        max-width: 1300px;
    }
}

/*loading fadin animation*/
@-webkit-keyframes twinkly {
    from {opacity: 1;}
    to {opacity: 0.2;}
}

@-moz-keyframes twinkly {
    from {opacity: 1;}
    to {opacity: 0.2;}
}

@-ms-keyframes twinkly {
    from {opacity: 1;}
    to {opacity: 0.2;}
}

@keyframes twinkly {
    from {opacity: 1;}
    to {opacity: 0.2;}
}

.twinkle {
    -webkit-animation: twinkly 1s alternate infinite;
    -moz-animation: twinkly 1s alternate infinite;
    -ms-animation: twinkly 1s alternate infinite;
    animation: twinkly 1s alternate infinite;
}


.dt-datetime {
    font-size: 13px;
    font-style: italic;
}

.cursor-pointer{
    cursor: pointer;
}