:root {
    --shop-bg: #050608;
    --shop-bg-2: #080a0d;
    --shop-panel: rgba(13, 15, 19, .88);
    --shop-panel-2: rgba(18, 20, 25, .72);

    --shop-red: #c83b38;
    --shop-red-light: #f05a55;
    --shop-red-dark: #721b1a;

    --shop-white: #ffffff;
    --shop-text: #ffffff;
    --shop-muted: rgba(255,255,255,.68);

    --shop-border: rgba(255,255,255,.07);
    --shop-border-red: rgba(200,59,56,.35);

    --shop-radius: 16px;

    --shop-shadow:
        0 25px 80px rgba(0,0,0,.55);

    --shop-glow:
        0 0 35px rgba(200,59,56,.10);
}

/* ========================================================================== */
/* » SCROLLBAR                                                                */
/* ========================================================================== */

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background: #050608;
}

::-webkit-scrollbar-track {
    background: #050608;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(
        180deg,
        #f05a55 0%,
        #8b2523 50%,
        #511615 100%
    );
    border-radius: 20px;
    border: 2px solid #050608;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(
        180deg,
        #ff6a65 0%,
        #b12e2b 100%
    );
}

/* ========================================================================== */
/* » GLOBAL                                                                   */
/* ========================================================================== */

html,
body {
    height: 100%;
}

body {
    font: 14px/1.55 Lato, sans-serif;
    color: #fff !important;
    background:
        radial-gradient(
            circle at 50% -20%,
            rgba(200,59,56,.16),
            transparent 38%
        ),
        radial-gradient(
            circle at 0% 50%,
            rgba(200,59,56,.045),
            transparent 32%
        ),
        radial-gradient(
            circle at 100% 80%,
            rgba(255,255,255,.025),
            transparent 28%
        ),
        #050608 !important;
    letter-spacing: .045em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* futurystyczna siatka */

body:before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(255,255,255,.018) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.018) 1px,
            transparent 1px
        );

    background-size: 45px 45px;

    mask-image:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.75),
            transparent 80%
        );
}

body:after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;

    background:
        radial-gradient(
            circle at center,
            transparent 40%,
            rgba(0,0,0,.35) 100%
        );
}

a {
    color: #fff;
    text-decoration: underline;
    transition:
        color .25s ease,
        opacity .25s ease;
}

a:hover {
    color: #fff;
    opacity: .78;
}

img {
    max-width: 100%;
}

iframe {
    border: 0;
}

button,
input,
select,
textarea {
    color: #fff;
}

/* ========================================================================== */
/* » CONTENT                                                                  */
/* ========================================================================== */

.content-wrap {
    margin: 0 auto;
    padding: .1px;
    overflow: hidden;
    min-height: 100%;
}

.col-md-12 {
    position: relative;

    background:
        linear-gradient(
            145deg,
            rgba(18,20,25,.92),
            rgba(7,8,11,.96)
        );

    border: 1px solid rgba(255,255,255,.055);

    box-shadow:
        0 30px 100px rgba(0,0,0,.42),
        inset 0 1px 0 rgba(255,255,255,.035);

    border-radius: var(--shop-radius);

    padding: 2rem;

    overflow: hidden;
}

.col-md-12:before {
    content: "";
    position: absolute;

    top: 0;
    left: 12%;
    right: 12%;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(240,90,85,.65),
            rgba(255,255,255,.35),
            rgba(240,90,85,.65),
            transparent
        );

    box-shadow:
        0 0 20px rgba(240,90,85,.25);
}

/* ========================================================================== */
/* » TEXT                                                                     */
/* ========================================================================== */

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Lato, sans-serif;
    color: #fff !important;
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 700;
}

.h1,
h1 {
    font-size: 5rem;
    margin-top: 6rem;
    margin-bottom: 4rem;

    color: #fff !important;

    letter-spacing: -.035em;

    text-shadow:
        0 8px 35px rgba(0,0,0,.55);
}

.h2,
h2 {
    margin-top: 4rem;
    margin-bottom: 2.5rem;
}

.h5,
h5 {
    font-size: 12px;
}

p {
    color: #fff !important;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.label {
    color: #fff !important;
}

.date,
.tags {
    color: rgba(255,255,255,.65) !important;
}

.social-list,
.tags {
    margin: 1rem 0;
}

/* ========================================================================== */
/* » HR                                                                       */
/* ========================================================================== */

hr {
    margin-top: 24px;
    margin-bottom: 24px;

    border: 0;
    border-top: 1px solid rgba(255,255,255,.07);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(200,59,56,.55),
            transparent
        );

    box-shadow:
        0 0 15px rgba(200,59,56,.08);
}

/* ========================================================================== */
/* » FORM                                                                     */
/* ========================================================================== */

.form-control {
    display: block;
    width: 100%;
    height: 44px;

    padding: 8px 14px;

    font-size: 14px;
    line-height: 1.42857143;

    color: #fff !important;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.045),
            rgba(255,255,255,.018)
        );

    background-image: none;

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 11px;

    box-shadow:
        inset 0 1px 2px rgba(0,0,0,.25),
        0 0 0 transparent;

    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        background .25s ease,
        transform .25s ease;

    margin-bottom: 5px;
}

.form-control:hover {
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.06),
            rgba(255,255,255,.025)
        );

    border-color:
        rgba(200,59,56,.35);
}

.form-control:focus {
    color: #fff !important;

    background:
        linear-gradient(
            145deg,
            rgba(200,59,56,.065),
            rgba(255,255,255,.025)
        );

    border-color: #d84b47;

    outline: none;

    box-shadow:
        0 0 0 3px rgba(200,59,56,.08),
        0 0 30px rgba(200,59,56,.09);
}

.form-control::placeholder {
    color: rgba(255,255,255,.42) !important;
}

.formularz {
    width: 200px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group-small {
    margin-bottom: 10px;
}

/* ========================================================================== */
/* » BUTTON                                                                   */
/* ========================================================================== */

.btn {
    position: relative;

    color: #fff !important;

    border-radius: 11px;

    overflow: hidden;

    transition:
        transform .2s ease,
        box-shadow .25s ease,
        background .25s ease,
        border-color .25s ease;
}

.btn:before {
    content: "";
    position: absolute;

    top: 0;
    left: -120%;

    width: 70%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.18),
            transparent
        );

    transform: skewX(-20deg);

    transition: left .65s ease;
}

.btn:hover:before {
    left: 150%;
}

.btn-primary {
    color: #fff !important;

    background:
        linear-gradient(
            135deg,
            #c3423e 0%,
            #8b2725 48%,
            #681a19 100%
        );

    border: 1px solid rgba(255,255,255,.13);

    border-radius: 11px;

    width: 25%;

    box-shadow:
        0 10px 35px rgba(99,25,23,.28),
        0 0 25px rgba(200,59,56,.08),
        inset 0 1px 0 rgba(255,255,255,.13);
}

.btn-primary:hover {
    color: #fff !important;

    background:
        linear-gradient(
            135deg,
            #e0534e 0%,
            #a72e2b 48%,
            #79201e 100%
        );

    border-color:
        rgba(255,255,255,.2);

    transform:
        translateY(-2px);

    box-shadow:
        0 15px 40px rgba(99,25,23,.35),
        0 0 30px rgba(200,59,56,.14),
        inset 0 1px 0 rgba(255,255,255,.16);
}

.btn-primary:active {
    transform: translateY(0);
}

/* ========================================================================== */
/* » NAVBAR                                                                   */
/* ========================================================================== */

.navbar-sklepcs {
    position: relative;

    border: none;

    min-height: 50px;

    background:
        linear-gradient(
            180deg,
            rgba(6,7,9,.91),
            rgba(6,7,9,.68)
        );

    transition:
        background .25s ease,
        box-shadow .25s ease;

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    box-shadow:
        0 1px 0 rgba(255,255,255,.035),
        0 15px 50px rgba(0,0,0,.35);
}

.navbar-sklepcs:after {
    content: "";

    position: absolute;

    left: 5%;
    right: 5%;
    bottom: 0;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(200,59,56,.65),
            rgba(255,255,255,.3),
            rgba(200,59,56,.65),
            transparent
        );

    box-shadow:
        0 0 18px rgba(200,59,56,.16);
}

.navbar-sklepcs a {
    text-decoration: none;
    color: #fff !important;
}

.navbar-sklepcs .navbar-brand {
    display: block;

    height: 80px;
    line-height: 75px;

    margin-left: 15px;

    transition: .3s ease;

    will-change:
        height,
        width,
        line-height;
}

.navbar-sklepcs .navbar-brand {
    padding: 0;
    width: 160px;
}

.navbar-sklepcs .navbar-brand img {
    display: inline-block;

    max-width: 100%;

    margin-top: auto;

    filter:
        drop-shadow(
            0 5px 20px rgba(200,59,56,.14)
        );
}

.navbar-sklepcs.navbar-small img {
    max-width: 75%;
}

.navbar-sklepcs .navbar-nav > li {
    margin-left: 30px;
}

.navbar-sklepcs .navbar-nav > li > a {
    position: relative;

    height: 80px;

    padding: 24.24px 0;

    transition: .3s ease;

    will-change:
        height,
        padding;

    -webkit-backface-visibility: hidden;

    text-transform: uppercase;

    font-size: 13px;

    word-wrap: break-word;
}

.navbar-sklepcs .navbar-nav > li > a > .label {
    display: block;

    padding: 0;

    text-transform: none;

    color: #fff !important;

    transition: .3s ease;

    text-align: left;
}

.navbar-sklepcs .navbar-nav > li.open > a > .label,
.navbar-sklepcs .navbar-nav > li > a:focus > .label,
.navbar-sklepcs .navbar-nav > li > a:hover > .label {
    color: #fff !important;
}

.navbar-sklepcs .navbar-nav > li.open > a,
.navbar-sklepcs .navbar-nav > li > a,
.navbar-sklepcs .navbar-nav > li > a:focus,
.navbar-sklepcs .navbar-nav > li > a:hover {
    color: #fff !important;
}

.navbar-sklepcs .navbar-nav > .active > a:after,
.navbar-sklepcs .navbar-nav > .active > a:focus:after,
.navbar-sklepcs .navbar-nav > .active > a:hover:after {
    content: "";

    position: absolute;

    background:
        linear-gradient(
            90deg,
            transparent,
            #f05a55,
            transparent
        );

    height: 2px;

    bottom: 0;

    left: -8px;
    right: -8px;

    box-shadow:
        0 0 14px rgba(240,90,85,.55);
}

/* ========================================================================== */
/* » DROPDOWN                                                                 */
/* ========================================================================== */

.dropdown-toggle::before {
    content: "";

    position: absolute;

    height: 2px;
    width: 100%;

    top: 0;

    border-radius:
        0 0 5px 5px;
}

.navbar-sklepcs .nav .open > a,
.navbar-sklepcs .nav .open > a:focus,
.navbar-sklepcs .nav .open > a:hover,
.navbar-sklepcs .navbar-nav > .active > a,
.navbar-sklepcs .navbar-nav > .active > a:focus,
.navbar-sklepcs .navbar-nav > .active > a:hover,
.navbar-sklepcs .navbar-nav > .open > a,
.navbar-sklepcs .navbar-nav > .open > a:focus,
.navbar-sklepcs .navbar-nav > .open > a:hover {
    color: #fff !important;
    background: transparent;
}

.navbar-sklepcs .dropdown-menu,
.navbar-sklepcs .navbar-nav > li > .dropdown-menu {
    display: table;

    border: 1px solid rgba(255,255,255,.07);

    background:
        linear-gradient(
            145deg,
            rgba(17,19,23,.97),
            rgba(7,8,10,.97)
        ) !important;

    border-radius: 13px;

    box-shadow:
        0 25px 70px rgba(0,0,0,.65),
        0 0 30px rgba(200,59,56,.06);

    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);

    overflow: hidden;
}

.navbar-sklepcs .dropdown-menu > ul,
.navbar-sklepcs .navbar-nav > li > .dropdown-menu > ul {
    display: table-cell;

    list-style: none;

    margin: 0;

    padding: 7px 0;

    min-width: 190px;
}

.navbar-sklepcs .dropdown-menu > ul > li > a,
.navbar-sklepcs .navbar-nav > li > .dropdown-menu > ul > li > a {
    position: relative;

    display: block;

    color: #fff !important;

    padding: 11px 20px 8px;

    white-space: nowrap;

    transition:
        color .2s ease,
        background .2s ease,
        padding-left .2s ease;
}

.navbar-sklepcs .dropdown-menu > ul > li > a:hover,
.navbar-sklepcs .navbar-nav > li > .dropdown-menu > ul > li > a:hover {
    color: #fff !important;

    background:
        linear-gradient(
            90deg,
            rgba(200,59,56,.11),
            transparent
        );

    padding-left: 25px;
}

.navbar-sklepcs .dropdown-menu > ul > li > a:after,
.navbar-sklepcs .navbar-nav > li > .dropdown-menu > ul > li > a:after {
    content: "";

    display: block;

    height: 4px;

    width: 100%;

    border-bottom: 1px solid #d84b47;

    transition: .3s transform ease;

    transform: scaleX(0);

    transform-origin: 0;

    opacity: .65;
}

.dropdown-menu > ul > li.active > a:after,
.dropdown-menu > ul > li.open > a:after,
.dropdown-menu > ul > li > a:focus:after,
.dropdown-menu > ul > li > a:hover:after,
.navbar-nav > li > .dropdown-menu > ul > li.active > a:after,
.navbar-nav > li > .dropdown-menu > ul > li.open > a:after,
.navbar-nav > li > .dropdown-menu > ul > li > a:focus:after,
.navbar-nav > li > .dropdown-menu > ul > li > a:hover:after {
    transform: scaleX(1);
}

.dropdown-menu > ul .divider,
.navbar-nav > li > .dropdown-menu > ul .divider {
    background: rgba(200,59,56,.25);
}

.dropdown-hover > .dropdown-menu {
    display: block;

    visibility: hidden;

    opacity: 0;

    transform: translateY(9px);

    transition:
        visibility .2s ease,
        opacity .2s ease,
        transform .2s ease;
}

.dropdown-hover.open > .dropdown-menu,
.dropdown-hover:hover > .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.navbar-nav > li > .dropdown-menu {
    margin-top: 10px;
}

.navbar-nav > li > .dropdown-menu:before {
    content: "";

    position: absolute;

    left: 0;
    top: -10px;

    width: 100%;
    height: 10px;
}

.nav > .dropdown > .dropdown-menu:after {
    content: "";

    position: absolute;

    pointer-events: none;

    border: solid transparent;

    bottom: 100%;

    left: 20px;

    height: 0;
    width: 0;

    border-bottom-color: #111318;

    border-width: 6px;

    margin-right: -6px;
}

.navbar-sklepcs .navbar-right > .dropdown > .dropdown-menu:after {
    margin-right: 0;
    margin-left: -6px;

    right: 20px;
    left: auto;
}

.navbar-sklepcs.navbar-small {
    background:
        rgba(5,6,8,.95);

    box-shadow:
        0 15px 55px rgba(0,0,0,.48);
}

.navbar-sklepcs.navbar-small .navbar-brand {
    height: 50px;
    line-height: 45px;
    width: 110px;
}

.navbar-sklepcs.navbar-small .navbar-nav > li > a {
    height: 50px;
    padding: 15.15px 0;
}

.navbar-sklepcs.navbar-small .navbar-nav > li > a > .label {
    display: none;
}

.navbar-sklepcs .caret {
    border-width: 3px;
}

.navbar-sklepcs .badge {
    position: absolute;

    text-align: center;

    font-size: 10px;

    min-width: 17px;
    height: 17px;

    line-height: 17px;

    padding: 0 6px;

    margin-top: -4px;
    margin-left: -4px;

    letter-spacing: 0;

    background:
        linear-gradient(
            135deg,
            #ed5954,
            #8a2422
        );

    color: #fff;

    border: 1px solid rgba(255,255,255,.15);

    box-shadow:
        0 0 14px rgba(200,59,56,.35);
}

/* ========================================================================== */
/* » SIDE BLOCK                                                               */
/* ========================================================================== */

.side-block {
    position: relative;

    margin-bottom: -1rem;

    background:
        linear-gradient(
            145deg,
            rgba(15,17,21,.96),
            rgba(7,8,10,.96)
        );

    padding-top: 1.5rem;
    padding-bottom: 1rem;

    border: 1px solid rgba(255,255,255,.045);

    border-radius: 15px;

    box-shadow:
        0 20px 60px rgba(0,0,0,.32),
        inset 0 1px 0 rgba(255,255,255,.025);
}

.side-block .block-title {
    position: relative;

    padding: 12px 20px;

    margin: 0 1rem 1rem;

    background:
        linear-gradient(
            135deg,
            #b43734 0%,
            #741d1c 50%,
            #561615 100%
        );

    border: 1px solid rgba(255,255,255,.11);

    border-radius: 11px;

    text-align: center;

    color: #fff !important;

    box-shadow:
        0 10px 30px rgba(89,22,21,.3),
        inset 0 1px 0 rgba(255,255,255,.13);
}

.block-title::before {
    content: "";

    position: absolute;

    left: 0;
    top: 15%;

    height: 70%;
    width: 3px;

    background: #ff7772;

    border-radius: 0 5px 5px 0;

    box-shadow:
        0 0 12px rgba(255,119,114,.7);
}

.side-block .block-title:after {
    position: absolute;

    top: 0;
    left: 4px;
    right: 7px;
    bottom: 0;
}

.block-title:after {
    content: "";

    display: block;

    position: absolute;

    top: 0;

    left: 4px;
    right: 7px;

    height: 10px;

    z-index: 1;

    background-size: contain;
}

.side-block .block-content {
    margin-top: 1rem;
    padding: 0 1rem;
}

.side-block ul {
    list-style-type: none;
    padding-left: 0;
}

.side-block ul a {
    display: block;

    padding: .7rem .8rem;

    text-decoration: none;

    text-align: center;

    color: #fff !important;

    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,.035),
            rgba(255,255,255,.015)
        );

    border: 1px solid rgba(255,255,255,.035);

    border-radius: 10px;

    margin-bottom: .5rem;

    transition:
        color .2s ease,
        background .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.side-block ul a:hover {
    color: #fff !important;

    background:
        linear-gradient(
            90deg,
            rgba(200,59,56,.11),
            rgba(255,255,255,.025)
        );

    border-color:
        rgba(200,59,56,.28);

    transform:
        translateX(3px);
}

/* ========================================================================== */
/* » STORE                                                                    */
/* ========================================================================== */

.sklepcs-store {
    margin-bottom: 4rem;
    margin-top: -35rem;
}

.isotope {
    position: relative;

    background:
        linear-gradient(
            145deg,
            rgba(14,16,20,.97),
            rgba(6,7,9,.98)
        );

    border: 1px solid rgba(255,255,255,.045);

    border-radius: 17px;

    padding-bottom: 3rem;
    padding-top: 3rem;

    box-shadow:
        0 30px 90px rgba(0,0,0,.46),
        inset 0 1px 0 rgba(255,255,255,.025);

    overflow: hidden;
}

.isotope:before {
    content: "";

    display: block;

    position: absolute;

    top: 0;

    left: 8%;
    right: 8%;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(240,90,85,.65),
            rgba(255,255,255,.25),
            rgba(240,90,85,.65),
            transparent
        );

    box-shadow:
        0 0 22px rgba(200,59,56,.2);
}

.isotope h3 {
    margin: 10px;

    text-align: center;

    margin-bottom: 3rem;

    color: #fff !important;

    letter-spacing: .09em;

    text-shadow:
        0 5px 25px rgba(0,0,0,.4);
}

/* ========================================================================== */
/* » PRODUCT CARD                                                             */
/* ========================================================================== */

.angled-bg {
    position: relative;
    display: block;
}

.angled-bg:before {
    content: "";

    display: block;

    position: absolute;

    top: -1px;

    left: 12%;
    right: 12%;

    height: 1px;

    z-index: 3;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(240,90,85,.5),
            transparent
        );
}

.angled-bg > * {
    position: relative;
    z-index: 2;
}

.angled-bg:after {
    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.045),
            rgba(255,255,255,.012)
        );

    z-index: 0;

    transition:
        background .35s ease,
        box-shadow .35s ease,
        border-color .35s ease,
        transform .35s ease;

    border: 1px solid rgba(255,255,255,.055);

    border-radius: 16px;

    box-shadow:
        0 12px 40px rgba(0,0,0,.24),
        inset 0 1px 0 rgba(255,255,255,.025);
}

.angled-bg:hover:after {
    background:
        linear-gradient(
            145deg,
            rgba(200,59,56,.105),
            rgba(255,255,255,.02)
        );

    border-color:
        rgba(200,59,56,.42);

    box-shadow:
        0 25px 60px rgba(0,0,0,.4),
        0 0 35px rgba(200,59,56,.09),
        inset 0 1px 0 rgba(255,255,255,.05);

    transform:
        translateY(-2px);
}

.angled-bg.item {
    display: block;

    width: 100%;

    margin-bottom: 2rem;
}

.angled-bg.item:focus,
.angled-bg.item:hover {
    color: inherit;
}

.angled-bg.item .price {
    position: relative;

    margin-top: 15px;
    margin-right: 20px;

    font-size: 1.6rem;

    font-weight: 700;

    color: #fff !important;

    text-shadow:
        0 4px 15px rgba(0,0,0,.4);
}

.angled-bg.item .remove,
.angled-bg.item .remove:focus,
.angled-bg.item .remove:hover {
    font-size: 1.7rem;

    margin-top: 5px;
    margin-right: 20px;

    text-decoration: none;

    color: #fff !important;

    transition:
        color .2s ease,
        transform .2s ease;
}

.angled-bg.item .remove:hover {
    color: #ff6c67 !important;

    transform:
        scale(1.06);
}

/* ========================================================================== */
/* » PRODUCT IMAGE                                                            */
/* ========================================================================== */

.angled-img {
    position: relative;

    display: block;

    padding-top: 2.3px;
}

.angled-img,
.angled-img:focus,
.angled-img:hover {
    color: inherit;

    text-decoration: none;

    outline: 0;

    padding: 0;
}

.angled-img .img {
    height: 100%;

    position: relative;

    overflow: hidden;

    -webkit-backface-visibility: hidden;

    border-radius:
        15px 15px 0 0;
}

.angled-img .img:after {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            transparent 50%,
            rgba(0,0,0,.3)
        );

    opacity: .55;

    transition:
        opacity .35s ease;
}

.angled-img .img > img {
    width: 60%;

    border-radius: 15px;

    transition:
        transform .5s cubic-bezier(.2,.7,.2,1),
        filter .5s ease;

    filter:
        saturate(.94)
        brightness(.96);

    box-shadow:
        0 15px 40px rgba(0,0,0,.25);
}

.angled-img:hover .img > img {
    transform:
        scale(1.045);

    filter:
        saturate(1.08)
        brightness(1.07);

    box-shadow:
        0 20px 55px rgba(0,0,0,.4);
}

.angled-img:hover .img:after {
    opacity: .25;
}

.angled-img .img.img-offset {
    transform-origin: 50% 100%;
}

.angled-img .icon {
    font-size: 5rem;

    position: absolute;

    top: 50%;
    left: 50%;

    margin-top: -25px;
    margin-left: -25px;

    opacity: .18;

    color: #fff;

    transition:
        .3s opacity ease,
        transform .3s ease;
}

.angled-img:hover .icon {
    opacity: .8;

    transform:
        scale(1.08);
}

.angled-img .price del {
    color: rgba(255,255,255,.5);
}

.angled-img .badge {
    position: absolute;

    left: 12px;
    top: 12px;

    border-radius: 8px;

    font-size: 1.2rem;

    padding: 7px 12px;

    transition: .3s opacity ease;

    -webkit-backface-visibility: hidden;

    opacity: 0;

    color: #fff !important;

    background:
        linear-gradient(
            135deg,
            rgba(200,59,56,.95),
            rgba(103,25,24,.95)
        );

    border: 1px solid rgba(255,255,255,.13);

    box-shadow:
        0 10px 30px rgba(0,0,0,.3),
        0 0 18px rgba(200,59,56,.12);

    backdrop-filter:
        blur(10px);

    -webkit-backdrop-filter:
        blur(10px);
}

.angled-img .badge.show-half {
    opacity: .5;
}

.angled-img .badge.show,
.angled-img:hover .badge {
    opacity: 1;
}

.angled-img .over-info {
    position: absolute;

    top: 0;
    left: 0;

    width: 90%;
    height: 100%;

    margin-left: 5%;

    text-align: center;

    color: #fff;
}

.angled-img .over-info.bottom {
    top: auto;
    bottom: 0;

    height: auto;

    text-align: left;
}

.angled-img .over-info .rating,
.angled-img .over-info h4 {
    margin-top: 1.2rem;
    margin-bottom: 1.2rem;
}

.angled-img .over-info > div {
    display: table;

    height: 100%;
    width: 100%;
}

.angled-img .over-info > div > div {
    display: table-cell;

    vertical-align: middle;
}

.angled-img .bottom-info {
    width: 100%;

    text-align: center;

    margin: 0 auto 1.8rem;

    color: #fff;
}

.angled-img .bottom-info h4 {
    position: relative;

    text-align: center;

    margin-top: 1.8rem;
    margin-bottom: 3rem;

    color: #fff !important;
}

.angled-img .bottom-info h4:after {
    content: "";

    position: absolute;

    bottom: -1.5rem;

    left: 10%;

    width: 80%;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.18),
            transparent
        );
}

/* ========================================================================== */
/* » PACKAGE / PRICE                                                          */
/* ========================================================================== */

.pakiet {
    position: relative;

    padding-top: 19px;

    font-weight: bold;

    color: #fff !important;
}

.pakiet::before {
    content: "";

    position: absolute;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            #7c201e,
            #ed5752,
            #7c201e
        );

    box-shadow:
        0 3px 30px rgba(200,59,56,.38);

    height: 3px;

    width: 18%;

    top: 0;

    border-radius:
        0 0 5px 5px;
}

.price::before {
    content: "";

    position: absolute;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            #7c201e,
            #ed5752,
            #7c201e
        );

    box-shadow:
        0 3px 30px rgba(200,59,56,.38);

    height: 3px;

    width: 54%;

    top: 0;

    border-radius:
        0 0 5px 5px;
}

/* ========================================================================== */
/* » DATATABLES                                                               */
/* ========================================================================== */

.dataTables_wrapper {
    position: relative;

    clear: both;

    zoom: 1;

    overflow-x: auto;

    -webkit-overflow-scrolling: touch;
}

.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_processing,
.dataTables_wrapper .dataTables_paginate {
    color: #fff !important;
}

table.dataTable {
    border-collapse: separate !important;

    border-spacing: 0;
}

table.dataTable tbody tr {
    background:
        rgba(14,16,19,.95);

    transition:
        background .2s ease;
}

table.dataTable tbody tr:hover {
    background:
        rgba(200,59,56,.055);
}

table.dataTable tbody th,
table.dataTable tbody td,
table.dataTable thead th,
table.dataTable thead td {
    border-collapse: collapse;

    border: 1px solid rgba(255,255,255,.07);

    color: #fff !important;
}

table.dataTable thead th,
table.dataTable thead td {
    background:
        linear-gradient(
            90deg,
            rgba(200,59,56,.09),
            rgba(255,255,255,.025)
        );

    color: #fff !important;
}

.dataTables_wrapper .dataTables_filter input {
    margin-left: .5em;

    background:
        rgba(255,255,255,.035);

    border: 1px solid rgba(255,255,255,.09);

    border-radius: 9px;

    color: #fff !important;

    padding: 7px 10px;

    outline: none;

    transition: .25s ease;
}

.dataTables_wrapper .dataTables_filter input:focus {
    border-color:
        #d84b47;

    box-shadow:
        0 0 0 3px rgba(200,59,56,.08),
        0 0 20px rgba(200,59,56,.08);
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    color: #fff !important;

    border:
        1px solid rgba(240,90,85,.5);

    background:
        linear-gradient(
            135deg,
            #b33835,
            #741d1c
        );

    box-shadow:
        0 7px 25px rgba(99,25,23,.28),
        inset 0 1px 0 rgba(255,255,255,.1);
}

/* ========================================================================== */
/* » PAGINATION                                                               */
/* ========================================================================== */

.pagination {
    margin-top: 0 !important;

    display: flex;

    margin: 0 auto;

    clear: both;

    padding-bottom: 10px;

    width: 100%;

    border-radius:
        0 0 5px 5px;

    justify-content: center;

    flex-wrap: wrap;

    gap: 7px;
}

.pagination:after,
.pagination:before {
    display: block;
    clear: both;
}

.pagination > li {
    display: inline;

    margin-bottom: 1rem;

    margin-right: .5rem;
}

.pagination > li > a,
.pagination > li > span {
    cursor: pointer;
}

.pagination > li:first-child > a,
.pagination > li:first-child > span,
.pagination > li > a,
.pagination > li > a:focus,
.pagination > li > a:hover,
.pagination > li > span,
.pagination > li > span:focus,
.pagination > li > span:hover {
    position: relative;

    background:
        rgba(255,255,255,.025);

    border:
        1px solid rgba(255,255,255,.07);

    margin-left: 0;

    padding: 9px 20px;

    box-shadow: none;

    z-index: 1;

    color: #fff !important;

    text-decoration: none;

    border-radius: 10px !important;

    margin-right: 0;

    margin-top: 5px;

    transition:
        color .2s ease,
        background .2s ease,
        border-color .2s ease,
        box-shadow .2s ease,
        transform .2s ease;
}

.pagination > li > a:hover,
.pagination > li > span:hover {
    color: #fff !important;

    background:
        rgba(200,59,56,.12);

    border-color:
        rgba(200,59,56,.45);

    box-shadow:
        0 8px 25px rgba(200,59,56,.1);

    transform:
        translateY(-1px);
}

.pagination > li.active > a,
.pagination > li.active > a:hover,
.pagination > li.active > span,
.pagination > li.active > span:hover {
    color: #fff !important;

    border-color:
        rgba(240,90,85,.65);

    background:
        linear-gradient(
            135deg,
            #b33835,
            #741d1c
        );

    box-shadow:
        0 8px 28px rgba(99,25,23,.28),
        0 0 20px rgba(200,59,56,.08),
        inset 0 1px 0 rgba(255,255,255,.1);
}

.pagination > li:first-child > a:before,
.pagination > li:first-child > span:before,
.pagination > li > a:before,
.pagination > li > a:focus:before,
.pagination > li > a:hover:before,
.pagination > li > span:before,
.pagination > li > span:focus:before,
.pagination > li > span:hover:before {
    content: none;
}

.pagination > li.active > a:after,
.pagination > li.active > a:hover:after,
.pagination > li.active > span:after,
.pagination > li.active > span:hover:after,
.pagination > li > a:hover:after,
.pagination > li > span:hover:after {
    content: "";

    position: absolute;

    left: 8px;
    top: 6px;

    height: 72%;
    width: 3px;

    border-radius: 10px;

    background:
        rgba(255,255,255,.6);

    box-shadow:
        0 0 8px rgba(255,255,255,.25);
}

/* ========================================================================== */
/* » ALERT                                                                    */
/* ========================================================================== */

.alert {
    position: relative;

    border:
        1px solid rgba(255,255,255,.07);

    border-radius: 12px;

    color: #fff !important;

    background:
        rgba(255,255,255,.025);

    z-index: 1;

    box-shadow:
        0 15px 40px rgba(0,0,0,.22),
        inset 0 1px 0 rgba(255,255,255,.025);
}

.alert p {
    margin-top: 0;
    color: #fff !important;
}

.alert:before {
    content: "";

    position: absolute;

    inset: 0;

    z-index: -1;

    border-radius: 12px;

    opacity: .09;
}

.alert-primary:before {
    background: #2B6AD9;
}

.alert-success:before {
    background: #2BD964;
}

.alert-info:before {
    background: #2BD7D9;
}

.alert-warning:before {
    background: #EB8324;
}

.alert-danger {
    border-color:
        rgba(200,59,56,.3);
}

.alert-danger:before {
    background: #952234;
}

.alert-danger:after {
    content: "";

    display: block;

    position: absolute;

    top: 0;
    left: 0;

    height: 100%;
    width: 3px;

    border-radius:
        12px 0 0 12px;

    background:
        #e0524d;

    box-shadow:
        0 0 16px rgba(224,82,77,.35);
}

/* ========================================================================== */
/* » ISOTOPE                                                                  */
/* ========================================================================== */

.isotope tr {
    border:
        1px solid rgba(200,59,56,.25);

    margin: 5px;
}

.isotope td,
.isotope th {
    padding: 10px;

    color: #fff !important;
}

/* ========================================================================== */
/* » MISC                                                                     */
/* ========================================================================== */

.info-red {
    color: #ff6661 !important;

    font-size: 18px;

    text-shadow:
        0 0 18px rgba(240,90,85,.2);
}

li.active {
    color: #fff !important;
}

.active ul {
    color: #fff !important;

    text-shadow:
        0 0 12px rgba(200,59,56,.25);

    font-weight: bold;

    margin-left: -2px;

    text-transform: uppercase;
}

.sklepcs-footer {
    text-align: center;

    color: #fff !important;
}

footer {
    position: relative;

    overflow: hidden;

    z-index: 1;

    color: rgba(255,255,255,.7) !important;
}

footer a {
    color: #fff !important;
}

.banner {
    max-height: 600px;
    overflow: hidden;
}

.new-line {
}

::selection {
    color: #fff;

    background:
        rgba(200,59,56,.65);
}

/* ========================================================================== */
/* » MOBILE                                                                   */
/* ========================================================================== */

@media (max-width: 767px) {

    .navbar-sklepcs,
    .navbar-sklepcs.navbar-small {
        background: transparent;
    }

    .navbar-sklepcs .navbar-header {
        background:
            rgba(7,8,11,.84);

        border-bottom:
            1px solid rgba(200,59,56,.2);

        backdrop-filter:
            blur(18px);

        -webkit-backdrop-filter:
            blur(18px);
    }

    .navbar-sklepcs.navbar-small .navbar-header {
        background:
            rgba(7,8,11,.95);
    }

    .navbar-sklepcs .navbar-collapse {
        position: fixed;

        top: 10px;
        right: 10px;
        bottom: 10px;

        width:
            calc(100% - 20px);

        max-width: 400px;

        margin: 0;

        padding:
            65px 24px 30px;

        overflow-y: auto;

        max-height:
            calc(100% - 20px);

        border:
            1px solid rgba(200,59,56,.3);

        background:
            linear-gradient(
                145deg,
                rgba(16,18,22,.98),
                rgba(7,8,10,.98)
            );

        transition:
            padding-top .3s ease,
            transform .5s ease;

        min-height: 35rem;

        box-shadow:
            0 30px 100px rgba(0,0,0,.72),
            0 0 45px rgba(200,59,56,.08);

        border-radius: 16px;

        backdrop-filter:
            blur(25px);

        -webkit-backdrop-filter:
            blur(25px);
    }

    .navbar-sklepcs .navbar-collapse:after {
        content: "";

        position: absolute;

        top: 0;

        left: 12%;
        right: 12%;

        height: 1px;

        background:
            linear-gradient(
                90deg,
                transparent,
                #ed5752,
                transparent
            );

        box-shadow:
            0 0 18px rgba(237,87,82,.35);
    }

    .navbar-sklepcs .navbar-collapse.collapse {
        display: block;

        transform:
            translateX(110%);
    }

    .navbar-sklepcs .navbar-collapse .navbar-nav {
        margin: 0;
    }

    .navbar-sklepcs .navbar-collapse .navbar-nav > li {
        margin-left: 0;
        clear: both;
    }

    .navbar-sklepcs .navbar-collapse .navbar-nav > li > a {
        padding:
            15px 5px;

        height: 50px;

        color: #fff !important;
    }

    .navbar-sklepcs .navbar-collapse .dropdown-menu > ul > li > a,
    .navbar-sklepcs .navbar-collapse .navbar-nav > li > .dropdown-menu > ul > li > a {
        padding:
            10px 5px;

        color: #fff !important;
    }

    .navbar-sklepcs .navbar-collapse .dropdown-hover > .dropdown-menu,
    .navbar-sklepcs .navbar-collapse .dropdown-submenu > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .navbar-sklepcs .navbar-collapse .dropdown-hover > [data-toggle] + .dropdown-menu,
    .navbar-sklepcs .navbar-collapse .dropdown-submenu > [data-toggle] + .dropdown-menu {
        display: none;
    }

    .navbar-sklepcs .navbar-collapse .dropdown-hover.open > .dropdown-menu,
    .navbar-sklepcs .navbar-collapse .dropdown-submenu.open > .dropdown-menu,
    .navbar-sklepcs.navbar-small .navbar-collapse .navbar-nav > li > a > .label {
        display: block;
    }

    .navbar-sklepcs .navbar-collapse .open .dropdown-menu > li > a {
        color: #fff !important;
    }

    .navbar-sklepcs .navbar-collapse .open .dropdown-menu > li.open > a,
    .navbar-sklepcs .navbar-collapse .open .dropdown-menu > li > a:focus,
    .navbar-sklepcs .navbar-collapse .open .dropdown-menu > li > a:hover {
        color: #fff !important;
    }

    .navbar-sklepcs .navbar-collapse .navbar-nav > li > .dropdown-menu,
    .navbar-sklepcs .navbar-collapse .navbar-nav > li > .dropdown-menu > ul {
        display: block;

        position: relative;

        margin: 0;

        width: 100% !important;
    }

    .navbar-sklepcs .navbar-collapse .dropdown-submenu > .dropdown-menu {
        position: relative;

        left: auto;
        right: auto;

        width: 100% !important;

        margin: 0;
    }

    .navbar-sklepcs .navbar-collapse .dropdown-submenu > .dropdown-menu > ul {
        float: none;
    }

    .navbar-sklepcs .navbar-collapse .dropdown > .dropdown-menu {
        padding-left: 20px;
    }

    .navbar-sklepcs.navbar-small .navbar-collapse {
        padding-top: 65px;

        min-height: 35rem;

        border-radius: 16px;
    }

    .navbar-sklepcs .navbar-header {
        position: relative;

        z-index: 1;

        background:
            rgba(12,13,16,.92);
    }

    .navbar-sklepcs .dropdown-menu {
        box-shadow: none;
    }

    .navbar-sklepcs ~ .content-wrap {
        opacity: 1;

        transition:
            .5s opacity ease;
    }

    .navbar-sklepcs.sklepcs-navbar-collapsed ~ .content-wrap {
        opacity: .3;
    }

    .sklepcs-banner .info {
        text-align: center;
    }

    .sklepcs-store {
        margin-top: 6rem;
    }

    .col-md-12 {
        padding: 1.2rem;

        border-radius: 13px;
    }

    .isotope {
        padding-top: 2rem;

        padding-bottom: 2rem;

        border-radius: 14px;
    }

    .angled-bg.item {
        margin-bottom: 1.4rem;
    }

    .btn-primary {
        width: 100%;
    }

    .pagination > li {
        margin-right: .15rem;
    }

    .pagination > li > a,
    .pagination > li > span {
        padding:
            8px 14px;
    }

    .h1,
    h1 {
        font-size: 3rem;

        margin-top: 4rem;

        margin-bottom: 2.5rem;
    }

    .side-block {
        border-radius: 14px;
    }
}

/* ========================================================================== */
/* » NAVBAR SMALL                                                             */
/* ========================================================================== */

@media (min-width: 768px) {

    .navbar-sklepcs.navbar-small {
        background:
            rgba(5,6,8,.95);
    }
}

/* ========================================================================== */
/* » WHITE TEXT OVERRIDE                                                      */
/* ========================================================================== */

table,
table td,
table th,
.dataTables_wrapper,
.dataTables_wrapper label,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_paginate,
.pagination,
.pagination a,
.pagination span,
.isotope,
.isotope *,
.side-block,
.side-block *,
.angled-bg,
.angled-bg *,
.angled-img,
.angled-img *,
.sklepcs-store,
.sklepcs-store *,
.pakiet,
.price {
    color: #fff !important;
}

input,
select,
textarea,
.form-control {
    color: #fff !important;
}

select option {
    color: #fff;
    background: #101216;
}
