/*
Copyright (C) flashcomp.cz - All Rights Reserved
Unauthorized copying of this file, via any medium is strictly prohibited
Proprietary and confidential
Written by Martin Maly <malymartin90@gmail.com>, 02-01-2017
*/
/* 
    Created on : 2.1.2017, 18:17:05
    Author     : malik
*/

/* 1. ZÁKLADNÍ NASTAVENÍ POZADÍ */
body {
    background-color: #f8f9fa;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cdefs%3E%3Cpattern id='p' width='16' height='16' patternUnits='userSpaceOnUse'%3E%3Cpath d='M0 16V0H16' fill='none' stroke='rgba(0,0,0,0.06)' stroke-width='1'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23p)'/%3E%3C/svg%3E");
    background-size: 160px 160px;
}
.icon-box {
    width:56px;
    height:56px;
}
.background1{
    background: rgba(220,220,220, .9);
}
.background-white{
    background: rgba(255,255,255, 1);
}
.loader{
    position: fixed;
    width: 100vw;
    height: 100vh;
    display: block;
    align-items: center;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(50,50,50, .7);
    vertical-align: middle;
    text-align: center;
    padding: 0;
    background: rgba(50,50,50, .7) url('/css/ripple-4eed46b6c7adb062cdf3835b24f0f066.svg') no-repeat center center;
    z-index: 1051;
}
.loader > img{
    position:absolute;
    top:0;
    bottom:0;
    margin:auto;
    
}

.content-wrapper{
   
    margin: 0 0 0 55px;
    padding: 0 !important;
    width: 100%;
    
}
/*.loader .fa {
    color: rgb(100,100,100);
    font-size: 150px;
    display: flex;
    margin: 0 auto;
}*/

/*.container-main{
    margin: 0 0 0 55px;
}*/


/* skrytý text default */
.rs-text {
    opacity: 0;
    visibility: hidden;

    flex-grow: 1;
    white-space: nowrap;
    color: #fff;
    font-size: 1 rem;

    transition: opacity 0.15s ease;
}

/* hover na cely radek */
.rs-item:hover {
    background-color: #6c757d; /* sede pozadi */
}

/* rozsireni + zobrazeni textu */
.rs-item:hover .rs-text {
    opacity: 1;
    visibility: visible;
}

/* zarovnani a rozsireni linku */
.rs-item:hover .nav-link {
    width: 200px;              /* rozsireni radku */
    
}
.rs-item .nav-link {
    width: 55px;              /* rozsireni radku */
    
}

/* aby to neorezavalo */
.nav {
    overflow: visible;
}

/* divider jen pres sirku sidebaru (ne pres rozbaleny text) */
.rs-divider {
    position: relative;
    border-top: 0 !important; /* vypneme bootstrap border-top */
}

.rs-divider::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 55px; /* sirka sidebaru */
    border-top: 1px solid rgba(255,255,255,0.25);
}