

#sidebar-wrapper.toggled {
    width: 300px;                       /* SZEROKOŚĆ SIDEBARA */
}

.sidebar-wrapper-choices.toggled {
    width: 100%;                       /* SZEROKOŚĆ SIDEBARA */
}

#sidebar-wrapper {
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    background: #333333;                /* KOLOR SIDEBARA */
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    transition: all 0.5s ease;
    width: 0;
    z-index: 20002;
}

#sidebar-wrapper::-webkit-scrollbar, .sidebar-wrapper-choices::-webkit-scrollbar {
    display: none;
}

.sidebar-wrapper-choices {
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    background: rgba(51, 51, 51, 0.7); 
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    transition: all 0.5s ease;
    width: 0;
    z-index: 20002;
}

.sidebar-wrapper-choices.white {
    background-color: white;
}

.sidebar-wrapper-choices-row {
    display: flex; 
    flex-direction:row; 
    justify-content: center; 
    align-content: center;
    height:100%;
}

.sidebar-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    width: 300px;     
  right: 0;/* SZEROKOŚĆ ZAWARTOŚCI SIDEBARA */
}

.sidebar-nav.full-width {
    width: 100%;     
  right: 0;/* SZEROKOŚĆ ZAWARTOŚCI SIDEBARA */
}


.sidebar-nav li {
    display: inline-block;
    line-height: 20px;
    position: relative;
    width: 100%;
}

.sidebar-nav li a {
    color: white;
    display: block;
    padding: 10px 15px 10px 30px;
    text-decoration: none;
}

.sidebar-nav .dropdown-menu {
    background-color: grey;             /* KOLOR BG DROPDOWNA */
    border-radius: 0;
    border: none;
    box-shadow: none;
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
}

.sidebar-nav li a:hover,
.sidebar-nav li a:active,
.sidebar-nav li a:focus,
.sidebar-nav li.active a,
.sidebar-nav li.active a:hover,
.sidebar-nav li.active a:active,
.sidebar-nav li.active a:focus {
    background-color: #272727;
    text-decoration: none;
}

.sidebar-nav > .sidebar-brand {
    font-size: 20px;
    height: 65px;
    line-height: 44px;
}

.hamburger {
    background: transparent;
    border: none;
    display: block;
    height: 32px;
    margin-right: 15px;
    position: fixed;
    top: 10px;
    width: 22px;
    left: 20px;
}

.hamburger:hover,
.hamburger:focus,
.hamburger:active {
    outline: none;
}

.hamburger.open-nav:before {
    -webkit-transform: translate3d(0, 0, 0);
    -webkit-transition: all 0.35s ease-in-out;
    color: #ffffff;
    content: '';
    display: block;
    font-size: 14px;
    line-height: 32px;
    opacity: 0;
    text-align: center;
    width: 100px;
}

.hamburger.open-nav:hover before {
    -webkit-transform: translate3d(-100px, 0, 0);
    -webkit-transition: all 0.35s ease-in-out;
    display: block;
    opacity: 1;
}

.hamburger.open-nav:hover .hamb-top {
    -webkit-transition: all 0.35s ease-in-out;
    top: 5px;
}

.hamburger.open-nav:hover .hamb-bottom {
    -webkit-transition: all 0.35s ease-in-out;
    bottom: 5px;
}

.hamburger.open-nav .hamb-top {
    -webkit-transition: all 0.35s ease-in-out;
    background-color: rgba(255, 255, 255, 1.0);
    top: 9px;
}

.hamburger.open-nav .hamb-middle {
    background-color: rgba(255, 255, 255, 1.0);
    margin-top: -1px;
    top: 50%;
}

.hamburger.open-nav .hamb-bottom {
    -webkit-transition: all 0.35s ease-in-out;
    background-color: rgba(255, 255, 255, 1.0);
    bottom: 9px;
}

.hamburger.open-nav .hamb-top,
.hamburger.open-nav .hamb-middle,
.hamburger.open-nav .hamb-bottom {
    height: 2px;
    border-radius: 1px;
    left: 0;
    position: absolute;
    width: 100%;
}

.ev-nav-overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 20001;
}
.ev-nav-menu-overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.0);
    z-index: 20001;
}

.ev-nav-buttons-right {
	float: right !important;
}
.ev-nav-button.small {
	height: 48px;
    width: 50%;
}



.ev-nav-button {
    background: transparent;
    border: none;
    display: inline-block;
    height: 50px;
    width: 50px;
    vertical-align: middle;
}

.ev-nav-button.item-choice {
    margin-bottom:20px;
    flex-basis: content; 
    width: 100%; 
    text-align:left;
}

.ev-nav-button>i, .ev-nav-button>div>i {
    font-size: 21px;
    color: white;
}

.ev-nav-button.item-choice>i {
    font-size: 30px;
    color: white;
}


.ev-nav-title {
    color: white;
    font-size: 19px;
    width: auto;
}


.ev-nav-button:hover,
.ev-nav-button:focus,
.ev-nav-button:active {
    outline: none;
}

.ev-nav-topbar .ev-nav-button:hover,
.ev-nav-topbar .ev-nav-button:active {
    background: #272727;
}
.ev-nav-topbar .ev-nav-button.active {
    background: #272727;
}
.ev-nav-topbar .ev-nav-button.ev-nav-title:hover,
.ev-nav-topbar .ev-nav-button.ev-nav-title:active {
    background: none;
}

.ev-nav-topbar .ev-nav-button.disabled >i {
    color: #aaaaaa;
}

.ev-nav-bottombar .ev-nav-button>i, .ev-nav-bottombar .ev-nav-button>div>i {
    color: #333333;
}
.ev-nav-bottombar .ev-nav-button:hover,
.ev-nav-bottombar .ev-nav-button:active {
    color: #cccccc;
}
.ev-nav-bottombar .ev-nav-button.active {
    background: #cccccc;
}
.ev-nav-bottombar .ev-nav-button.disabled>i, .ev-nav-bottombar .ev-nav-button.disabled>div>i , 
.sidebar-wrapper-choices .ev-nav-button.disabled>i, .sidebar-wrapper-choices .ev-nav-button.disabled>div>i{
    color: #cccccc;
}
.ev-nav-bottombar .ev-nav-button.disabled>div.highlight {
	border-color: #cccccc;
}
.ev-nav-bottombar .ev-nav-button>div.highlight {
  display: inline-block;
  border-color: rgba(76, 179, 29, 1.0);
  border-width: 2px;
  border-style: solid;
  content: '';
  height: 32px;
  width: 32px;
  position: relative;
  top: 0px;
  right: 0px;
  border-radius: 50%;
}

.ev-rotate-45 {
	display: inline-block; 
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.ev-rotate-90 {
	display: inline-block; 
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.ev-nav-bottombar {
	background: linear-gradient(#eeeeee, #dddddd);
	box-shadow: 0px -5px 10px rgba(200,200,200,0.3), inset 0px -1px 3px rgba(70, 70, 70, 0.9);
    border-top: #cccccc;
    border-top-width: 1px;
    border-top-style: solid;
    display: block;
    height: 48px;
    position: fixed;
    bottom: 0px;
    width: 100%;
    left: 0px;
    z-index: 10;
    margin-bottom: constant(safe-area-inset-bottom); /* iOS 11.0 */
    margin-bottom: env(safe-area-inset-bottom); /* iOS 11.2 */    
}
.ev-nav-bottombar.z-plus {
    z-index: 20000;
}

.ev-nav-topbar {
	background: linear-gradient(#666666, #333333);
    border: none;
    display: block;
    height: 50px;
    position: fixed;
    top: 0px;
    width: 100%;
    left: 0px;
    z-index: 10;
}
.ev-nav-topbar.z-plus {
    z-index: 11;
}

/* FOR left side */
/*
.navbar-fixed-top {
    left: auto;
}
*/






.swiper-container {
  width: 100%;
  height: 100%;
  margin: 50px auto 0;
}

.swiper-slide {
  background: #fff;
  color: #333;
  font-size: 1.8rem;
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-container-horizontal > .swiper-pagination {
  top: auto;
  bottom: 0;
}
.swiper-container-horizontal > .swiper-pagination .swiper-pagination-bullet {
  margin: 0;
}

.active-mark {
  background: #ffeb3b;
  width: 25%;
  height: 4px;
  position: absolute;
  left: 0;
  top: 36px;
  transition: left 0.2s ease-out;
}

.swiper-pagination-bullet {
  background-color: #cccccc;
  border-radius: 0;
  box-sizing: border-box;
  color: #4b4b4b;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: normal;
  opacity: 1;
  height: 40px;
  width: 25%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: font-weight 0.22s ease;
}
.swiper-pagination-bullet:nth-of-type(1).swiper-pagination-bullet-active ~ .active-mark {
  left: 0%;
}
.swiper-pagination-bullet:nth-of-type(2).swiper-pagination-bullet-active ~ .active-mark {
  left: 25%;
}
.swiper-pagination-bullet:nth-of-type(3).swiper-pagination-bullet-active ~ .active-mark {
  left: 50%;
}
.swiper-pagination-bullet:nth-of-type(4).swiper-pagination-bullet-active ~ .active-mark {
  left: 75%;
}
.swiper-pagination-bullet:first-of-type.swiper-pagination-bullet-active ~ .active-mark {
  left: 0;
}

.swiper-pagination-bullet-active {
  color: red;
}





/* Dropdown container - needed to position the dropdown content */
.dropdown {
    float: left;
    
}

/* Style the dropdown button to fit inside the topnav */
.dropdown .dropbtn {
    font-size: inherit; 
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}

/* Style the dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    font-size: 13px;
    font-weight: 300;
	position: fixed;
    top: 50px;
    right: 0px;     
}

/* Style the links inside the dropdown */
.dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

/* Add a dark background on topnav links and the dropdown button on hover */
.dropdown:hover .dropbtn {
    background-color: #555;
    color: white;
}

/* Add a grey background to dropdown links on hover */
.dropdown-content a:hover {
    background-color: #ddd;
    color: black;
}

/* Show the dropdown menu when the user moves the mouse over the dropdown button */
.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown.active .dropdown-content {
    display: block;
}




