@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;800&display=swap');


/* VARIABLES */
* {
    --bg-color: #000000;
    --block-color: #1D1D1E;
    --filter-text-color: #2d2d2e;
    --inner-block-color: #000000;
    --filter-color: #111213;
    --active-color: #323538;
    --hover-button: #28292b;
    --additional-color: #8B8C8E;
    --inactive-color: #3C4041;
    --gray-color: #646A70;
    --light-gray-color: #AFAFAF;
    --red-color: #93090B;
    --green-color: #548F00;
    --yellow-color: #FFCC00;
    --balloon-color: #3F8CFF;
}

.tooltip-block {
    --balloon-color: var(--block-color);
    --balloon-border-radius: 10px;
}

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

input[type="date"] {
  background: transparent;
  color: #3F8CFF;
}

.bootstrap-select > select.mobile-device:focus + .dropdown-toggle,
.bootstrap-select .dropdown-toggle:focus,
.form-control:focus {
    outline: none !important;
    outline-offset: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

/* REMOVE SCROLLBAR */
body::-webkit-scrollbar {
    display: none;
}

/* BODY */
body {
    background-color: var(--bg-color);
    font-family: 'Inter', sans-serif;
    color: white;
}

/* TAGS */
a {
    color: white;
    text-decoration: none;
}

li {
    list-style-type: none;
    margin-bottom: 2px;
}

ul {
    margin-top: -10px;
    margin-left: 12px;
    padding-left: 0;
}

.vl {
    border-right: 3px solid var(--block-color);
    display: block;
    position: relative;
    z-index: 100;
    min-width: 0;
    min-height: 50%;
    align-self: center;
}

/* CLASSES */
.additional {
    color: var(--additional-color);
    font-size: 16px;
    font-weight: 300;
    line-height: 10px;
}

.block {
    background-color: var(--block-color);
    border-radius: 10px;
    padding: 15px;
}

.inner-block {
    background-color: var(--inner-block-color);
    border-radius: 10px;
}

#copyrighting {
    color: #3C4041;
    text-align: center;
    margin-bottom: 50px;
}

/* MODAL */
.modal-dialog > div {
    background-color: var(--block-color);
    border-radius: 10px;
    border-width: 0;
    padding: 15px;
}

.modal-footer, .modal-body, .modal-header {
    border-width: 0;
}

.modal-footer > button  {
    border-radius: 10px;
    height: 45px;
}


/* MAIN CONTAINER */
.container {
    display: flex;
    justify-content: space-around;
    column-gap: 17px;
    padding: 30px 0;
}

/* LOGO */
.logo {
    margin-top: 5px;
    margin-bottom: 16px;
}

.logo > a > img {
    width: 100%;
}


/* NAVIGATION */
nav {
    min-width: 280px;
    min-height: 100%;
}

.links {
    display: flex;
    flex-flow: column wrap;
    row-gap: 5px;
    font-size: 15px;
    font-weight: 400;
}

.links > a {
    padding: 7px 12px;
    height: 35px;
    color: var(--gray-color);
}

.links > a:hover {
    background-color: var(--hover-button);
    color: var(--gray-color);
    border-radius: 10px;
}

.links > a > img, .accordion-header > button > img {
    margin-top: -4px;
    margin-right: 6px;
    width: 20px;
    height: 20px;
}

.links > a.active {
    background-color: var(--active-color) !important;
    border-radius: 10px;
    color: var(--light-gray-color) !important;
    font-weight: 500 !important;
}

/* MAIN SECTION */
.section {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% - 15px);
    column-gap: 15px;
    row-gap: 15px;
}


/* FILTER BLOCK */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(70%);
}

.dropdown-toggle:focus {
    box-shadow: none !important;
}

.hidden {
    display: none;
}
