/* back to top */

#back-to-top {
    position: fixed;
    bottom: 20px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 17px;
    cursor: pointer;
    display: none;
    z-index: 2000;
    transition: background-color 0.3s ease;
}

#back-to-top:hover {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.progress-circle {
    position: absolute;
    top: -4px;
    left: -4px;
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    pointer-events: none;
}

.progress-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(0deg);
}

.progress-circle .circle-bg {
    fill: none;
    stroke-width: 2px;
}

.progress-circle .circle-progress {
    fill: none;
    stroke-width: 2px;
    stroke-dasharray: 100, 100;
    stroke-dashoffset: 100;
    transition: stroke-dashoffset 0.1s linear;
}


/* back to top - kolory */
#back-to-top {
    background-color: transparent;
    color: #0C75E4;
}

#back-to-top:hover {
    background-color: #f5f7f9;
}

.progress-circle .circle-bg {
    stroke: #eee;
}

.progress-circle .circle-progress {
    stroke: #0C75E4;
}


/* mgk stopka */

.mgkreacja {
    margin-left: 13px;
}

[data-tooltip] {
    position: relative;
    z-index: 2;
    cursor: pointer;
}

[data-tooltip]:before,
[data-tooltip]:after {
    visibility: hidden;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    pointer-events: none;
}

[data-tooltip]:before {
    position: absolute;
    bottom: 150%;
    left: 50%;
    margin-bottom: 5px;
    margin-left: -90px;
    padding: 7px;
    width: 180px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background-color: #000;
    background-color: hsla(0, 0%, 20%, 0.9);
    color: #fff;
    content: attr(data-tooltip);
    text-align: center;
    font-size: 10px;
    letter-spacing: normal;
    line-height: 1.2;
}

[data-tooltip]:after {
    position: absolute;
    bottom: 150%;
    left: 50%;
    margin-left: -5px;
    width: 0;
    border-top: 5px solid #000;
    border-top: 5px solid hsla(0, 0%, 20%, 0.9);
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    content: " ";
    font-size: 0;
    line-height: 0;
}

[data-tooltip]:hover:before,
[data-tooltip]:hover:after {
    visibility: visible;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
}

header.page-header {
    min-height: 300px;
    padding-top: 150px;
}

h1.entry-title {
    color: #fff;
}

.page-content p {
    margin-bottom: 50px;
    color: #ccc;
}