html,
body {
    font-family: "DinPro", sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 14px;
    font-stretch: condensed;
    margin: 0;
    padding: 0;
    min-height: 100%;
    background: #eee;
    direction: ltr;
    position: relative;
}

#debug-enabled {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 50%;
    margin-left: -65px;
    width: 130px;
    height: 15px;
    font-size: 10px;
    text-align: center;
    color: #fff;
    background: #f00;
}

.container {
    padding-top: 40px;
    padding-bottom: 60px;
}

#main {
    margin-left: 220px;
    padding: 0;
    min-width: 980px;
    min-height: 500px;
    position: relative;
}

@media only screen and (max-width: 1400px) {
    #main {
        margin-left: 180px;
    }
}

.table-wrapper a {
    color: #323232;
    cursor: pointer;
}
.table-wrapper a:hover {
    text-decoration: underline;
}
.table-wrapper img {
    border-radius: 2px;
}

.table-wrapper,
.white-box {
    background: #fff;
    border-radius: 4px;
    padding: 20px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.09);
}

.table-wrapper table {
    width: 100%;
    font-size: 14px !important;
    color: #323232 !important;
    font-stretch: normal !important;
    margin-bottom: 0;
}

.table-wrapper table tr {
    background: transparent;
    font-size: 14px;
}

.table-wrapper table td {
    border-top: 2px solid #dadada !important;
    vertical-align: middle !important;
    padding: 15px 5px !important;
}

.table-wrapper table.compressed td {
    padding: 5px 5px !important;
}

.table-wrapper table th {
    padding: 5px 5px 15px 5px !important;
}

tbody td.td-hover:hover {
    background-color: rgba(0, 0, 0, 0.075);
    cursor: pointer;
}

/* Buttons */
/* TODO move or get rid of this section */
.btn-action {
    font-size: 17px !important;
    padding: 6px 8px !important;
}

/* Overlay, loader and mask */
#mask {
    display: none;
    background: #000;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 700;
    width: 100%;
    height: 100%;
    opacity: 0.4;
}

/* AJAX LOADER */
div.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    -moz-opacity: 0.55;
    opacity: 0.55;
    z-index: 1100;
}

#loader {
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 1150;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Fix Bootstrap padding for badges */
.badge-pill {
    padding: 0.15rem 0.7rem 0.15rem 0.6rem;
    display: inline;
}

.form-rounded {
    border-radius: 1rem;
}

.discover-expert-apps-container {
    display: flex;
}

.discover-expert-apps-container .button {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 5px 10px;
    gap: 5px;
    height: 30px;
    left: 20px;
    top: 20px;
    background: linear-gradient(86.49deg, rgba(22, 58, 247, 0.1) 1.35%, rgba(176, 155, 238, 0.1) 99.15%);
    border-radius: 5px;
    color: #6F39B3;
    font-weight: 500;
}

.discover-expert-apps-container .button:hover {
    background: linear-gradient(86.49deg, rgba(22, 58, 247, 0.25) 1.35%, rgba(176, 155, 238, 0.1) 99.15%);
}

.discover-expert-apps-container .label {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 5px;
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    color: #6F39B3;
}

.horizontal-divider {
    height: 1px;
    background-color: #d7d7d7;
    margin: 20px 0;
}

.draggable {
    cursor: row-resize;
}
