/* :: Import Fonts */
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700");
@font-face {
    font-family:"ProximaNova Regular";
    src:url('../fonts/Mark Simonson - Proxima Nova Regular.otf');
    font-weight: normal;
    font-style: normal; }
@font-face {
    font-family: 'ProximaNova Bold';
    src:url('../fonts/Mark Simonson - Proxima Nova Bold.otf');
    font-weight: normal;
    font-style: normal; }
/* :: Import All CSS */
/* :: Base CSS */

* {
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
}

html{
    scroll-behavior: smooth;
}

body {
    font-family: "ProximaNova Regular", arial, sans-serif;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000000;
    font-weight: 500;
    line-height: 1.3;
    font-family: "ProximaNova Bold", arial, sans-serif; }

p {
    color: #000000;
    font-size: 14px;
    line-height: 1.4;
    font-family: "ProximaNova Regular", arial, sans-serif;
}

small{
    color: #878787;
}

a {
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    text-decoration: none;
    outline: none;
    font-size: 14px;
    font-family: "ProximaNova Regular", arial, sans-serif;
    color: #000000;
}
a:hover, a:focus {
    font-family: "ProximaNova Regular", arial, sans-serif;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    text-decoration: none;
    outline: none;
    color: #E8B12D;
}

ul,
ol {
    margin: 0; }
ul li,
ol li {
    list-style: none; }

img {
    height: auto;
    max-width: 100%; }


@media screen and (min-width: 320px) and (max-width: 767px) and (orientation: portrait) {
    #page-top {
        /*transform: rotate(-90deg);*/
        /*transform-origin: left top;*/
        /*width: 100vh;*/
        /*height: 100vw;*/
        /*overflow-x: hidden;*/
        /*position: absolute;*/
        /*top: 100%;*/
        /*left: 0;*/
    }
}

#page-top{
    display: initial !important;
}

#divHomePage {
    /*background-image: url("../images/HomePage_background.jpg");*/
    background-image: linear-gradient(315deg, #0d6efd 0%, #f5f7f6 74%);
}

.cover-container {
    max-width: 42em;
}

/*
 * Header
 */
.masthead {
    margin-bottom: 2rem;
}

.masthead-brand {
    margin-bottom: 0;
    color: #fff;
}

.nav-masthead .nav-link {
    padding: .25rem 0;
    font-weight: 700;
    color: rgba(255, 255, 255, .5);
    background-color: transparent;
    border-bottom: .25rem solid transparent;
}

.nav-masthead .nav-link:hover,
.nav-masthead .nav-link:focus {
    border-bottom-color: rgba(255, 255, 255, .25);
}

.nav-masthead .nav-link + .nav-link {
    margin-left: 1rem;
}

.nav-masthead .active {
    color: #fff;
    border-bottom-color: #fff;
}

@media (min-width: 48em) {
    .masthead-brand {
        float: left;
    }
    .nav-masthead {
        float: right;
    }
}

/*
 * Cover
 */
.cover {
    padding: 0 1.5rem;
}
.cover .btn-lg {
    padding: .75rem 1.25rem;
    font-weight: 700;
}


/*
 * Footer
 */
.mastfoot {
    color: rgba(255, 255, 255, .5);
}

:root {
    --input-padding-x: .75rem;
    --input-padding-y: .75rem;
    --white:#FFF;
    --black:#000;
    --dark:#1b1b1b;
    --gray:rgba(1,1,1,0.6);
    --lite-gray:rgb(249, 251, 252);
    --lite:rgba(255,255,255,0.6);
    --primary:#0F2144;
    /*--primary:#003153;*/
    --primary_dark:#002244;
}

.form-signin {
    width: 100%;
    max-width: 420px;
    padding: 15px;
    margin: 0 auto;
    text-align: left;
}

.form-signin i {
    border-radius: 0.85rem!important;
}

.form-label-group {
    position: relative;
    margin-bottom: 1rem;
}

.form-label-group > input,
.form-label-group > label {
    padding: var(--input-padding-y) var(--input-padding-x);
}

.form-label-group input::-webkit-input-placeholder {
    font-size: 13px;
    font-weight: bold;
}

.form-label-group input:-ms-input-placeholder {
    font-weight: bold;
}

.form-label-group input::-ms-input-placeholder {
    font-weight: bold;
}

.form-label-group input::-moz-placeholder {
    font-weight: bold;
}

.form-label-group input::placeholder {
    font-weight: bold;
}

#inputLabel {
    color: #FF7F7F;
}

/* homepage */
.feather {
    width: 16px;
    height: 16px;
    vertical-align: text-bottom;
}

.sidebar {
    /*position: fixed;*/
    /*top: 0;*/
    /*bottom: 0;*/
    /*left: 0;*/
    /*z-index: 100; !* Behind the navbar *!*/
    /*padding: 0;*/
    /*box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);*/
    /*background: linear-gradient(0deg, #002244, #003153) !important;*/
    background-color: var(--primary) !important;
}

/*.sidebar-sticky {*/
/*    position: -webkit-sticky;*/
/*    position: sticky;*/
/*    top: 48px; !* Height of navbar *!*/
/*    height: calc(100vh - 48px);*/
/*    padding-top: .5rem;*/
/*    overflow-x: hidden;*/
/*    overflow-y: auto; !* Scrollable contents if viewport is shorter than content. *!*/
/*}*/

/*.sidebar .nav-link {*/
/*    font-weight: 500;*/
/*    color: #333;*/
/*}*/

/*.sidebar .nav-link .feather {*/
/*    margin-right: 4px;*/
/*    color: #999;*/
/*}*/

/*.sidebar .nav-link.active {*/
/*    color: #007bff;*/
/*}*/

/*.sidebar .nav-link:hover .feather,*/
/*.sidebar .nav-link.active .feather {*/
/*    color: inherit;*/
/*}*/

/*.sidebar-heading {*/
/*    font-size: .75rem;*/
/*    text-transform: uppercase;*/
/*}*/

/*.navbar-brand {*/
/*    padding-top: .75rem;*/
/*    padding-bottom: .75rem;*/
/*    font-size: 1rem;*/
/*    !*background-color: rgba(0, 0, 0, .25);*!*/
/*    !*box-shadow: inset -1px 0 0 rgba(0, 0, 0, .25);*!*/
/*}*/

/*.navbar .form-control {*/
/*    padding: .75rem 1rem;*/
/*    border-width: 0;*/
/*    border-radius: 0;*/
/*}*/

/*.form-control-dark {*/
/*    color: #fff;*/
/*    !*background-color: rgba(255, 255, 255, .1);*!*/
/*    border-color: rgba(255, 255, 255, .1);*/
/*}*/

/*.form-control-dark:focus {*/
/*    border-color: transparent;*/
/*    box-shadow: 0 0 0 3px rgba(255, 255, 255, .25);*/
/*}*/

/*.border-top { border-top: 1px solid #e5e5e5; }*/
/*.border-bottom { border-bottom: 1px solid #e5e5e5; }*/

/*.text-black {*/
/*    color: #111111 !important;*/
/*}*/

/*main{*/
/*    color: black;*/
/*}*/

/*.txt-edited-qty{*/
/*    width: 100px;*/
/*}*/

.fa-sign-out:before{content:"\f08b"}

th, td { white-space: nowrap !important; }
div.dataTables_wrapper {
    margin: 0 auto;
}
div.container {
    width: 80%;
}

.dtfc-fixed-left{
    /*left: -5px !important;*/
}
.dtfc-right-top-blocker{
    width: 17px !important;
}

#suppurdersku select{
    width: 270px;
}

#fcst li:hover{
    border: none !important;
    margin: initial !important;
    cursor: pointer;
}

#fcst table.dataTable tbody tr>.dtfc-fixed-left{
    background-color: initial !important;
}

tr.table-active td{
    font-weight: bold;
}

.dt-buttons{
    float: left;
}

.text-decoration-line-through{
    text-decoration: line-through !important;
}

#fcst .btn-save, #fcst .dt-buttons, #network .btn-save, #rcs .btn-save{
    display: none;
}

.spinner-square, .spinner-square-copy {
    display: flex;
    flex-direction: row;
    width: 90px;
    height: 120px;
}

.spinner-square > .square, .spinner-square-copy > .square {
    width: 17px;
    height: 80px;
    margin: auto auto;
    border-radius: 4px;
}

.square-1 {
    animation: square-anim 1200ms cubic-bezier(0.445, 0.05, 0.55, 0.95) 0s infinite;
}

.square-2 {
    animation: square-anim 1200ms cubic-bezier(0.445, 0.05, 0.55, 0.95) 200ms infinite;
}

.square-3 {
    animation: square-anim 1200ms cubic-bezier(0.445, 0.05, 0.55, 0.95) 400ms infinite;
}

@keyframes square-anim {
    0% {
        height: 80px;
        background-color: rgb(111, 163, 240);
    }
    20% {
        height: 80px;
    }
    40% {
        height: 120px;
        background-color: rgb(111, 200, 240);
    }
    80% {
        height: 80px;
    }
    100% {
        height: 80px;
        background-color: rgb(111, 163, 240);
    }
}

.invisible{
    visibility: hidden;
}

/* Page Error */
.page-error .outer {
    background: #f0f0f0 !important;
}
.page-error .outer {
    position: absolute;
    top: 0;
    display: table;
    width: 100%;
    height: 100%;
}
.page-error .outer .middle {
    display: table-cell;
    vertical-align: middle;
}
.page-error .outer .middle .inner {
    width: 300px;
    margin-right: auto;
    margin-left: auto;
}
.page-error .outer .middle .inner .inner-circle {
    height: 300px;
    border-radius: 50%;
    background-color: #ffffff;
}
.page-error .outer .middle .inner .inner-circle:hover i {
    /*color: #4e73df !important;*/
    color: #041562 !important;
    background-color: #f5f5f5;
    /*box-shadow: 0 0 0 15px #4e73df;*/
    box-shadow: 0 0 0 15px #041562;
}
.page-error .outer .middle .inner .inner-circle:hover span {
    /*color: #4e73df;*/
    color: #041562;
}
.page-error .outer .middle .inner .inner-circle i {
    font-size: 5em;
    line-height: 1em;
    float: right;
    width: 1.6em;
    height: 1.6em;
    margin-top: -.7em;
    margin-right: -.5em;
    padding: 20px;
    -webkit-transition: all .4s;
    transition: all .4s;
    text-align: center;
    color: #f5f5f5!important;
    border-radius: 50%;
    /*background-color: #4e73df;*/
    background-color: #041562;
    box-shadow: 0 0 0 15px #f0f0f0;
}
.page-error .outer .middle .inner .inner-circle span {
    font-size: 11em;
    font-weight: 700;
    line-height: 1.2em;
    display: block;
    -webkit-transition: all .4s;
    transition: all .4s;
    text-align: center;
    color: #e0e0e0;
}
.page-error .outer .middle .inner .inner-status {
    font-size: 20px;
    display: block;
    margin-top: 20px;
    margin-bottom: 5px;
    text-align: center;
    /*color: #4e73df;*/
    color: #041562;
}
.page-error .outer .middle .inner .inner-detail {
    line-height: 1.4em;
    display: block;
    margin-bottom: 10px;
    text-align: center;
    color: #999999;
}

@media screen and (max-width: 767px) {
    #dataTable_wrapper .dt-button-collection{
        top: 10% !important;
        background-color: white !important;
        left: initial !important;
    }

    div.dt-button-collection .dt-button{
        min-width: initial !important;
    }

    .dtfc-fixed-left{
        position: initial !important;
        background-color: initial !important;
    }
}

select option[selected]{
    font-weight: bold;
}

.row-import-table .table-responsive {
    max-height: 480px;
}

#importTable .badge, #rcs .badge{
    width: 100px;
}

.overlay {
    /*background-color: rgba(0,0,0,0.65);*/
    /*background-color: #084298;*/
    /*background-image: linear-gradient(315deg, #4e73df 0%, #f3f3f5 74%);*/
    /*background: linear-gradient(30deg , #293c74, #4e73df) !important;*/
    /*background-color: #36096d;*/
    /*background-image: linear-gradient(315deg, #36096d 0%, #37d5d6 74%);*/
    /*background-color: #2b4162;*/
    /*background-image: linear-gradient(315deg, #2b4162 0%, #12100e 74%);*/
    /*background-color: #2a2a72;*/
    /*background-image: linear-gradient(315deg, #2a2a72 0%, #009ffd 74%);*/
    /*background-color: #182b3a;*/
    /*background-image: linear-gradient(315deg, #182b3a 0%, #20a4f3 74%);*/
    background-color: #0d6efd;
    background-image: linear-gradient(315deg, #0d6efd 0%, #f5f7f6 74%);
    /*background-color: #f8f9fc;*/
    /*background-image: linear-gradient(147deg, #f8f9fc 0%, #dee4ea 74%);*/

}

.card {
    /*background: transparent;*/
    /*border-radius: 2px;*/
    /*display: inline-block;*/
    /*height: 300px;*/
    /*margin: 1rem;*/
    /*position: relative;*/
    /*width: 300px;*/
}

.fa-dfp {
    color: #fff;
    background-color: rgba(13, 110, 253, 0.59) !important;
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.19), 0 6px 6px rgba(13, 110, 253, 0.23);
}

/*input, select, #btnLogin, #btnChangePass, textarea, div.dt-buttons .dt-button{*/
input, select, #btnLogin, #btnChangePass, textarea{
    background-color: var(--lite) !important;
    border-width: 1px !important;
    border-color: var(--primary) !important;
}

input:disabled, select:disabled, textarea:disabled{
    background-color: #eaecf4 !important;
}

#btnLogin{
    /*box-shadow: 0 0 0 .2rem rgba(78,115,223,.25) !important;*/
    /*color: rgba(13, 110, 253, 0.69) !important;*/
}

/*#btnLogin:hover, div.dt-buttons .dt-button:hover{*/
#btnLogin:hover{
    color: var(--white);
    background-color: var(--primary);
}

input:focus{
    border-width: 0 !important;
}

.text-black{
    color: #000000 !important;
}

.sidebar-dark .sidebar-heading {
    margin: 10px 0;
}

.sidebar-dark .nav-item.active .nav-link {
    background-color: #0342C3;
    border-radius: 10px;
    /*margin: 0 20px 0 10px;*/
    /*width: 85%;*/
    /*padding: 0.25rem 0 0.25rem 0.4rem;*/
}

.sidebar hr.sidebar-divider{
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.nav-masthead .active{
    border-bottom-color: rgba(78,115,223,.25) !important;
}

.text-gray-800{
    font-weight: 800;
}

.small-dfp {
    font-size: .875rem;
}

.card, div.dtfc-left-top-blocker, div.dtfc-right-top-blocker{
    background-color: transparent !important;
}

.supplier table.dataTable tbody tr.table-active td{
    background-color: #ddd !important;
}

table.dataTable tbody tr.table-active>.dtfc-fixed-left, table.dataTable tbody tr.table-active>.dtfc-fixed-right,
table.dataTable thead tr.table-active>.dtfc-fixed-left, table.dataTable thead tr.table-active>.dtfc-fixed-right, table.dataTable tfoot tr.table-active>.dtfc-fixed-left, table.dataTable tfoot tr.table-active>.dtfc-fixed-right{
    background-color: #EDF4FF !important;
}

/*table.dataTable tbody tr.table-warning>.dtfc-fixed-left, table.dataTable tbody tr.table-warning>.dtfc-fixed-right,*/
/*table.dataTable thead tr.table-warning>.dtfc-fixed-left, table.dataTable thead tr.table-warning>.dtfc-fixed-right, table.dataTable tfoot tr.table-warning>.dtfc-fixed-left, table.dataTable tfoot tr.table-warning>.dtfc-fixed-right{*/
/*    background-color: #fceec9 !important;*/
/*}*/

table.dataTable tbody tr>.dtfc-fixed-left, table.dataTable tbody tr>.dtfc-fixed-right,
table.dataTable thead tr>.dtfc-fixed-left, table.dataTable thead tr>.dtfc-fixed-right, table.dataTable tfoot tr>.dtfc-fixed-left, table.dataTable tfoot tr>.dtfc-fixed-right{
    background-color: #f8f9fc;
}

/*#dataTable_wrapper, #dataTable1_wrapper, #dataTable2_wrapper, #dataTable3_wrapper{*/
    /*padding: .25rem;*/
    /*min-height: 350px;*/
/*}*/

.btn-dfp, #dataTable_wrapper .btn-dfp{
    /*color: #0096ff !important;*/
    color: #f8f9fc !important;
    border-color: var(--primary) !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    /*background-color: #f8f9fc !important;*/
    background-color: var(--dark) !important;
    margin-bottom: .25rem !important;
}

#dataTable_wrapper button, .modal button{
    color: var(--primary);
    border-color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    background-color: #f8f9fc;
    margin-bottom: .25rem;
}

#dataTable_wrapper button:focus, #dataTable_wrapper3 button:focus{
    box-shadow: none !important;
    border-width: 0 !important;
}

#dataTable_wrapper input:focus, #dataTable1_wrapper input:focus, #dataTable2_wrapper input:focus,
.modal button:focus, .btn-dfp:focus, select:focus, textarea:focus, input:focus{
    box-shadow: 0 0 0 0.1rem var(--primary) !important;
    border-width: 0 !important;
}

div.dataTables_filter input[type='search']{
    /*margin-right: .5rem !important;*/
    margin-top: .5rem !important;
    border: 1px solid #6abce2 !important;
    border-radius: 5px;
}
div.dataTables_filter input[type='search']:focus{
    border-color: var(--primary) !important;
}

#dataTable_wrapper .dt-buttons{
    margin-bottom: .5rem;
}

.text-gray {
    color: #858796 !important;
}

.btn-active{
    background-color: var(--primary) !important;
    color: #fff !important;
}

.txt-edit-reason{
    width: 200px !important;
}

textarea::placeholder{
    font-style: italic;
    font-size: small;
    position: absolute;
    top: 10px;
    left: 10px;
}
textarea::-moz-placeholder{
    font-style: italic;
    font-size: small;
    position: absolute;
    top: 10px;
    left: 10px;
}
textarea::-webkit-input-placeholder{
    font-style: italic;
    font-size: small;
    position: absolute;
    top: 10px;
    left: 10px;
}
textarea:-ms-input-placeholder{
    font-style: italic;
    font-size: small;
    position: absolute;
    top: 10px;
    left: 10px;
}

.img-responsive{
    display:block;
    max-width:100%;
    height:auto
}

.badge-dfp{
    color: #ffffff;
    background-color: #0096ff !important;
}

.switch {
    position: absolute;
    display: inline-block;
    width: 60px;
    height: 34px;
    margin: 2px 5px;
    padding: .25rem !important;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.slider-disabled {
    opacity: 0.3;
}

.footer-i{
    width: 30px;
    height: 30px;
}

.d-inline-grid{
    display: inline-grid !important;
}

/* Falling text */
.falling-letter {
    display: flex;
    height: 100%;
    /*height: 100vh;*/
    align-items: center;
    justify-content: center;
    /*background-color: #001219;*/
    /*background-color: #ffffff;*/
    background-image: linear-gradient(315deg, #0d6efd 0%, #f5f7f6 74%);
}

#text-drop {
    position: relative;
    display: flex;
    /*font-size:100px;*/
    font-size:2500%;
    font-weight: 900;
}

.d {
    opacity:0;
    animation: drop .9s linear forwards;
    /*color: #9b5de5;*/
    color: #000055;
}

.f {
    opacity:0;
    animation: drop .9s linear forwards .9s;
    /*color: #f15bb5;*/
    color: #000055;
}

.p {
    opacity:0;
    animation: drop .9s linear forwards 1.8s;
    /*color: #fee440;*/
    color: #000055;
}

.row-copy-order-table .table-responsive{max-height: 350px}

@keyframes drop {
    0% {transform: translateY(-200px) scaleY(0.9); opacity: 0;}
    5% {opacity: .7;}
    50% {transform: translateY(0px) scaleY(1); opacity: 1;}
    65% {transform: translateY(-17px) scaleY(.9); opacity: 1;}
    75% {transform: translateY(-22px) scaleY(.9); opacity: 1;}
    100% {transform: translateY(0px) scaleY(1); opacity: 1;}
}

.overlay-falling-text{
    position: absolute;
    top: 0;
    background: rgba(0,0,0,0.6);
}

input.transparent, input.form-control.transparent:focus{
    background-color: rgba(0, 0, 0, 0) !important;
}

@media (min-width: 768px) {
    .sidebar.toggled .nav-item .collapse, .sidebar.toggled .nav-item .collapsing {
        z-index: 5;
    }
}

@media (max-width: 768px){
    #text-drop{
        font-size: 2000%;
    }
}

/*@media screen and (max-width: 768px) {*/
/*    #text-drop{*/
/*        font-size: 1800%;*/
/*    }*/
/*}*/

.img-brand{
    width: 30px;
    /*height: 50px;*/
    /*margin-top: 11px;*/
    /*margin-right: 11px;*/
    filter: drop-shadow(3px 5px 2px rgb(0 0 0 / 0.75));
}

.sidebar-toggled .img-brand{
    width: 65px;
}

.logo{
    color: #EC1B23;
    /*text-shadow: 2px 2px 3px rgb(0 0 0 / 0.75);*/
}

.supplier .sidebar .sidebar-brand{
    font-size: initial;
    letter-spacing: initial;
    text-transform: initial;
    font-weight: initial;
    text-align: initial;
}

.supplier .sidebar-dark .sidebar-heading{
    color: rgba(255,255,255,.75);
}

.btn-outline-spp, .btn-spp{
    /*font-size: 12px;*/
    font-weight: bolder !important;
    border-radius: .35rem !important;
}
.btn-outline-spp{
    /*border: 1px solid #041562;*/
    border: 1px solid #6abce2;
    background-color: #fff !important;
    color: #041562 !important;
}
.btn-outline-spp:hover{
    border-color: #041562 !important;
    background-color: #041562 !important;
    color: white !important;
    /*border-color: #fff !important;*/
    /*background-color: #fff !important;*/
    /*color: black !important;*/
}
.btn-outline-spp > small{
    color: #041562 !important;
}
.btn-outline-spp:hover > small{
    color: #fff !important;
}
.btn-spp{
    /*background-color: #6F1715;*/
    /*border-color: #6F1715;*/
    /*background-color: #041562 !important;*/
    /*border-color: #041562 !important;*/
    /*color: white !important;*/
    color: #041562 !important;
    background-color: #6abce2 !important;
    border-color: #6abce2 !important;
}
.btn-spp:hover{
    /*background-color: #6F1715;*/
    /*border-color: #6F1715;*/
    background-color: var(--primary_dark) !important;
    border-color: var(--primary_dark) !important;
}
.btn-spp > small, .btn-spp > span > i, .btn-spp > i{
    /*color: #fff !important;*/
    color: #041562 !important;
}
.supplier .btn-spp:hover > small, .supplier .btn-spp:hover > span, .supplier .btn-spp:hover > span > i, .supplier .btn-spp:hover > i{
    color: #fff !important;
}

.nav-item a.btn-spp:hover {
    /*border-color: #000 !important;*/
    border-color: #041562 !important;
    background-color: #041562;
}

.text-spp{
    color: var(--primary) !important;
}

.bg-spp{
    /*background-color: #F6F6F6;*/
    /*background: radial-gradient(circle at 18.7% 37.8%, rgb(250, 250, 250) 0%, rgb(225, 234, 238) 90%);*/
    /*background: linear-gradient(109.6deg, rgb(204, 228, 247) 11.2%, rgb(237, 246, 250) 100.2%);*/
    border: 1px solid #11468F
}

.btn-primary{
    color: var(--primary) !important;
}
.btn-primary:hover{
    color: var(--white) !important;
}

.pointer{
    cursor: pointer !important;
}

.overlay .img-brand{
    width: 50px;
    margin-right: 11px;
}

.supplier table{
    border-width: 0;
}

.supplier table > thead{
    background-color: #ddd;
}

.supplier table > thead > tr > th{
    border-right: none;
    border-bottom: none;
}

.supplier table > tbody > tr > td{
    border-left: none !important;
    border-right: none !important;
}

.supplier #wrapper #content-wrapper{
    background-color: var(--lite-gray);
}

.supplier div.dataTables_scrollBody{
    border-left: none !important;
}

.supplier div.dataTables_scrollHeadInner table.table-bordered tr th:first-child,
.supplier #dataTable1_wrapper div.dataTables_scrollHeadInner table.table-bordered tr th:nth-child(2){
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.supplier div.dataTables_scrollHeadInner table.table-bordered tr th:last-child{
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.supplier .page-link{
    color: var(--primary);
}

.supplier .page-item.active .page-link{
    background-color: var(--primary);
    border: none !important;
}

.gap-20{
    gap: 20px !important;
}

.document-category{
    flex-wrap: wrap;
    gap: 30px;
}

.document-category .active{
    border-bottom: 1px solid var(--primary);
    color: var(--primary);
    font-weight: bold;
}

.document-category > li{
    flex: 0 0  150px;
}

.supplier .card, .supplier .card > .card-header{
    border: none;
}

.supplier legend{
    width: initial;
    display: inline;
}

.border-radius-0{
    border-radius: 0;
}

@media screen and (max-width: 575px) {
    .sidebar-toggled .img-brand{
        width: 30px;
    }

    .navbar-expand .navbar-nav{
        width: 100%;
    }

    .navbar-expand .navbar-nav .nav-item:first-child{
        width: 60%;
    }
    .navbar-expand .navbar-nav .nav-item:last-child{
        width: 40%;
    }

    #userDropdown{
        float: right;
    }

    #sppLogo{
        float: left;
    }
}

#create-vendor-modal .modal-dialog, #create-vendor-modal .modal-content,
#user-modal .modal-dialog, #user-modal .modal-content{
    max-height: 100%;
}

.image-preview-close-item{
    position: absolute;
    top: 0;
    background-color: red;
    color: white;
    border: 3px solid red;
    border-radius: 50%;
    padding: 0 5px;
    cursor: pointer;
}

.legal-file-preview-active-item{
    position: relative;
    margin-top: 20px;
    margin-bottom: 20px;
    float: left;
}
.file-preview-close-item{
    position: absolute;
    top: -20px;
    right: -20px;
    background-color: red;
    color: white;
    border: 3px solid red;
    border-radius: 50%;
    padding: 0 5px;
    cursor: pointer;
}

#product-details-info .product-name p{
    color: inherit;
}

.font-xs {
    font-size: .75rem !important;
}

.font-sm {
    font-size: .85rem !important;
}

.font-md {
    font-size: .9rem !important;
}

.font-lg {
    font-size: 1rem !important;
}

.select2-dropdown {
    z-index: 10000;
}

.buttons-excel{
    margin-bottom: 1px;
}

.buttons-columnVisibility{
    border: 1px solid #6abce2;
    margin-bottom: 1px;
    color: #041562;
    font-weight: bold;
}