* {
    box-sizing: border-box;
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.pagination-size-select {
    border: 1px solid #EEE;
    border-radius: .25rem;
    padding: .25rem 1.5rem .25rem .25rem;
    display: flex;
    background-color: white;
    outline: 0;
    cursor: pointer;
    appearance: none;
}

.select-box {
    position: relative;
}

.select-box::before {
    content: '';
    position: absolute;
    top: 50%;
    margin-top: -6px;
    right: .6rem;
    width: 0;
    height: 0;
    border: solid black;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
}

.select-full-width {
    width: 100%;
}

nav, footer {
    background-color: #8F8F8F;
    color: aliceblue;
}

    nav a, nav a:hover, .nav-link, .nav-link:hover {
        color: aliceblue;
        text-decoration: none;
    }

table {
    border-collapse: collapse;
}

th, td {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
}

th {
    background-color: #f2f2f2;
}

.imageWrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    overflow: hidden;
}

.imageWrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.clickable-row {
    cursor: pointer;
}

#cookieConsentdiv {
    z-index: 1000;
    position: fixed;
    width: 400px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px 30px 20px 30px;
    font-family: 'Century Gothic', sans-serif;
    box-shadow: 0px 3px 10px 5px rgba(0, 0, 0, 0.4);
    text-align: center;
}

#cookieConsentdiv button {
    display: block;
    margin-left: auto;
    margin-right: auto;
    border: none;
    background-color: green;
    padding: 10px 50px;
    margin-top: -5px;
    color: white;
    transition: all ease 0.5s;
}

#cookieConsentdiv button:hover {
    background-color: darkgreen;
}

#cookieConsentdiv h3 {
    font-size: 22px;
}

#cookieConsentdiv p {
    font-size: 13px;
}

#cookieConsentdiv a {
    color: gray;
    text-decoration: underline;
}


.readonly-field[readonly] {
    background-color: #f8f9fa;
    opacity: 0.8;
    cursor: not-allowed;
}


.btn-custom-dark {
    background-color: #F0F0F0;
    color: #3A3A38;
    transition: background-color 0.2s ease;
}

    .btn-custom-dark:hover {
        background-color: #909090;
    }

/*@media (max-width: 768px) {
    .btn-custom-dark {
        width: 240px;
    }
}

@media (max-width: 575px) {
    .btn-custom-dark {
        width: 175px;
    }
}

@media (max-width: 390px) {
    .btn-custom-dark {
        width: 160px;
    }
}*/

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.bootstrap-select .dropdown-toggle {
    height: calc(1.5em + .75rem + 2px);
    border: 1px solid #ced4da;
    padding: 0.375rem 1.75rem 0.375rem 0.75rem;
}

    .bootstrap-select .dropdown-toggle .caret {
        display: none;
    }


#filters .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: 100% !important;
}

.filter-select button {
    background-color: white;
}

.top-filters, .download-xlsx {
    width: 55%;
}

@media (max-width: 1000px) {
    .top-filters, .download-xlsx {
        width: 65%;
    }
}

@media (max-width: 900px) {
    .top-filters, .download-xlsx {
        width: 70%;
    }
}


@media (max-width: 768px) {
    .top-filters, .download-xlsx {
        width: 100%;
    }
}
