﻿
body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #888;
    line-height: 30px;
    text-align: center;
}

@font-face {
    font-family: "fontAwesome";
    src: url("fonts/fontawesome-webfont.woff") format('woff');
}

.leaflet-control-container {
    position: absolute;
    right: 56px
}

.logoImage {
    margin-right: 10px;    
}
.logoText {
    margin-top: 1px;
}

strong {
    font-weight: 500;
}

a {
    color: #f35b3f;
    border-bottom: 1px dashed #f35b3f;
    text-decoration: none;
    transition: all .3s;
}

    a:hover, a:focus {
        color: #f35b3f;
        border: 0;
        text-decoration: none;
    }

h1, h2 {
    margin-top: 10px;
    font-size: 38px;
    font-weight: 100;
    color: #555;
    line-height: 50px;
}

h3 {
    font-size: 22px;
    font-weight: 300;
    color: #555;
    line-height: 30px;
}

h4 {
    font-size: 18px;
    font-weight: 300;
    color: #555;
    line-height: 26px;
}

img {
    max-width: 100%;
}

.medium-paragraph {
    font-size: 18px;
    line-height: 34px;
}

::-moz-selection {
    background: #f35b3f;
    color: #fff;
    text-shadow: none;
}

::selection {
    background: #f35b3f;
    color: #fff;
    text-shadow: none;
}


/***** Wrapper *****/

.wrapper {
    display: block;
}


/***** Sidebar *****/

.sidebar {
    width: 250px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: -255px;
    z-index: 999;
    background: #333;
    color: #fff;
    transition: all .3s;
    box-shadow: 3px 3px 3px rgba(51, 51, 51, 0.5);
    text-align: left;
    overflow-y: auto;
}

    .sidebar.active {
        left: 0;
    }

.dismiss {
    width: 35px;
    height: 35px;
    position: absolute;
    top: 10px;
    right: 10px;
    transition: all .3s;
    background: #444;
    border-radius: 4px;
    text-align: center;
    line-height: 35px;
    cursor: pointer;
}

    .dismiss:hover, .dismiss:focus {
        background: #555;
        color: #fff;
    }


.sublist-group-item {
    overflow: hidden;
    position: relative;
    display: block;
    padding: 10px 15px;
    margin-bottom: -1px;
    background-color: #444;
    border: 1px solid #ddd;
    height: 32px;
}

.sidebar .logo {
    padding: 40px 20px;
    border-bottom: 1px solid #444;
    font-size: 32px;
    color: #eee;
    transition: all .3s;
}

.sidebar ul.menu-elements {
    padding: 0px 0;
    border-bottom: 1px solid #444;
    transition: all .3s;
}

.sidebar ul li a {
    display: block;
    padding: 3px 10px;
    border: 0;
    color: #fff;
}

    .sidebar ul li a:hover,
    .sidebar ul li a:focus,
    .sidebar ul li.active > a:hover,
    .sidebar ul li.active > a:focus {
        outline: 0;
        background: #555;
        color: #fff;
    }

    .sidebar ul li a i {
        margin-right: 5px;
    }

.sidebar ul li.active > a, a[aria-expanded="true"] {
    background: #444;
    color: #fff;
}

.sidebar ul ul a {
    background: #444;
    padding-left: 30px;
    font-size: 14px;
}

.sidebar ul ul li.active > a {
    background: #555;
}

.sidebar a[data-toggle="collapse"] {
    position: relative;
}

.sidebar .dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

/***** Content *****/

.content {
    width: 100%;
    height: 100vh;
    background-color: #fff;
    transition: all 0.3s;
}

.modal-dialog {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
}

/*td {
    text-align: left;
    vertical-align: middle;
    font-size: small;
    line-height: 16px;
}*/
.okartTable {
    text-align: left;
    vertical-align: middle;
    font-size: 12px;
    line-height: 16px;
}

.open-menu {
    position: fixed;
    top: 20px;
    left: 10px;
    z-index: 997;
    box-shadow: 3px 3px 3px rgba(51, 51, 51, 0.2);
}

    .open-menu.btn-customized,
    .open-menu.btn-customized:hover,
    .open-menu.btn-customized:active,
    .open-menu.btn-customized:focus,
    .open-menu.btn-customized:active:focus,
    .open-menu.btn-customized.active:focus,
    .open-menu.btn-customized.btn.btn-primary:not(:disabled):not(.disabled):active,
    .open-menu.btn-customized.btn.btn-primary:not(:disabled):not(.disabled):active:focus {
        box-shadow: 3px 3px 3px rgba(51, 51, 51, 0.2);
    }


/***** Buttons *****/

a.btn-customized {
    margin-left: 5px;
    margin-right: 5px;
    padding: .75rem 1.5rem;
    background: rgba(256, 256, 256, 0.4);
    border-radius: 4px;
    border: 1;
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    box-shadow: none;
}

    a.btn-customized:hover,
    a.btn-customized:active,
    a.btn-customized:focus,
    a.btn-customized:active:focus,
    a.btn-customized.active:focus,
    a.btn-customized.btn.btn-primary:not(:disabled):not(.disabled):active,
    a.btn-customized.btn.btn-primary:not(:disabled):not(.disabled):active:focus {
        outline: 0;
        background: rgba(64, 64, 64, 0.7);
        border: 0;
        color: #fff;
        box-shadow: none;
    }
    
