body {
    font-family: 'Roboto Condensed';
    margin: 0;
}

header {
    margin-bottom: 25px;
    width: 100%;
}

@media (max-width: 767px) {
    label {
        width: 150px !important;
        text-align: left !important;
    }
}

@media (min-width: 768px) {
    .container {
        width: 750px;
    }

    label {
        width: 150px !important;
        text-align: left !important;
    }
}

@media (min-width: 992px) {
    .container {
        width: 970px;
    }

    label {
        width: 150px !important;
        text-align: left !important;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1500px;
    }
}

.navigation {
    border-bottom: 1px solid #d0d0d0;
    height: 80px;
    display: flex;
    align-items: center;
}

.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar>a>img {
    width: 75%;
}

.nav {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.nav>li {
    float: left;
}

.nav>li>a {
    display: block;
    padding: 8px;
    text-decoration: none;
    color: #6F6F6F;
    text-transform: uppercase;
    position: relative;
    font-size: 16px;
}

.nav>li>a:hover {
    color: #eb1c24;
}

/* Style the dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* Style the links inside the dropdown */
.dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

/* Make links white in table header and gray on hover*/
table th a {
    color: white;
}

table th a:hover {
    color: lightgray;
}

/* Add a dark background on topnav links and the dropdown button on hover */
.topnav a:hover,
.dropdown:hover .dropbtn {
    color: #eb1c24;
}

/* Add a grey background to dropdown links on hover */
.dropdown-content a:hover {
    background-color: #ddd;
    color: black;
}

/* Show the dropdown menu when the user moves the mouse over the dropdown button */
.dropdown:hover .dropdown-content {
    display: block;
}

.topnav .icon {
    display: none;
}

/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 1200px) {

    .nav>li>a {
        display: none;
    }

    .topnav a,
    .dropdown .dropbtn,
    .nav-item {
        display: none;
    }

    .topnav a.icon {
        float: right;
        display: block;
    }

    .nav {
        display: block !important;
    }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 1200px) {
    .topnav.responsive {
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        background-color: #1c1c1c;
        z-index: 999;
    }

    .topnav.responsive a.icon {
        position: absolute;
        right: 0;
        top: 0;
    }

    .topnav.responsive a {
        float: none;
        display: block;
        text-align: left;
    }

    .topnav.responsive .dropdown {
        float: none;
    }

    .topnav.responsive .dropdown-content {
        position: relative;
    }

    .topnav.responsive .dropdown .dropbtn,
    .nav-item {
        display: block;
        width: 100%;
        text-align: left;
        margin-left: 25px;
    }

    .nav {
        display: block !important;
    }

    .nav-btn {
        margin-top: 25px;
        margin-bottom: 25px;
        width: 150px;
    }
}

.notification-ellipse {
    position: absolute;
    top: 0;
    right: 0;
    right: 0;
}

.notifications {
    position: fixed;
    top: 30px;
    right: 20px;
}

.notifications :where(.toast, .column) {
    display: flex;
    align-items: center;
}

.notifications .toast {
    width: 400px;
    position: relative;
    overflow: hidden;
    list-style: none;
    border-radius: 4px;
    padding: 16px 16px;
    margin-bottom: 10px;
    background: #FFFFFF;
    justify-content: space-between;
    animation: show_toast 2s ease forwards;
}

.toast:not(.show) {
    display: flex !important;
}

@keyframes show_toast {
    0% {
        transform: translateX(100%);
    }

    40% {
        transform: translateX(-5%);
    }

    80% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-10px);
    }
}

.notifications .toast.hide {
    animation: hide_toast 0.3s ease forwards;
}

@keyframes hide_toast {
    0% {
        transform: translateX(-10px);
    }

    40% {
        transform: translateX(0%);
    }

    80% {
        transform: translateX(-5%);
    }

    100% {
        transform: translateX(calc(100% + 20px));
    }
}

.toast::before {
    position: absolute;
    content: "";
    height: 3px;
    width: 100%;
    bottom: 0px;
    left: 0px;
    animation: progress 5s linear forwards;
}

@keyframes progress {
    100% {
        width: 0%;
    }
}

.toast.success::before,
.btn#success {
    background: var(--success);
}

.toast.error::before,
.btn#error {
    background: var(--error);
}

.toast.warning::before,
.btn#warning {
    background: var(--warning);
}

.toast.info::before,
.btn#info {
    background: var(--info);
}

.toast.random::before,
.btn#random {
    background: var(--random);
}

.toast .column i {
    font-size: 28px;
}

.toast.success .column i {
    color: var(--success);
}

.toast.error .column i {
    color: var(--error);
}

.toast.warning .column i {
    color: var(--warning);
}

.toast.info .column i {
    color: var(--info);
}

.toast.random .column i {
    color: var(--random);
}

.toast .column span {
    font-size: 17px;
    margin-left: 12px;
}

.toast i:last-child {
    color: #aeb0d7;
    cursor: pointer;
}

.toast i:last-child:hover {
    color: var(--dark);
}

.buttons .btn {
    cursor: pointer;
    margin: 0 5px;
    color: #000;
    font-size: 19px;
    padding: 10px 20px;
    border-radius: 4px;
}

.blade-table {
    border-collapse: collapse;
    width: 100%;
    margin: 25px 0px;
}

.blade-table td {
    padding: 25px;
}

.blade-table tr {
    background-color: #FFFFFF;
    border: 1px solid #EAEAEA;
    color: #404040;
    font-weight: 400;
}

.blade-table th {
    padding: 20px;
    text-align: left;
    background-color: #eb1c24;
    color: #FFFFFF;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 600;
}

.table-header {
    padding-top: 25px;
    text-transform: uppercase;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.table-header button {
    height: 50px;
    width: 70px;
    cursor: pointer;
}

.table-title {
    color: #404040;
    font-size: 23px;
    font-weight: 600;
}

.table-pagination {
    background-color: #FFFFFF;
    height: 65px;
    padding: 25px;
    text-transform: uppercase;
    border: 1px solid #EAEAEA;
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    align-items: center;
}

.table-current-page {
    color: #9A9A9A;
    font-size: 15px;
}

.table-pagination-list {
    display: flex;
    list-style: none;
    align-items: center;
}

.table-pagination-list li {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background: #F9FAFB;
    color: #404040;
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 0px 5px;
    cursor: pointer;
}

form {
    border: 1px solid #d0d0d0;
    padding: 25px;
    margin: 25px 0px;
}

label {
    width: 150px !important;
    text-align: right;
}

input[type="text"],
input[type="date"],
input[type="time"],
input[type="password"],
input[type="number"],
input[type="file"],
input[type="email"],
textarea,
select {
    width: 33% !important;
}

@media (max-width: 992px) {

    input[type="text"],
    input[type="date"],
    input[type="time"],
    input[type="password"],
    input[type="number"],
    input[type="file"],
    input[type="email"],
    textarea,
    select {
        width: 100% !important;
    }
}

.summary-container {
    border: 1px solid #d0d0d0;
    width: 500px;
    padding: 25px;
    margin: 25px 0px;
}

form>button {
    width: 25% !important;
}

select {
    -webkit-appearance: listbox !important;
}

/* CREATIVE UPLOAD PROGRESS BAR */
#progress-wrp {
    border: 1px solid #0099CC;
    padding: 1px;
    position: relative;
    height: 30px;
    border-radius: 3px;
    margin: 10px;
    text-align: left;
    background: #fff;
    box-shadow: inset 1px 3px 6px rgba(0, 0, 0, 0.12);
    width: 300px;
}

#progress-wrp .progress-bar {
    height: 100%;
    border-radius: 3px;
    background-color: #f39ac7;
    width: 0;
    box-shadow: inset 1px 1px 10px rgba(0, 0, 0, 0.11);
}

#progress-wrp .status {
    top: 3px;
    left: 50%;
    position: absolute;
    display: inline-block;
    color: #000000;
}