:root {
    --font-default: "Roboto";
    --font-primary: "Syncopate-Bold", sans-serif;
    --font-secondary: "Overpass", sans-serif;
}

/* Colors */
:root {
    --color-default: #363636;
    --color-primary: #e4e4e2;
    --color-secondary: #a39990;
    /*f3efea*/
    --color-primary-dark: #a39990;
    --color-font: #363636;
    --color-orange: #fd7e14;
}

.container-fluid {
    margin: 0px;
    padding: 0px;
    min-width: 500px;
}

.p {
    color: var(--color-font);
    font-style: italic !important;
}

.map {
    width: 100%;
    height: 100vh;
    position: fixed;
}

.map_small {
    width: 450px;
    height: 300px;
    bottom: 0px;
    right: 0px;
    position: absolute;
    background-color: white;
}

.vreme {
    color: var(--color-font);
    font-weight: bold;
    font-size: 0.75em;
}

#sidebar {
    width: 450px;
    position: fixed;
    top: 0px;
    left: 0px;
    height: 100vh;
    z-index: 999;
    background-color: var(--color-primary);
    color: #ffffff;
    transition: all 0.3s;
    overflow-y: scroll;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
    opacity: 0.85;
    padding: 15px;
}

#sidebar-body {
    align-self: center;
}

html,
body {
    scrollbar-color: var(--color-secondary) var(--color-font);
}

#sidebar.active {
    left: 0;
}

#sidebar .sidebar-header {
    margin-top: 40px;
    padding: 10px;
    background-color: var(--color-font);
    text-align: center;
}

#sidebar ul.components {
    padding: 20px;
    border-bottom: 1px solid var(--color-primary);
}

#sidebar ul p {
    color: #ffffff;
    padding: 10px;
}

#sidebar ul li a {
    padding: 10px;
    font-size: 1.1em;
    display: block;
}

#sidebar ul li a:hover {
    color: var(--color-orange);
    background: #fff;
}

#sidebar ul li.active>a,
a[aria-expanded="true"] {
    color: #fff;
    background: var(--color-orange);
}

.slider {
    background: linear-gradient(to right, val(--color-secondary) 0%, val(--color-secondary) 50%, #fff 25%, white 100%);
    
}

.navbar-offset {
    margin-top: 50px;
}

/* -  BUTTONS - */
.btn-circle.btn-sm {
    width: 30px;
    height: 30px;
    padding: 6px 0px;
    border-radius: 15px;
    font-size: 8px;
    text-align: center;
    background-color: transparent
}

.btn-circle-add {
    position: relative;
    width: 32px;
    height: 32px;
    padding: 0px;
    border-radius: 70%;
    text-align: center;
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    cursor: pointer;
}

.btn-circle-add:hover {
    background-color: #E6F0E1;
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
    animation-duration: 0.7s;
}

.btn-circle-add img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/*  -- TOOLBARS --  */

.toolbar-basic {
    background-color: var(--color-secondary) !important;
    overflow: unset !important;
    border-radius: 8px !important;
    height: auto;
}

.toolbar-right {
    position: fixed;
    top: 5px;
    right: 5px;
    width: 42px;
    /* height: 370px; */
    padding: 5px;
    z-index: 999;
    opacity: 0.85;
}


.toolbar-search {
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    vertical-align: middle;
    position: absolute;
    right: 14px;
    top: 5;
    padding: 10px;
    margin-right: 34px;
    z-index: 999;
    align-items: center;
    visibility: hidden;
}


.toolbar-search:hover {
    cursor: pointer;
}

.toolbar-Legend {
    position: absolute;
    bottom: 10px;
    right: 0px;
    width: 200px;
    height: 300px;
    padding: 15px;
    margin-right: 12px;
    z-index: 999;
    color: white;
    align-items: center;
}

.toolbar-Legend:hover {
    transform: scale(1.025);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.75);
    transition: all .3s ease-in-out;
    cursor: pointer;
}


.toolbar-overviewMap {
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    position: absolute;
    right: 5px;
    bottom: 75px;
    padding: 10px;
    width: 250px;
    height: 200px;
    z-index: 999;
    align-items: center;
    visibility: hidden;
}

.toolbar-panoramium {
    display: block;
    justify-content: space-around;
    flex-direction: row;
    position: absolute;
    left: 5px;
    bottom: 5px;
    padding: 3px;
    width: 50%;
    height: 50%;
    /*background-color: white !important;*/
    background-image: url('../img/logo/GeoGIS_logo.png');
    background-repeat: no-repeat;
    background-size:70%;
    background-position: center;
    z-index: 250;
}

.toolbar-panoramium2 {
    /*background-color: white !important;*/
    background-image: url('../img/logo/GeoGIS_logo.png');
    background-repeat: no-repeat;
    background-size:70%;
    background-position: center;
    z-index: 250;
    height: 78vh;
}

.toolbar-bottom {
    z-index: 999;
    opacity: .85;
    flex-direction: row;
    justify-content: space-around;
    padding: 15px;
    height: 18vh;
}

.toolbar-calculator {
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    position: absolute;
    padding: 10px;
    left: 0;
    height: 100%;
    top: 0px;
    width: 60%;
    right: 50%;
    z-index: 1200;
    opacity: 1;
    align-items: center;
    visibility: hidden;
}

.toolbar-show {
    visibility: visible;
}

.animate {
    transition: step-end transform 250ms;
}


.toolbar-coordinates {
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    position: absolute;
    right: 5px;
    bottom: 15px;
    padding: 3px;
    width: 250px;
    height: 60px;
    z-index: 800;
    /*box-shadow: 0 4px 4px rgba(0, 0, 0, .25);*/
    align-items: right;
    color: var(--color-font);
}

.toolbar-table {
    display:table;
    justify-content: space-around;
    flex-direction: row;
    position: absolute;
    padding: 10px;
    left: 0;
    height: 40%;
    width: 45%;
    max-height: 500px;
    max-width: 500px;
    bottom: 0px;
    z-index: 1200;
    opacity: 1;
    align-items: center;
    scroll-behavior: auto;
    visibility: hidden;
}

.toolbar-table-inside{
    height: 350px;
    max-height: 400px;
    max-width: 500px;
    overflow:auto;
}

.p_coord {
    font-family: Overpass;
    font-size: 0.75rem;
    font-weight: bold;
}


/* CARD */
.card-textWhite {
    color: white;
    vertical-align: top;
    margin: 20px;
}

.card-body {
    background-color: var(--color-secondary);
    color: var(--color-font);
}

.card-body-white {
    background-color: white;
    color: var(--color-font);
}

.card-body-primary {
    background-color: var(--color-primary);
    color: var(--color-font);
}

.legenda {
    padding-top: 10px;
}


/* FORMS */
.input-group-text {
    color: var(--color-orange);
}

input[type="range"] {
    height: 7px;
    width: 200px;
    background: linear-gradient(to right, var(--color-secondary) 0%, var(--color-secondary) 50%, #fff 50%, #fff 100%);
    border: solid 1px var(--color-secondary);
    border-radius: 8px;
    outline: none;
    transition: background 450ms ease-in;
    -webkit-appearance: none;
}

.form-group-wf {
    color: var(--color-font) !important;
    font-size: 14px;
    font-family: 'Roboto';
}

.form-check-input:checked {
    background-color: var(--color-default) !important;
    border-color: var(--color-default);
}

.cardVreme {
    background-color: var(--color-secondary) !important;
}

wh1,
wh2,
wh3,
wh4,
wh5,
wh6 {
    font-family: Sora;
    color: var(--color-font);
}

.wh1 {
    font-size: 1.5rem;
}

.wh2 {
    font-size: 1.2rem;
}

.wh3 {
    font-size: 0.95rem;
}

.wh4 {
    font-size: 0.8rem;
}

.wh5 {
    font-size: 0.7rem;
    font-weight: bold;
}

.filterPng {
    filter: invert(100%);
}

/* charts */
.chartFont {
    color: var(--color-font);
    font-family: 'Roboto';
    font-style: italic;
}

.h3-ext {
    color: var(--color-primary);
}

/* IAMGE */

.img-toolbar {
    width: 16px;
    height: 16px;
}

.img-toolbar-out {
    position: relative;
    width: 16px;
    height: 16px;
    left:450
}