﻿@charset "utf-8";
@import "/assets/css/reset.css";
@import url('https://fonts.googleapis.com/css?family=Ubuntu:300,400,700');


/* Large desktop */
@media (max-width: 1199px) {  }

/* Portrait tablet to landscape and desktop */
@media (max-width: 979px) {  }

/* Landscape phone to portrait tablet */
@media (max-width: 767px) {  }

/* Landscape phones and down */
@media (max-width: 534px) {  }

/* Landscape phones and down */
@media (max-width: 320px) {  }


@-ms-viewport {
    width: device-width;
}



/***************************************************
Global styles
***************************************************/
html {
    width: 100%;
    height: 100%;
    -ms-text-size-adjust: none;
    box-sizing: border-box;
}
*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    font-family: "Ubuntu", Tahoma, Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #575757;
    background: #fff;
    margin: 0;
    min-width: 320px;
}

a {
    color: #575757;
}
a:hover {
    color: #63a9cd;
}


/***************************************************
Szkielet
***************************************************/

.container {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1400px;
    position: relative;
}

.header-wrapper {
    height: 120px;
    position: relative;
    background: #f2f2f2;
    border-bottom: 1px solid #fff;

}
.header-wrapper .container {
    height: 100%;
}
.header-logo {
    position: relative;
    left: 0;
    top: 35px;
}

.header-langs {
    position: absolute;
    right: 20px;
    top: 10px;
}
.header-langs img {
    opacity: 0.5;
    margin-left: 5px;
}
.header-langs img.current {
    opacity: 1;
}


.footer-wrapper {
    background: #eee;
    padding: 40px 0;
}
.footer-links {
    text-align: left;
}
.footer-links li {
    display: inline-block;
}
.footer-links li:after {
    content: '';
    display: inline-block;
    border-radius: 50%;
    width: 5px;
    height: 5px;
    background: #63a9cd;
    margin: 0 11px 3px 15px;
}
.footer-links li:last-child:after {
    display: none;
}
.footer-links li a {
    font-weight: 500;
    text-transform: uppercase;
}


.footer-copy {
    text-align: right;
}

.studiomh {
    display: inline-block;
    margin: -1px 0 -1px 30px!important;
}

@media (max-width: 534px) {
    .footer-links {
        text-align: center;
        margin-bottom: 20px;
    }
}





.g-grid {
    padding: 0 10px;
    width: 100%;
    margin: 0 auto;
    max-width: 1200px;
}
.g-row, .g-row {
    margin-left: -20px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}

.g-row-reverse {
    -webkit-flex-wrap: wrap-reverse;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
}

.g-row-top {
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    -ms-grid-row-align: flex-start;
    align-items: flex-start;
}

.g-row-middle {
    -webkit-align-items: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
}

.g-row-bottom {
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    -ms-grid-row-align: flex-end;
    align-items: flex-end;
}

.g-row-left {
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.g-row-center {
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.g-row-right {
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.g-row-around {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.g-row-between {
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}


[class*="g-col-"] {
    min-height: 1px;
    padding-left: 20px;
    -webkit-flex: 1 1 100%;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    max-width: 100%;
}

.g-col-center {
    margin-right: auto;
    margin-left: auto;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.g-col-content {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.g-col-auto {
    -webkit-flex: 1 1 0%;
    -ms-flex: 1 1 0%;
    flex: 1 1 0%;
}

.g-col-right {
    margin-right: 0;
    margin-left: auto;
}

.g-col-top {
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.g-col-middle {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
}

.g-col-bottom {
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end;
}

.g-col-1 {
    -webkit-flex-basis: 8.33333%;
    -ms-flex-preferred-size: 8.33333%;
    flex-basis: 8.33333%;
    max-width: 8.33333%;
}

.g-col-2 {
    -webkit-flex-basis: 16.66667%;
    -ms-flex-preferred-size: 16.66667%;
    flex-basis: 16.66667%;
    max-width: 16.66667%;
}

.g-col-3 {
    -webkit-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
}

.g-col-4 {
    -webkit-flex-basis: 33.33333%;
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%;
}

.g-col-5 {
    -webkit-flex-basis: 41.66667%;
    -ms-flex-preferred-size: 41.66667%;
    flex-basis: 41.66667%;
    max-width: 41.66667%;
}

.g-col-6 {
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
}

.g-col-7 {
    -webkit-flex-basis: 58.33333%;
    -ms-flex-preferred-size: 58.33333%;
    flex-basis: 58.33333%;
    max-width: 58.33333%;
}

.g-col-8 {
    -webkit-flex-basis: 66.66667%;
    -ms-flex-preferred-size: 66.66667%;
    flex-basis: 66.66667%;
    max-width: 66.66667%;
}

.g-col-9 {
    -webkit-flex-basis: 75%;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
}

.g-col-10 {
    -webkit-flex-basis: 83.33333%;
    -ms-flex-preferred-size: 83.33333%;
    flex-basis: 83.33333%;
    max-width: 83.33333%;
}

.g-col-11 {
    -webkit-flex-basis: 91.66667%;
    -ms-flex-preferred-size: 91.66667%;
    flex-basis: 91.66667%;
    max-width: 91.66667%;
}

.g-col-12 {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
}

.g-gutter-reset {
    margin-left: 0;
}
.g-gutter-reset > [class*="g-col-"] {
    padding-left: 0;
}
.g-gutter-30 {
    margin-left: -30px;
}
.g-gutter-30 > [class*="g-col-"] {
    padding-left: 30px;
}

.g-pdd {
    margin-top: -20px;
}
.g-pdd > div {
    padding-top: 20px;
}
.g-pddY-10 {
    margin-top: -10px;
}
.g-pddY-10 > * {
    padding-top: 10px;
}
.g-pddY-20 {
    margin-top: -20px;
}
.g-pddY-20 > * {
    padding-top: 20px;
}
.g-pddY-50 {
    margin-top: -50px;
}
.g-pddY-50 > div {
    padding-top: 50px;
}


@media (min-width: 535px) {
    .g-col-s-1 {
        -webkit-flex-basis: 8.33333%;
        -ms-flex-preferred-size: 8.33333%;
        flex-basis: 8.33333%;
        max-width: 8.33333%;
    }
    .g-col-s-2 {
        -webkit-flex-basis: 16.66667%;
        -ms-flex-preferred-size: 16.66667%;
        flex-basis: 16.66667%;
        max-width: 16.66667%;
    }
    .g-col-s-3 {
        -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%;
    }
    .g-col-s-4 {
        -webkit-flex-basis: 33.33333%;
        -ms-flex-preferred-size: 33.33333%;
        flex-basis: 33.33333%;
        max-width: 33.33333%;
    }
    .g-col-s-5 {
        -webkit-flex-basis: 41.66667%;
        -ms-flex-preferred-size: 41.66667%;
        flex-basis: 41.66667%;
        max-width: 41.66667%;
    }
    .g-col-s-6 {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%;
    }
    .g-col-s-7 {
        -webkit-flex-basis: 58.33333%;
        -ms-flex-preferred-size: 58.33333%;
        flex-basis: 58.33333%;
        max-width: 58.33333%;
    }
    .g-col-s-8 {
        -webkit-flex-basis: 66.66667%;
        -ms-flex-preferred-size: 66.66667%;
        flex-basis: 66.66667%;
        max-width: 66.66667%;
    }
    .g-col-s-9 {
        -webkit-flex-basis: 75%;
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%;
    }
    .g-col-s-10 {
        -webkit-flex-basis: 83.33333%;
        -ms-flex-preferred-size: 83.33333%;
        flex-basis: 83.33333%;
        max-width: 83.33333%;
    }
    .g-col-s-11 {
        -webkit-flex-basis: 91.66667%;
        -ms-flex-preferred-size: 91.66667%;
        flex-basis: 91.66667%;
        max-width: 91.66667%;
    }
    .g-col-s-12 {
        -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }
    .g-col-s-content {
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }
    .g-col-s-auto {
        -webkit-flex: 1 1 0%;
        -ms-flex: 1 1 0%;
        flex: 1 1 0%;
    }
}

@media (min-width: 768px) {
    .g-col-m-1 {
        -webkit-flex-basis: 8.33333%;
        -ms-flex-preferred-size: 8.33333%;
        flex-basis: 8.33333%;
        max-width: 8.33333%;
    }
    .g-col-m-2 {
        -webkit-flex-basis: 16.66667%;
        -ms-flex-preferred-size: 16.66667%;
        flex-basis: 16.66667%;
        max-width: 16.66667%;
    }
    .g-col-m-3 {
        -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%;
    }
    .g-col-m-4 {
        -webkit-flex-basis: 33.33333%;
        -ms-flex-preferred-size: 33.33333%;
        flex-basis: 33.33333%;
        max-width: 33.33333%;
    }
    .g-col-m-5 {
        -webkit-flex-basis: 41.66667%;
        -ms-flex-preferred-size: 41.66667%;
        flex-basis: 41.66667%;
        max-width: 41.66667%;
    }
    .g-col-m-6 {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%;
    }
    .g-col-m-7 {
        -webkit-flex-basis: 58.33333%;
        -ms-flex-preferred-size: 58.33333%;
        flex-basis: 58.33333%;
        max-width: 58.33333%;
    }
    .g-col-m-8 {
        -webkit-flex-basis: 66.66667%;
        -ms-flex-preferred-size: 66.66667%;
        flex-basis: 66.66667%;
        max-width: 66.66667%;
    }
    .g-col-m-9 {
        -webkit-flex-basis: 75%;
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%;
    }
    .g-col-m-10 {
        -webkit-flex-basis: 83.33333%;
        -ms-flex-preferred-size: 83.33333%;
        flex-basis: 83.33333%;
        max-width: 83.33333%;
    }
    .g-col-m-11 {
        -webkit-flex-basis: 91.66667%;
        -ms-flex-preferred-size: 91.66667%;
        flex-basis: 91.66667%;
        max-width: 91.66667%;
    }
    .g-col-m-12 {
        -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }
    .g-col-m-content {
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }
    .g-col-m-auto {
        -webkit-flex: 1 1 0%;
        -ms-flex: 1 1 0%;
        flex: 1 1 0%;
    }
}

@media (min-width: 980px) {
    .g-col-l-1 {
        -webkit-flex-basis: 8.33333%;
        -ms-flex-preferred-size: 8.33333%;
        flex-basis: 8.33333%;
        max-width: 8.33333%;
    }
    .g-col-l-2 {
        -webkit-flex-basis: 16.66667%;
        -ms-flex-preferred-size: 16.66667%;
        flex-basis: 16.66667%;
        max-width: 16.66667%;
    }
    .g-col-l-3 {
        -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%;
    }
    .g-col-l-4 {
        -webkit-flex-basis: 33.33333%;
        -ms-flex-preferred-size: 33.33333%;
        flex-basis: 33.33333%;
        max-width: 33.33333%;
    }
    .g-col-l-5 {
        -webkit-flex-basis: 41.66667%;
        -ms-flex-preferred-size: 41.66667%;
        flex-basis: 41.66667%;
        max-width: 41.66667%;
    }
    .g-col-l-6 {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%;
    }
    .g-col-l-7 {
        -webkit-flex-basis: 58.33333%;
        -ms-flex-preferred-size: 58.33333%;
        flex-basis: 58.33333%;
        max-width: 58.33333%;
    }
    .g-col-l-8 {
        -webkit-flex-basis: 66.66667%;
        -ms-flex-preferred-size: 66.66667%;
        flex-basis: 66.66667%;
        max-width: 66.66667%;
    }
    .g-col-l-9 {
        -webkit-flex-basis: 75%;
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%;
    }
    .g-col-l-10 {
        -webkit-flex-basis: 83.33333%;
        -ms-flex-preferred-size: 83.33333%;
        flex-basis: 83.33333%;
        max-width: 83.33333%;
    }
    .g-col-l-11 {
        -webkit-flex-basis: 91.66667%;
        -ms-flex-preferred-size: 91.66667%;
        flex-basis: 91.66667%;
        max-width: 91.66667%;
    }
    .g-col-l-12 {
        -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }
    .g-col-l-content {
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }
    .g-col-l-auto {
        -webkit-flex: 1 1 0%;
        -ms-flex: 1 1 0%;
        flex: 1 1 0%;
    }
}



[class*="g-hide-"] {
    display: block;
}

[class*="g-show-"] {
    display: none;
}

@media (min-width: 535px) {
    .g-show-s {
        display: block;
    }
    .g-hide-s {
        display: none;
    }
}

@media (min-width: 768px) {
    .g-show-m {
        display: block;
    }
    .g-hide-m {
        display: none;
    }
}

@media (min-width: 980px) {
    .g-show-l {
        display: block;
    }
    .g-hide-l {
        display: none;
    }
}

/***************************************************
content
***************************************************/

.content p {
    margin: 15px 0;
    line-height: 1.7em;
}

.content h1 {
    font-size: 30px;
    margin: 40px 0;
}
.content h2 {
    font-weight: bold;
    font-size: 20px;
    margin: 30px 0;
}
.content h3 {
    font-weight: bold;
    font-size: 18px;
    margin: 20px 0 15px 0;
}
.content h4 {
    font-weight: bold;
    margin: 10px 0;
    font-size: 15px;
}
.content h5 {
    font-weight: 600;
    margin: 5px 0 15px;
    font-size: 13px;
}

@media (max-width: 534px) {
    .content h1 {
        font-size: 24px;
    }
}


.content ul {
    display: block;
    list-style-position: outside;
    list-style-type: disc;
    margin: 0;
    padding-left: 20px;
    line-height: 1.5em;
}

/*.content ul {
    display: block;
    list-style-type: none;
    margin: 0;
    padding: 0;
    line-height: 1.5em;
}
.content ul li {
    position: relative;
    padding-left: 30px;
}
.content ul li::before {
    content: "";
    position: absolute;
    background: #28cb80;
    display: block;
    width: 6px;
    height: 6px;
    top: 7px;
    left: 10px;
    border-radius: 50%;
}*/


.content ol {
    display: block;
    list-style-position: outside;
    list-style-type: decimal;
    margin: 0;
    padding-left: 20px;
    line-height: 1.5em;
}

.content p:first-child, .content h1:first-child, .content h2:not(.nonFirst):first-child, .content h3:not(.nonFirst):first-child {
    margin-top: 0;
}
.content p:last-child {
    margin-bottom: 0;
}

/***************************************************
menu
***************************************************/

.navbar {
    position: absolute;
    top: 0;
    right: 20px;
}

.navbar ul.navbar-main {
    display: inline-block;
}
.navbar ul.navbar-main li {
    float: left;
    margin-left: 10px;
}
.navbar ul.navbar-main li a {
    font-size: 14px;
    text-transform: uppercase;
    text-align: center;
    color: #9b9b9b;
    font-weight: 800;
    padding: 50px 15px 10px 15px;
    display: block;
    transition: background .15s linear;
    -moz-transition: background .15s linear;
    -webkit-transition: background .15s linear;
}
.navbar ul.navbar-main li a:hover, .navbar ul.navbar-main li a.current {
    color: #fff;
    background: #63a9cd;
}

.navbar ul.navbar-profile {
    display: inline-block;
    width: 230px;
    text-align: right;
    vertical-align: 25px;
}
.navbar ul.navbar-profile li {
    display: inline-block;
    margin-left: 10px;
}
.navbar ul.navbar-profile li a {
    color: #63a9cd;
    font-size: 12px;
    font-weight: 500;
    padding: 3px 2px;
    display: inline-block;
}
.navbar ul.navbar-profile li a:hover {
    color: #000;
}

@media (max-width: 1199px) {
    .navbar {
        display: none;
    }
}



.mobile-overlay {
    display: none;
    position: fixed;
    top: -200px;
    right: -200px;
    bottom: -200px;
    left: -200px;
    background: rgba(68, 68, 68, 0.5);
    z-index: 999998;
}

.sidr-animating .mobile-overlay,
.sidr-open .mobile-overlay {
    display: block;
}

.mobile-offcanvas {
    display: block;
}

@media (min-width: 1023px) {
    .mobile-offcanvas {
        display: block;
    }
}

.mobile-nav {
    float: right;
    display: block;
    height: 36px;
    line-height: 36px;
    text-align: center;
    text-decoration: none;
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -18px;
}

@media (min-width: 1200px) {
    .mobile-nav {
        display: none;
    }
}

.mobile-nav:hover {
    text-decoration: none;
}

.mobile-nav span {
    position: relative;
    padding-left: 35px;
    color: #9b9b9b;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
}
.mobile-nav span::after {
    display: block;
    position: absolute;
    top: 17px;
    left: 0;
    width: 25px;
    height: 3px;
    background: #9b9b9b;
    box-shadow: 0 6px 0 #9b9b9b,
    0 -6px 0 #9b9b9b;
    content: '';
}


.sidr {
    display: block;
    position: fixed;
    top: 0;
    width: 200px;
    height: 100%;
    background: #fff;
    z-index: 999999;
    overflow-x: hidden;
    overflow-y: auto;
}

.sidr ul {
    margin: 30px 10px;
    padding: 0;
    list-style: none;
}
.sidr li {
    border-bottom: 1px solid #e4e4e4;
}
.sidr a {
    display: block;
    padding: 5px;
    margin: 5px 0;
    color: #000;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
}
.sidr a:hover {
    color: #e5001d;
}


.sidr.right {
    right: -200px;
    left: auto;
}

.sidr.left {
    right: auto;
    left: -200px;
}

.sidr-open .sidr {
    box-shadow: 1px 0 0 #ccc;
}



/***************************************************
			        podmenu
***************************************************/

.subnav-wrapper ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.subnav-wrapper ul li {
    float: left;
    margin-right: 10px;
    margin-bottom: 5px;
}
.subnav-wrapper ul li a {
    font-size: 13px;
    text-transform: uppercase;
    color: #9b9b9b;
    font-weight: 800;
    display: block;
    background: #f8f8f8;
    padding: 10px 20px;
    transition: background .15s linear;
    -moz-transition: background .15s linear;
    -webkit-transition: background .15s linear;
}

.subnav-wrapper ul li a:hover, .subnav-wrapper ul li.current a {
    color: #fff;
    background: #63a9cd;
}


/***************************************************
			        SLIDER
***************************************************/

.slider-wrapper {
    margin: 0 auto;
    z-index: 1;
    overflow: hidden;
    background: #e9e9e9;
}

.slider {
    max-width: 1200px;
    margin: 0 auto;
}

.slider-wrapper .slick-slide {
    position: relative;
}
.slider-wrapper .slick-slide img {
    width: 100%;
}

.slider-wrapper .slick-slide>a {
    color: #fff;
    font-size: 24px;
    font-weight: normal;
    text-align: right;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: absolute;
    z-index: 99999;
    background: #000;
    bottom: 0;
    left: 50%;
    right: 0;
    padding: 30px 40px;
    display: block;
}
.slider-wrapper .slick-slide>a[href]:hover {
    background: #000;
}
.slider-wrapper .slick-slide>a h1 {
    font-size: 49px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
}



/* PAGER */

.slick-dots {
    text-align: center;
    font-size: .85em;
    font-weight: bold;
    color: #666;
    padding: 7px 2px;
    z-index: 99;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.slick-dots li {
    float: left;
}
.slick-dots li button {
    text-indent: -9999px;
    display: block;
    width: 18px;
    height: 18px;
    margin: 0 5px;
    outline: 0;
    position: relative;
    background: #261e4d;
    border: 3px solid #fff;
    border-radius: 50%;
    cursor: pointer;
}
.slick-dots li button:hover,
.slick-dots li.slick-active button {
    background: #63a9cd;
}




/***************************************************
box profile
***************************************************/

.box-profile {
    position: absolute;
    top: 80px;
    right: 20px;
    font-size: 12px;
    text-align: right;
    line-height: 16px;
}
.box-profile span {
    color: #63a9cd;
}

.box-profile fieldset input.form-control {
    width: 150px;
}
.box-profile fieldset .form-btns {
    margin-top: 10px;
}
.box-profile fieldset .btn {
    float: right;
}
.box-profile fieldset a.link {
    margin-top: 7px;
    margin-right: 7px;
    float: left;
}


/***************************************************
Specifics
***************************************************/

.right {
    float: right!important;
}
.left {
    float: left!important;
}
.center {
    float: none!important;
    margin-left: auto!important;
    margin-right: auto!important;
}

.txt-left {
    text-align: left;
}
.txt-right {
    text-align: right;
}
.txt-center {
    text-align: center;
}



.label {
    display: inline-block;
    width: 100px;
}

hr {
    background: #C2C2C2;
    height: 1px;
    border: 0;
    margin: 30px 0;
}

.img-6-right, .img-6-left, .img-4-right, .img-4-left {
    width: 100%;
    margin: 20px 0;
}
p img {
    margin-top: 0!important;
}
@media (min-width: 534px) {
    .img-6-right {
        width: 50%;
        float: right;
        margin: 20px 0 20px 40px;
    }
    .img-6-left {
        width: 50%;
        float: left;
        margin: 20px 40px 20px 0;
    }
    .img-4-right {
        width: 33%;
        float: right;
        margin: 20px 0 20px 40px;
    }
    .img-4-left {
        width: 33%;
        float: left;
        margin: 20px 40px 20px 0;
    }
}

.pagination {
    text-align: center;
}
.pagination .btn {
    margin: 0 5px;
}


.loader {
    background: url(/assets/img/loader.gif) no-repeat center;
    position: absolute;
    z-index: 9999;
    height: 100%;
    padding: 10px;
    margin: -10px;
}
#loader {
    background: rgba(255,255,255,0.7) url(/assets/img/loader.gif) no-repeat center;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 99999;
    display: none;
}
#loader span {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin-top: 30px;
    text-align: center;
}


#cookies {
    position: fixed;
    bottom: 0;
    background: #fff;
    padding: 15px 100px 15px 20px;
    width: 100%;
    font-size: 13px;
    line-height: 1.3em;
    color: #8f8f8f;
    text-align: center;
    z-index: 99999;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
#cookies .ok {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}
body.hasCookies {
    padding-bottom: 50px;
}

/***************************************************
Zewnętrzne pluginy
***************************************************/

.qtip-error{
    background-color: #63a9cd!important;
    border-color: #63a9cd!important;
    color: #fff!important;
    border-radius: 0;
    font-size: 12px!important;
    line-height: 1.2em!important;
}
.qtip-info{
    background-color: #59bfdd!important;
    border-color: #28a4c9!important;
    color: #fff!important;
    border-radius: 0;
    font-size: 12px!important;
    line-height: 1.2em!important;
}


/* dialogues */
.qtip.qtip-dialogue{
    max-width: 420px;
    min-width: 210px;
    padding: 0;
    background-color: #fff;
    border: 1px solid #C2C2C2;
    font-size: 13px;
}
.qtip.qtip-dialogue .qtip-titlebar{
    border-bottom: 1px solid #C2C2C2;
    background: #f9f9f9; /* Old browsers */
    background: -moz-linear-gradient(top,  #f9f9f9 0%, #e6e6e6 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f9f9f9), color-stop(100%,#e6e6e6)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #f9f9f9 0%,#e6e6e6 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #f9f9f9 0%,#e6e6e6 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #f9f9f9 0%,#e6e6e6 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #f9f9f9 0%,#e6e6e6 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f9f9f9', endColorstr='#e6e6e6',GradientType=0 ); /* IE6-9 */
    padding: 10px 20px;
}
.qtip.qtip-dialogue .qtip-content{
    padding: 20px;
    line-height: 1.2em!important;
}
.qtip.qtip-dialogue .qtip-content p {
    text-align: center;
}
.qtip.qtip-dialogue button{
    float: left;
    width: 47%;
    margin-top: 20px;
    margin-right: 10px;
}
.qtip.qtip-dialogue button:only-of-type {
    float: none;
    margin-left: auto;
    margin-right: auto;
}
.qtip.qtip-dialogue button + button{
    float: right;
    margin-right: 0;
}

/***************************************************
Forms
***************************************************/

fieldset.form {
    border: 0;
    padding: 0;
    margin: 0;
}
fieldset.form-center {
    max-width: 650px;
    margin: 0 auto;
}


/* wiersz */
.form-group {
    clear: both;
    margin-bottom: 10px;
}


/* buttony */
fieldset.form .form-btns {
    margin-top: 20px;
}


/* podpis */
.form-label {
    color: #979797;
    text-align: left;
    display: block;
    float: left;
    padding-top: 6px;
    padding-bottom: 6px;
    position: relative;
}


/* gwiazdka */
.form-req {
    color: #ff0000;
    margin-left: 3px;
}


/* grupa kontolek */
.form-control-group {
    max-width: 600px;
    margin: 6px 0;
    float: left;
}

.form-error {
    display: none;
}


/* kontrolka */
.form-control {
    background: #fff;
    padding: 6px 8px;
    margin: 0;
    border: 1px solid #c2c2c2;
    border-radius: 0;
    width: 100%;
}
.form-control:hover {
    border-color: #a7a7a7;
}
.form-control:focus {
    box-shadow: 0 0 5px 0 rgba(120,90,190,0.3);
}
select.form-control {
}
textarea.form-control {
    height: 150px;
}

.form-control-lg {
    width: 400px;
}
.form-control-sm {
    width: 100px;
}

.form-control-checkbox {
    margin-right: 5px;
}

.form-checks {
    margin-top: 5px;
}
.form-checks input {
    vertical-align: -2px;
    margin-left: 5px;
}

.form-control-unit {
    position: absolute;
    line-height: 30px;
    margin-left: 3px;
}

.select2-container {
    width: 100%;
}


.form-control-range input {
    float: left;
    width: calc(50% - 10px);
}
.form-control-range span {
    width: 20px;
    float: left;
    text-align: center;
    margin: 9px 0;
}


.form-boxInfo {
    background: #f8f8f8;
    padding: 20px;
    margin: 30px 0;
}
.form-boxInfo label {
    color: #979797;
}

.form-krs-text {
    padding: 5px 9px;
    background-color: #63a9cd;
    color: #fff;
    font-size: 12px;
    line-height: 1.2em;
    margin-top: 5px;
}
.form-krs-text .btn {
    margin-top: 5px;
}

.form-krs-list div {
    background: #f8f8f8;
    padding: 3px 5px 3px 18px;
    margin-top: 3px;
    position: relative;
    font-size: 12px;
}
.form-krs-list div a {
    display: block;
    width: 12px;
    height: 13px;
    position: absolute;
    left: 4px;
    top: 4px;
    font-size: 1px;
    outline: none;
    background: url(/assets/js/select2/select2.png) right top no-repeat;
}


/***************************************************
Messages
***************************************************/

.msg {
    text-align: center;
    padding: 15px;
    margin-bottom: 15px;

    color: #fff;
    background: #63a9cd;
}


.msg.msg-danger {
    color: #fff;
    background: #2d5062;
}
.msg.msg-danger a {
    color: #fff;
    text-decoration: underline;
}


/***************************************************
Buttons
***************************************************/

.btn {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    text-align: center;

    vertical-align: middle;
    white-space: nowrap;
    cursor: pointer;

    display: inline-block;
    padding: 15px 20px;
    border: 0;
    border-radius: 0;

    background: #63a9cd;

    transition: background .15s linear;
    -moz-transition: background .15s linear;
    -webkit-transition: background .15s linear;
}
.btn:hover {
    background: #000;
    color: #fff;
}

.btn [class*="icon-"] {
    margin-right: 5px;
    margin-top: -2px;
}

.btn span.arrow {
    font-size: 19px;
    line-height: 13px;
}


.btn-info:hover, .btn-success:hover, .btn-danger:hover {
    color: #fff;
}


.btn-lg {
    font-size: 18px;
    padding: 8px 16px;
}
.btn-sm {
    font-size: 11px;
    padding: 5px 6px;
}
.btn-xs {
    font-size: 11px;
    padding: 0px 4px;
}


.btn-disabled {
    opacity: 0.7;
}


.btns {
    text-align: center;
    margin-top: 30px;
    clear: both;
    position: relative;
}
.btns .left {
    position: absolute;
    left: 0;
}
.btns .right {
    position: absolute;
    right: 0;
}

.btns .btn {
    margin-bottom: 5px;
}


/***************************************************
Links
***************************************************/

.link {
    color: #63a9cd;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
}
.link:hover {
    color: #575757;
}
.link-success {
    color: #419741;
}
.link-danger {
    color: #C12F2B;
}
.link-u {
    text-decoration: underline;
}

/***************************************************
Icons
***************************************************/

[class*="icon-"] {
    display: inline-block;
    vertical-align: middle;
    content:'';
    background-image: url(/assets/img/sprites.png);
}

.icon-fb {
    width: 30px;
    height: 30px;
    background-color: #c79f35;
    background-position: 0 0;
    border-radius: 50%;
}
.icon-insta {
    width: 30px;
    height: 30px;
    background-color: #c79f35;
    background-position: -30px 0;
    border-radius: 50%;
}

.help {
    text-align: center;
    font-style: normal;
    font-weight: normal;
    display: inline-block;
    color: #fff;
    background: #63a9cd;
    width: 15px;
    height: 15px;
    line-height: 16px;
    border-radius: 50%;
}
.help:after {
    content: '?';
}

.icon-num {
    color: #fff;
    font-size: 26px;
    text-align: center;
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: #63a9cd;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: -12px;
}
.icon-num-1:after {
    content: '1';
}
.icon-num-2:after {
    content: '2';
}
.icon-num-3:after {
    content: '3';
}

.icon-key {
    width: 22px;
    height: 22px;
    background-size: cover;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='icon icon-tabler icon-tabler-key' width='44' height='44' viewBox='0 0 24 24' stroke-width='1.5' stroke='%23000000' fill='none' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath stroke='none' d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M16.555 3.843l3.602 3.602a2.877 2.877 0 0 1 0 4.069l-2.643 2.643a2.877 2.877 0 0 1 -4.069 0l-.301 -.301l-6.558 6.558a2 2 0 0 1 -1.239 .578l-.175 .008h-1.172a1 1 0 0 1 -.993 -.883l-.007 -.117v-1.172a2 2 0 0 1 .467 -1.284l.119 -.13l.414 -.414h2v-2h2v-2l2.144 -2.144l-.301 -.301a2.877 2.877 0 0 1 0 -4.069l2.643 -2.643a2.877 2.877 0 0 1 4.069 0z' /%3E%3Cpath d='M15 9h.01' /%3E%3C/svg%3E");
}
.icon-lock {
    width: 22px;
    height: 22px;
    background-size: cover;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='icon icon-tabler icon-tabler-lock' width='44' height='44' viewBox='0 0 24 24' stroke-width='1.5' stroke='%23000000' fill='none' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath stroke='none' d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M5 13a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-6z' /%3E%3Cpath d='M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0' /%3E%3Cpath d='M8 11v-4a4 4 0 1 1 8 0v4' /%3E%3C/svg%3E");
}

/***************************************************
Table
***************************************************/
table.table {
    margin: 10px auto;
    clear: both;
    width: 100%;
    border-collapse: collapse;
}

table.table th {
    font-weight: bold;
    background: #f2f2f2;
    padding: 12px 5px;
}
table.table th[data-sort] {
    cursor: pointer;
    *cursor: hand;
}
table.table th span {
    margin: 0 0 0 2px;
}


table.table td {
    padding: 10px 5px;
    border-bottom: 1px solid #f2f2f2;
}

table.table tr:hover {
    background-color: #f8f8f8;
}

table.table tr td.sub1 {
    padding-left: 20px;
}
table.table tr td.sub2 {
    padding-left: 40px;
}
table.table tr td.sub3 {
    padding-left: 60px;
}
table.table tr td.sub4 {
    padding-left: 80px;
}
table.table tr td.sub5 {
    padding-left: 100px;
}

table.table input[type=text] {
    margin: -4px -5px;
    padding: 2px;
}
table.table input[type=text].act-order {
    width: 30px;
    text-align: center;
}


table.table tr.sum {
    background-color: #f8f8f8;
    border-bottom: 20px solid #fff;
}
table.table tr.sum td {
    padding: 5px 5px;
}
table.table tr.sum + tr td {
    border-top: 1px solid #f2f2f2;
}

table.table .btn-sm {
    margin: 1px 0;
}


table.table caption, table.table .caption {
    margin: 5px 0;
    font-style: italic;
    font-size: 12px;
    text-align: left;
}
table.table .caption {
    padding: 5px 5px 15px 5px;
    border: 0;
    background-color: #fff!important;
}

.table-dataH {
    /*width: 70px;
    padding-top: 200px;
    position: relative;*/
    font-size: 12px;
    text-align: center;
}


table.table-min th {
    font-size: 12px;
}

@media screen and (max-width: 1000px) {
    table.table {
        overflow-x: auto;
        display: block;
        width: calc(100% + 20px);
    }
}


/***************************************************
podstrona
***************************************************/

.main-wrapper {
    margin: 50px 0;
}
.main-about {
    text-align: center;
    margin-bottom: 50px;
    border-bottom: 1px solid #eee;
}

.main-wrapper h2 {
    position: relative;
    padding-left: 70px;
    min-height: 48px;
}
.main-wrapper .link {
    display: inline-block;
    clear: both;
    margin-top: 20px;
}
.main-wrapper .full {
    display: none;
}


.sub-wrapper {
    margin: 50px 0;
}


/***************************************************
podstrona - kontakt
***************************************************/

.contact-wrapper #map {
    width: 100%;
    height: 300px;
}

/***************************************************
podstrona - analiza
***************************************************/

table.analysis-table-result {
    text-align: center;
}
table.analysis-table-result th {
}

.analysis-comment-add {
    margin-top: 10px;
}
.analysis-comment-add .form-control {
    margin: 0!important;
    width: calc(100% - 55px);
}
.analysis-comment-add .btn {
    width: 50px;
    float: right;
    margin: 0!important;
}

.analysisPopup, .datePopup {
    display: none;
}
.analysisPopup strong {
    display: block;
    margin: 10px 0;
}
.analysisPopup .select2-container {
    margin: 2px 0;
}


/***************************************************
podstrona - wyniki
***************************************************/

table.results-table-result {
    text-align: center;
}

.results-generate-pdf {
    max-width: 500px;
    margin: 20px auto;
}


/***************************************************
podstrona - spółki
***************************************************/

.company-boxInfo {
    background: #f8f8f8;
    padding: 20px;
    height: 100%;
}

.company-partners-item {
    margin-top: 8px;
    position: relative;
    padding-right: 50px;
}
.company-partners-item span {
    position: absolute;
    right: 0;
    top: 0;
}


.company-codes-item {
    margin-top: 8px;
    position: relative;
    padding-left: 60px;
}
.company-codes-item span {
    position: absolute;
    left: 0;
    top: 0;
}


.company-status {
    max-width: 400px;
    margin: 20px auto;
}


/***************************************************
kroki
***************************************************/

.steps-wrapper {
    margin-bottom: 30px;
    padding: 10px 0;
}
.steps-wrapper ul {
    list-style: none;
    counter-reset: sekcja;
    padding: 0;
    text-align: center;
}
.steps-wrapper ul li {
    padding: 0;
    position: relative;
    display: inline-block;
    padding-left: 40px;
    margin: 8px 30px;
}
.steps-wrapper ul li:before {
    color: #fff;
    font-weight: bold;
    counter-increment: sekcja;
    content: counters(sekcja, '.');
    position: absolute;
    left: 0;
    top: -5px;
    background: #63a9cd;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
}
.steps-wrapper ul li.current {
    font-weight: bold;
}



.catalog-wrapper {
    margin: 50px 0;
}
.catalog-wrapper .search {
    background: #f2f2f2;
    padding: 20px;
    margin-bottom: 10px;
}
.catalog-wrapper .search .form-label {
    padding-top: 25px;
    padding-bottom: 0;
}
.catalog-wrapper .search .select2-choices {
    padding: 9px 10px;
}
.catalog-wrapper .search .btn {
    width: 100%;
}

.catalog-contact {
    margin: 30px 0 50px 0!important;
    text-align: center;
    font-weight: bold;
}

.catalog-item {
    position: relative;
    margin: 0 auto 40px auto;
    max-width: 900px;
}
.catalog-item .icon-num {
    top: 0;
}
.catalog-item h3 {
    margin: 0 0 10px 0;
}
.catalog-item-info {
}
.catalog-item-info p {
    float: left;
    margin: 0 30px 0 0;
}
.catalog-item-info > p {
    margin-bottom: 10px;
}
.catalog-item-info > div {
    float: left;
    margin-bottom: 10px;
}
.catalog-item-info span {
    color: #979797;
    margin-right: 10px;
}
.legal-form {
    color: #fff!important;
    margin-left: 0;
    padding: 5px 10px;
    background: #63a9cd;
}

.catalog-item-finance {
    background: #f8f8f8;
    padding: 20px;
}
.catalog-item-finance span {
    color: #979797;
    display: block;
}

.catalog-item-year {
    padding: 5px 20px 5px 20px;
}
.catalog-item-year span {
    color: #979797;
}

.catalogCompany-wrapper {
    margin: 50px auto;
    max-width: 900px;
}
.catalogCompany-wrapper h1 {
    margin-bottom: 0;
}
