:root {
    --color-a: rgb(39, 9, 73);
    --color-b: #010349;
    --color-c: rgb(230, 233, 245);
    --color-d: rgb(249, 91, 61);
    --color-e: rgb(255, 255, 255);
}

.btn-outline-primary {
    color: #010349;
    border-color: #010349;
}

.btn-outline-primary:hover {
    color: white;
    background-color: #010349;
    border-color: white;
}

::-webkit-scrollbar{
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-thumb{
    background: #B3AFB3;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover{
    background: #B3AFB3;
}

::-webkit-scrollbar-track{
    background: #F0F0F0;
    border-radius: 0px;
    box-shadow: inset 0px 0px 0px 0px #F0F0F0;
}

h5, h2{
    margin: 0px;
}

h5{
    text-decoration: var(--color-b) underline dotted;
    margin-bottom: 0;
}

a{
    text-decoration: none;
}

a:hover{
    cursor: pointer;
}


.table {
    text-align: center;
}

.to-left {
    text-align: left;
}

.table{
    padding: 0;
    margin-bottom: 0;
}

body{
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    height: 100%;
    background: rgb(241,248,255);
    background: radial-gradient(circle, rgba(241,248,255,1) 0%, rgba(255,255,255,1) 100%);
}

.manager_menu{
    display: flex;
    flex-direction: column;
    width: 220px;
    min-width: 220px;
    height: 100%;
    background-color: white;
    -webkit-box-shadow: 4px 4px 8px 0px rgba(22, 56, 86, 0.07);
    -moz-box-shadow: 4px 4px 8px 0px rgba(22, 56, 86, 0.07);
    box-shadow: 4px 4px 8px 0px rgba(22, 56, 86, 0.07);
}

.menu_button:link, .menu_button:visited{
    background-color: white;
    color: var(--color-b);
    padding: 5px 10px 5px 20px;
    font-weight: bold;
    outline: 0;
    text-align: left;
    text-decoration: none;
    font-size: 0.8em;
    display: inline-block;
}

.menu_button:hover{
    background-color: var(--color-b);
    color: var(--color-c);
    transition: 0.2s;
}

.manager_logo{
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 220px;
    height: 91px;
    max-width: 220px;
    max-height: 91px;
    background-color: white;
}

.manager_logo_img{
    width: 200px;
}

.manager{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.manager_support{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    height: 70px;
    width: 100%;
}

.manager_support_exit{
    padding: 10px 30px 10px 30px;
    margin-right: 50px;
}

.manager_content{
    margin: 0px 0px 0px 20px;
    padding: 20px;
    width: 95%;
    height: 100%;
    overflow: auto;
}

p{
    color: var(--color-a);
    /*
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    outline: 0;
    */
}

/*
.warehouse_block{
    border-bottom: 1px dashed var(--color-b);
    margin-bottom: 10px;
}
*/

.table_header{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    height: max-content;
}

.table_caption{
    margin-top: 10px;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

.table_caption > h3, a{
    margin: 5px;
}

.table_wrapper{
    position: relative;
}

.table_scroller{
    position: relative;
    height: 100%;
    overflow: auto;
}

.table-condensed{
  font-size: 0.8em;
}

.warehouse_edit{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
}

.confirm_content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.confirm_buttons{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.margin{
    margin: 15px;
}

.a_link, .a_link:link, .a_link:visited, .a_link:hover, .a_link:active{
    color: var(--color-b);
}