/* ================================
    Layout
================================ */
body {
    padding-top: 70px;
    padding-left: 250px;
}

.title-404 p {
    line-height: 1;
    text-align: center;
    font-size: 200px;
    color: #405189;
    opacity: .1;
    margin-top: 10%;
    font-weight: 500;
}

.dashboard-inner {
    padding: 24px 24px 50px 24px;
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
}

img {
    max-width: 100%;
}

.bm-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

.bm-grid .col-1 {grid-column: span 1;}
.bm-grid .col-2 {grid-column: span 2;}
.bm-grid .col-3 {grid-column: span 3;}
.bm-grid .col-4 {grid-column: span 4;}
.bm-grid .col-5 {grid-column: span 5;}
.bm-grid .col-6 {grid-column: span 6;}
.bm-grid .col-7 {grid-column: span 7;}
.bm-grid .col-8 {grid-column: span 8;}
.bm-grid .col-9 {grid-column: span 9;}
.bm-grid .col-10 {grid-column: span 10;}
.bm-grid .col-11 {grid-column: span 11;}
.bm-grid .col-12 {grid-column: span 12;}

.card {
    overflow: hidden;
    background-color: #fff;
    border-radius: 4px;
    padding: 12px 24px 24px 24px;
    box-shadow: 0 1px 2px rgba(56, 65, 74, 0.15);
}

.card-table {
    overflow: hidden;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(56, 65, 74, 0.15);
}

.card-title {
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 24px;
    padding-right: 24px;
    border-bottom: 1px solid #f3f3f9;
    padding-bottom: 12px;
    margin-bottom: 24px;
}

.card-table-title {
    padding-left: 24px;
    padding-right: 24px;
    border-bottom: 1px solid #e9ebec;
    padding-bottom: 12px;
    padding-top: 12px;
}

.align-right {
    text-align: right;
}

.mr-12 {margin-right: 12px;}

.pt-24 {padding-top: 24px;}

.btn-primary {
    text-decoration: none;
    border-radius: 4px;
    color: #fff;
    font-weight: 400;
    font-size: 13px;
    padding: 8px 14px;
    display: inline-flex;
    align-items: center;
    background-color: #ff6f00;
}

.btn-secondary {
    text-decoration: none;
    border-radius: 4px;
    color: #fff;
    font-weight: 400;
    font-size: 13px;
    padding: 8px 14px;
    display: inline-flex;
    align-items: center;
    background-color: #c1c1c1;
}

.btn-add {
    height: 46px;
    width: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    position: fixed;
    bottom: 20px;
    right: 40px;
    z-index: 9;
    background-color: #ff6f00;
    color: #fff;
    box-shadow: 0 1px 2px rgba(56, 65, 74, 0.15);
}

.btn-add svg {
    height: unset;
    width: 20px;
}

.card-animate {
    transition: box-shadow .3s ease, transform .3s ease;
}

.card-animate:hover {
    transform: translateY(-6px);
    box-shadow: 0 5px 10px rgba(30,32,37,.12);
}

table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

table a {
    color: #405189;
}

table * {
    color: #000;
    text-decoration: none;
}

table th {
    background-color: #f3f6f9;
    font-weight: 600;
}

table tr {
    border-bottom: 1px solid #e9ebec;
    transition: background-color .1s ease;
}

table tr:hover {
    background-color: #f3f6f9;
}

table th,
table td {
    text-align: left;
    font-size: 13px;
    padding: 12px 9px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 500px;
}

table th:first-child,
table td:first-child {
    padding-left: 24px;
}

table th:last-child,
table td:last-child {
    padding-right: 24px;
}

table svg,
table path {
    color: #686868;
}

/* ================================
    @media's
================================ */
@media screen and (max-width: 1600px) {

}

@media screen and (max-width: 1400px) {

}

@media screen and (max-width: 1199px) {

}

@media screen and (max-width: 991px) {

}

@media screen and (max-width: 767px) {

}