@import "../media/fonts/opensanshebrew.css";
@import "../media/fonts/assistant.css";

/* *, ::before, ::after {
    box-sizing: unset !important;
} */
html,
body {
    position: relative;
    width: 100%;
    height: 100%;
}

body {
    /* min-width: 1024px; */
    /* max-width: 1280px; */

    color: #333;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Assistant',"Open Sans Hebrew", Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

a {
    /* color: rgb(0,100,200); */
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a:visited {
    /* color: rgb(0,80,160); */
}

label {
    display: block;
}

/*DATATABLE CSS*/
.datatable {
    background: #fff;
    /* height: 100vh; added by me */
}

.datatable .dt-search {
    margin-right: 16px;
}

.datatable .dt-search input {
    float: right;
    border: 1px solid #bdbdbd;
    border-radius: 4px;
    outline: none;
    padding: 0 8px;
    line-height: 24px;
    margin: 0;
    height: 24px;
    background: transparent;
    width: 176px;
    transition: all, 0.1s;
}

.datatable .dt-search input:focus {
    border: 2px solid #bdbdbd;
}

.datatable .dt-search input::placeholder {
    color: #9e9e9e;
    line-height: 24px;
}

.datatable thead:not([style*="hidden"]) th {
    padding: 8px 0px 8px 16px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
    background: #fff;
}

.datatable .dt-table th.sortable {
    cursor: pointer;
}

.datatable .dt-table th.sortable span {
    padding-right: 16px;
    position: relative;
}

.datatable .dt-table th.sortable span:before,
.datatable .dt-table th.sortable span:after {
    border: 4px solid transparent;
    content: "";
    display: block;
    height: 0;
    right: 0;
    top: 50%;
    position: absolute;
    width: 0;
}

.datatable .dt-table th.sortable span:before {
    border-bottom-color: #bdbdbd;
    margin-top: -9px;
}

.datatable .dt-table th.sortable span:after {
    border-top-color: #bdbdbd;
    margin-top: 1px;
}

.datatable .dt-table th.sortable.asc:not(.desc) span:before {
    border-bottom-color: #616161;
}

.datatable .dt-table th.sortable.desc:not(.asc) span:after {
    border-top-color: #616161;
}

.datatable .dt-table th.filter {
    padding: 0;
    margin: 0;
    background-image: none;
    border: 1px solid #fafafa;
}

.datatable .dt-table th.filter input {
    background: #fff;
    height: 24px;
    border: none;
    border-bottom: 1px solid #eee;
    text-align: center;
    outline: none;
    border-radius: 0;
    font-size: 14px;
}

.datatable .dt-table th.filter input::placeholder {
    color: #bdbdbd;
    font-style: italic;
    font-size: 13px;
}

.datatable .dt-table {
    border-bottom: 1px solid #bdbdbd;
    scrollbar-width: thin;
}

.datatable .dt-table::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.datatable .dt-table::-webkit-scrollbar-track {
    background: #f5f5f5;
}

.datatable .dt-table::-webkit-scrollbar-thumb {
    background: #c2c2c2;
}

.datatable .dt-table::-webkit-scrollbar-thumb:hover {
    background: #9e9e9e;
}

.datatable .dt-table::-webkit-scrollbar-track-piece:start {
    top: 40px;
}

.datatable .dt-table table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    margin-bottom: 6px;
}

.datatable .dt-table tbody tr {
    transition: all, 0.3s;
}

.datatable .dt-table tbody tr:nth-child(even) {
    background-color: #fafafa;
}

.datatable .dt-table tbody tr:hover {
    background: #2563eb;
    opacity: 0.8;
    cursor: pointer;
    color: #fff;
}

.datatable .dt-pagination {
    background: #fff;
    flex-direction: row-reverse;
}

.datatable .dt-pagination-buttons {
    height: 32px;
    margin-left: 16px;
}

.datatable .dt-pagination-buttons button {
    background: #eee;
    height: 32px;
    width: 32px;
    color: #424242;
    font-size: 13px;
    margin: 0 4px 0 0;
    padding: 0;
    transition: all, 0.2s;
    line-height: 32px;
    border: 1px solid #bdbdbd;
    outline: none;
    cursor: pointer;
    border-radius: 2px;
}

.datatable .dt-pagination-buttons button:not(.text) {
    border-radius: 50%;
    height: 24px;
    width: 24px;
    line-height: 24px;
    margin: 4px 4px 0 0;
}

.datatable .dt-pagination-buttons button:last-child {
    border-right: 1px solid #bdbdbd;
}

.datatable .dt-pagination-buttons button:not(.active):hover {
    background: #fafafa;
}

.datatable .dt-pagination-buttons button.text {
    width: auto;
    min-width: 70px;
}

.datatable .dt-pagination-buttons button.ellipse:hover {
    background: inherit;
    cursor: default;
}

.datatable .dt-pagination-buttons button.active {
    background: #333;
    color: #fafafa;
    font-weight: bold;
}

.datatable .dt-pagination-buttons button.disabled:hover {
    cursor: default;
}

.datatable .dt-pagination-buttons.mobile button.disabled {
    color: #bdbdbd;
}

.datatable .dt-pagination-buttons.mobile button {
    font-weight: bold;
}

.datatable .dt-pagination-rowcount {
    color: #616161;
    line-height: 32px;
    margin-right: 16px;
    font-size: 14px;
}
/*DATATABLE ENDS*/

/* input, button, select, textarea {
	font-family: inherit;
	font-size: inherit;
	-webkit-padding: 0.4em 0;
	padding: 0.4em;
	margin: 0 0 0.5em 0;
	box-sizing: border-box;
	border: 1px solid #ccc;
	border-radius: 2px;
}

input:disabled {
	color: #ccc;
}

button {
	color: #333;
	background-color: #f4f4f4;
	outline: none;
}

button:disabled {
	color: #999;
}

button:not(:disabled):active {
	background-color: #ddd;
}

button:focus {
	border-color: #666;
} */

.content-container {
    /*height: calc(100vh - 201px); */
    /*201px is footer's height*/
}
