/*@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,600;0,700;0,800;1,400&display=swap');*/

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

@import url('flag-icon.css');
@import url('../fonts/fontawesome-5/css/all.min.css');

@import url('../js/lightbox/dist/jquery.fancybox.css');
@import url('cookiealert.css');

/* =========================== Global =========================== */

html {
  scroll-behavior: smooth;
}

html > body {
    font-size: 14px;
    color: #555555;
    background-color: #eceff1;
    font-family: 'Roboto', Verdana, Tahoma, sans-serif;
}

/*html { overflow-y: scroll; }*/

hr { border-color: #eceff1; }

.no-gutters {
  margin-right: 0;
  margin-left: 0;

  > .col,
  > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
  }
}

button:focus { outline: 0px dotted; }

.container-fluid { max-width: 1600px; padding: 0; }

.py20 { padding-left: 20px; padding-right: 20px; }
.pr20 { padding-right: 20px; }
.px20 { padding-top: 20px; padding-bottom: 20px; }
.pt20 { padding-top: 20px; }
.pb20 { padding-bottom: 20px; }
.p20 { padding: 20px !important; }

.shad { box-shadow: 0 0 10px 0 rgba(0,0,0,.08); }

/*.fancybox-skin { background-color: #ffffff; }*/

.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

img {
    pointer-events: none;
}

@media print
{    
    .no-print, .no-print *
    {
        display: none !important;
    }
}

/* =========================== Font =========================== */

h1, h2, h3, h4, h5, h6, p, a, ol, li, label, badge, tr {
    font-family: 'Roboto', Verdana, Tahoma, sans-serif;
}

h1, h2, h3, h4, h5, h6 { color: rgba(0,0,0,0.9); line-height: 140%; }

p, tr, li {
    font-weight: 400;
    margin: 0; padding: 0;
    line-height: 160%;
    color: #555555;
}

h3 {
    font-weight: 300;
    font-size: 28px;
    line-height: 100%;
}

h5 {
    font-size: 20px;
}

* > a { color: #555555; text-decoration: none; }
* > a:hover { text-decoration: none; color: #0056b3; }
a.link { text-decoration: underline; }

.link-blue { text-decoration: none; color: #0056b3; }
.link-blue:hover { color: #555555; text-decoration: none; }

.bold, span.bold, p.bold, a.bold { font-weight: 700; }

.medium { font-weight: 600; }

/* =========================== Color =========================== */

.col-red { color: #dc3545; }
.col-green { color: #28a745; }
.col-blue { color: #0056b3; }
.col-dark { color: #444444; }
.col-green { color: #28a745; }
.col-grey { color: #f7f8fa; }

.bg-white { background-color: #ffffff; }
.bg-grey { background-color: #f7f8fa; }
.bg-dark { background-color: #555555; }
.bg-red { background-color: #faf1f2 !important; }

/* =========================== Navbar ===========================  */

#navbar { padding: 0 20px; z-index: 5000; }

@media screen and (max-width: 991px) {
    #navbar { border-bottom: 2px solid #f9821d; }
}

#navbar .navbar { padding: 0px; }

#navbar .navbar-brand { padding: 14px 20px 13px 20px; }

#navbar li a {
    display: block;
    padding: 27px 12px;
}

#navbar li { 
    position: relative;
    padding: 0;
    font-weight: 700;
}

#navbar li:hover {
    background-color: #f7f8fa;
}

#navbar .nav-item:hover::after {
    position: absolute;
    content: "";
    display: block;
    height: 2px;
    width: 100%;
    background: #0056b3;
    bottom: 0px;
    left: 0;
        -webkit-transition: .4s;
    transition: .4s;
}

#navbar .shop:hover::after {
    background: #dc3545;
}

#navbar .dropdown-item {
    color: #555555;
    border-bottom: 2px solid transparent;
    padding: 15px 0 15px 15px;
    margin: 0;
    font-weight: 700;
}

#navbar .dropdown-menu {
    font-size: inherit; 
    padding: 0;
    border: 0px solid #0056b3;
    border-radius: 0;
    margin: 0;
}

#navbar .dropdown-item:active {
    background-color: #f7f8fa;
}

#navbar .shop {
    background-color: #faf1f2;
    color: #dc3545;
    text-transform: uppercase;
}

#navbar .shop:hover {
   background-color: #f7f8fa; 
}

.dropdown-submenu { position: relative; }

.dropdown-submenu a::after{
    transform: rotate(-90deg);
    position: absolute;
    right: 5px;
    top: 40%;
}

.dropdown-submenu:hover .dropdown-menu, .dropdown-submenu:focus .dropdown-menu{
    display: flex;
    flex-direction: column;
    position: absolute !important;
    top: 0px;
    left: 100%;
}

@media (max-width: 992px) {
    .dropdown-menu {
        width: 50%;
        text-align: center;
    }    
    
    .d-m {
        width: 100%;
    }
    .dropdown-menu .dropdown-submenu {
        width: auto;
    }
    #navbar li a {
        padding: 16px 12px;
    }
    #navbar .dropdown-item {
        padding: 15px 0px 15px 0px;
    }
    
    #navbar .dropdown-item:last-child {
        padding: 15px 0px 15px 10px;
    }
}

@media screen and (max-width: 990px) {
    #navbar .badge {
        margin-bottom: 20px; 
    }
}

@media screen and (min-width: 990px) {
    #navbar .shop {
        margin-right: 20px; 
    }
}

@media screen and (max-width: 990px) {
    #navbar ul {
        border-top: 1px solid #f7f8fa;    
    }   
    #navbar li {
        border-top: 1px solid #f7f8fa;    
    }
}

#navbar .navbar-collapse {
    border: 0px solid #f7f8fa;
    text-align: center;
}

#navbar .animated-icon {
    width: 30px;
    height: 20px;
    position: relative;
    margin: 0px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

#navbar .animated-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#navbar .animated-icon span {
    background: #f9821d;
}

#navbar .animated-icon span:nth-child(1) {
    top: 0px;
}

#navbar .animated-icon span:nth-child(2), #navbar .animated-icon span:nth-child(3) {
    top: 10px;
}

#navbar .animated-icon span:nth-child(4) {
    top: 20px;
}

#navbar .animated-icon.open span:nth-child(1) {
    top: 11px;
    width: 0%;
    left: 50%;
}

#navbar .animated-icon.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#navbar .animated-icon.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#navbar .animated-icon.open span:nth-child(4) {
    top: 11px;
    width: 0%;
    left: 50%;
}

#navbar .easter-menu:hover {
    color: #28a745;
    border-bottom: 2px solid #28a745 !important;
}

#navbar .christmas:hover {
    color: #dc3545;
    border-bottom: 2px solid #dc3545 !important;
}

/* =========================== Main ===========================  */

#main {
    margin-top: 30px;
    margin-bottom: 40px;
    padding: 0 20px;
}

@media screen and (max-width: 990px) {
    #main { margin-top: 0px; padding: 0 0px; }
}

.box {
    margin: 20px 0 20px 0;
    border-radius: 10px;
}

.box-body { 
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
}

/* =========================== Navside ===========================  */

.navside {
    padding-top: 70px;
}

@media screen and (max-width: 1199px) {
    .navside { padding-top: 20px; }
}

@media screen and (max-width: 1435px) {
    #navside .badge { display: none; }
}

#navside .nav-link {
    padding: 10px 20px;
    line-height: 18px;
}

#navside .promo {
    background-image: url(../images/promo0.jpg);
    background-position: center;
    background-size: cover;
        -webkit-transition: .4s;
    transition: .4s;
}

#navside .promo:hover {
    background-image: url(../images/promo01.jpg);
        -webkit-transition: .4s;
    transition: .4s;
}

#navside .promo h5 {
    color: #ffffff;
    text-align: center;
    line-height: 25px;
    margin: 0;
}

#navside .social {
    background-image: url(../images/fb-hover.jpg);
    background-position: center;
    background-size: cover;
        -webkit-transition: .4s;
    transition: .4s;
}

#navside .social:hover {
    background-image: url(../images/fb.jpg);
        -webkit-transition: .4s;
    transition: .4s;
}

#navside .social h5 {
    color: #ffffff;
    text-align: center;
    line-height: 25px;
    margin: 0;
}

.order {
    background-image: url(../images/order.jpg);
    background-position: center;
    background-size: cover;
        -webkit-transition: .4s;
    transition: .4s;
}

.order:hover {
    background-image: url(../images/order-hover.jpg);
        -webkit-transition: .4s;
    transition: .4s;
}

.order h5 {
    color: #ffffff;
    text-align: center;
    line-height: 25px;
    margin: 0;
}

@media screen and (min-width: 1200px) {
    #navside .nav-item { text-align: left; }
}

#navside .menu li{
    border-top: 1px solid #f7f8fa;
    border-bottom: 2px solid transparent;
    font-weight: 700;
}

#navside .menu li:hover {
    background-color: #f7f8fa;
}

#navside #collapseOne li:hover {
    border-bottom: 2px solid #28a745;
}

#navside #collapseTwo li:hover{
    border-bottom: 2px solid #dc3545;
}

#navside #collapseOne li a:hover{
    color: #28a745;
}

#navside #collapseTwo li a:hover{
    color: #dc3545;
}

#navside .easter-menu, #navside .christmas, #navside .free {
    cursor: pointer;
}

#navside .easter-menu:hover {
    background-color: #e5f6e9;
}

#navside .easter-menu p {
   color: #28a745;
}

#navside .christmas:hover {
    background-color: #faf1f2;
}

#navside .christmas p {
   color: #dc3545;
}

#navside .free:hover {
    background-color: #e1efff;
}

#navside .free a {
    color: #0056b3; 
}

/* =========================== Content ===========================  */

#content .carousel-control-next,
#content .carousel-control-prev {
    filter: invert(50%);
}

#content img { position: relative; }

.more {
    font-size: .675rem;
    font-weight: 700;
    text-transform: uppercase;
}

.card-img, .card-img-top { border-radius: 0; }

.hashtag {
    background-color: #faf1f2;
    color: #dc3545;
    padding: 8px 13px;
    text-transform: uppercase;
}

#info .hashtag, #info .hashtag2 { margin-top: -5px; margin-right: 2px; }

.hashtag2 {
    background-color: #e5f6e9;
    color: #28a745;
    padding: 8px 13px;
    text-transform: uppercase;
}

.img { overflow: hidden;}

#content .text-block:hover {
    background-color: #f7f8fa;
        -webkit-transition: .4s;
    transition: .4s;
}

.express {
    background-image: url(../images/express0.jpg);
    background-position: center;
    background-size: cover;
        -webkit-transition: .4s;
    transition: .4s;
}

.express:hover {
    background-image: url(../images/express.jpg);
        -webkit-transition: .4s;
    transition: .4s;
}

.express h5 {
    color: #ffffff;
    text-align: center;
    line-height: 25px;
    margin: 0;
}

#content .about {
    border: 1px solid #28a745;
    color: #28a745;
    padding: 8px 13px;
    font-size: 13px;
    background: #ffffff;
    text-transform: uppercase;
}

.orderbt {
    color: #ffffff;
    background-color: #28a745;
    padding: 8px 13px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    margin: auto 10px;
}

.orderbt:hover {
    color: #28a745;
    background-color: #ffffff;
}

 #works .item {
    position: relative;
    margin: 10px 10px 10px 10px;
    border-radius: 10px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 0 10px 0 rgba(0,0,0,.05);
}

 #works .size {
    position: absolute;
    top: 0;
    left:0;
    width: 100%;
    height: 100%;
    background-color: rgba(37, 41, 39, 0.2);
    z-index: 100;
    font-size: 50px;
    opacity: 0;
    border-radius: 10px 10px 0 0;
}

#works .size .fas {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
        -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #fff;
}

#works .size:hover {
    opacity: 1;
    transition: .4s;
}

/* =========================== Gallery ===========================  */

#info .bn {
    background-image: url(../images/christmas.png);
    background-position: center;
    background-size: auto;
        -webkit-transition: .4s;
    transition: .4s;
}

#info .bn:hover {
    background-image: url(../images/christmas-hover.png);
        -webkit-transition: .4s;
    transition: .4s;
}

#info .religijne {
    background-image: url(../gal/wn/religijne.jpg);
    background-position: right center;
    background-size: cover;
        -webkit-transition: .4s;
    transition: .4s;
}

#info .wn {
    background-image: url(../gal/wn/wn.jpg);
    background-position:left center;
    background-size: cover;
        -webkit-transition: .4s;
    transition: .4s;
}

#info .wn:hover {
    background-image: url(../gal/wn/wn.jpg);
        -webkit-transition: .4s;
    transition: .4s;
}

#info .bn h5, #info .wn h5 {
    color: #ffffff;
    text-align: center;
    line-height: 25px;
    margin: 0;
}

#gallery .item, #gallery2 .item {
    position: relative;
    margin: 10px;
    border-radius: 10px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 0 10px 0 rgba(0,0,0,.05);
}

 #gallery .size {
    position: absolute;
    left:0;
    width: 100%;
    height: 100%;
    background-color: rgba(37, 41, 39, 0.2);
    z-index: 100;
    font-size: 50px;
    opacity: 0;
    border-radius: 10px 10px 0 0;
} 

#gallery2 .size {
    position: absolute;
    left:0;
    width: 100%;
    height: 100%;
    background-color: rgba(37, 41, 39, 0.2);
    z-index: 100;
    font-size: 50px;
    opacity: 0;
    border-radius: 0 0 0 0;
}

#gallery .size .fas {
    margin: 0;
    position: absolute;
    top: 40%;
    left: 50%;
        -ms-transform: translate(-40%, -50%);
    transform: translate(-40%, -50%);
    color: #fff;
}

#gallery2 .size .fas {
    margin: 0;
    position: absolute;
    top: 40%;
    left: 50%;
        -ms-transform: translate(-40%, -50%);
    transform: translate(-40%, -50%);
    color: #fff;
}

#gallery .size:hover, #gallery2 .size:hover {
    opacity: 1;
    transition: .4s;
}

#gallery .zamow i, #gallery2 .zamow i {
    color: #28a745;
}

#gallery .zamow a:hover > i, #gallery .zamow a:hover, #gallery2 .zamow a:hover > i, #gallery2 .zamow a:hover {
    color: #dc3545 !important;
    background-color: #faf1f2;
}

#gallery .zamow, #gallery2 .zamow {
    z-index: 1000;
    position: relative;
}

#gallery .zamow a, #gallery2 .zamow a {
    padding: 7px 0;
    font-size: 14px;
    font-weight: 700;
    height: 35px;
    background-color: #ffffff;
}

.badge-light {
    background-color: #f7f8fa;
}

.fancybox-content:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background-image: url("../gal/znakwodny.png");
  background-size: 100%;
  background-repeat: repeat;
  opacity: 0.7;
}

/* =========================== Info ===========================  */

#info .sticky-top {
    top: 30px;
}

#info .item { 
    border-bottom: 1px solid #f7f8fa; 
    padding: 12px 14px 12px 11px;
}

#info .item:hover { 
    background-color: #f7f8fa;
    -webkit-transition: .4s;
    transition: .4s;
}

.subtitle {
    font-size: 12px;
}

/* =========================== Filtrowanie ===========================  */

#wish li {
    padding: 5px;
}

#wish .item {
    position: relative;
    border-radius: 10px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 0 10px 0 rgba(0,0,0,.05);
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
}

#wish .equal { height: 100%; }

#wish .card-footer { 
    background-color: transparent;
    border-top: none;
    padding-bottom: 20px;
}

#wish .nav-link {
    border: 2px solid transparent;
    font-weight: 700;
    padding: 12px 9px 11px 9px;
    background-color: #f7f8fa;
    border-radius: 10px;
}

#wish .nav-link.active {
    border: 2px solid #0056b3;
    color: #0056b3;
}

#wish .nav-tabs {
    border-bottom: 0px;
}

#wish .nav-tabs .nav-item { margin-bottom: 0; }

#filter li {
    padding: 5px;
}

#filter .nav-link {
    border: 2px solid transparent;
    font-weight: 700;
    padding: 12px 9px 11px 9px;
    background-color: #f7f8fa;
    border-radius: 10px;
}

#filter .nav-tabs {
    border-bottom: 0px;
}

#filter .nav-link.active {
    border: 2px solid #0056b3;
    color: #0056b3;
}

/*
.btn {
  border: none;
  outline: none;
  padding: 12px 16px;
  background-color: #f1f1f1;
  cursor: pointer;
}

.btn:hover {
  background-color: #ddd;
}

.btn.active {
  background-color: #666;
  color: white;
}
*/

.filterDiv {
  display: none;
}

.show {
  display: block;
}

#filter .nav-link {
  cursor: pointer;
}


/* =========================== Form content =========================== */

#order .form-group, #order .input-group { margin: 0px 0 8px 0; }

#order .form-control, #order .custom-select, #order .input-group-text { font-size: .875rem; }

#order .bt button {
    width: 150px;
    font-weight: 700;
}

#order .custom-file-label::after { content: "Dodaj plik"; }

#order .custom-radio {
    border: 0px solid #ced4da; 
    border-radius: 0.25rem;
    /* background-color: #f7f8fa;
    margin-top: 0px; */
}

#order .custom-control-inline { margin-right: 8px; }

#order .custom-radio .custom-control-input:checked ~ .custom-control-label::before {
    background-color: #007bff;
    border-color: #007bff;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e"); }

#order .custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.0);
}

#order .form-control:focus1 {
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.0);
    border-color: #555555;
}

.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  color: #fff;
  background-color: #f6f7f9;
  border-color: #dc3545
}

#regForm {
    border-width: 0px;
    border-color: #f9821d;
    border-style: solid;
}

input.invalid {}

#order .tab { display: none; }

#order .order-nav {
    background-image: url(../images/order-nav.jpg);
    background-position: center;
    background-size: cover;
    color: #ffffff; 
}

.step {
    font-weight: 400;
    font-size: 18px;
}

#order .order-nav i { color: #ffffff; }

.step.active { color: #fff; font-weight: 700; text-transform: uppercase; }

.step.finish { }

.hidden { display: none;}

    #kreda {
      display: none;
    }

    #perla {
      display: none;
    }

#order label {
    font-size: 15px;
}

.calculator .error {
    color: #dc3545;
    font-size: 14px;
    font-weight: bold;
}

.calculator .custom-quote {
    color: #0056b3;
    font-size: 14px;
    font-weight: bold;
}

.calculator .calkowity-koszt {
    font-size: 20px;
}

/* =========================== Price =========================== */

tbody tr td .line {
    text-decoration: none;
}

.table { margin-bottom: 0; }

#price tbody tr td { padding: 10px 0px 10px 15px; }
#price thead tr td { padding: 10px 0px 10px 0px; }

#info tbody tr td { padding: 10px 7px 10px 15px; }
#info thead tr td { padding: 10px 0px 10px 0px; }

#price tbody tr td:nth-child(4) {
/*text-decoration: line-through;*/
}

#price tr td:nth-child(2) {
    color: #dc3545;
display: none;
}

#price tr td:nth-child(3) {
    color: #dc3545;
display: none;
}

.fancybox-caption__body {
 font-size: 20px;
}

.shop2:hover::after {
    background: #dc3545;
}

.shop2 {
    background-color: #faf1f2;
    color: #dc3545;
    text-transform: uppercase;
    font-size: 15px;
    padding: 10px;
}

.shop2:hover {
   background-color: #f7f8fa; 
}

/* =========================== Do góry ===========================  */

#myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 1299; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: red; /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
}

#myBtn:hover {
  background-color: #555; /* Add a dark-grey background on hover */
}

/* =========================== Sezony ===========================  */

body.season-easter .xmas { display: none !important; }
body.season-easter .easter { display: block !important; }

body.season-xmas .xmas { display: block !important; }
body.season-xmas .easter { display: none !important; }

body.season-xmas .xmas-section { order: 1 !important; }
body.season-xmas .easter-section { order: 2 !important; }
body.season-easter .easter-section { order: 1 !important; }
body.season-easter .xmas-section { order: 2 !important; }