@import "variables.css";
@import "navbar.css";
@import "buttons.css";
@import "fmp-timer.css";

.text-balance {
  text-wrap: balance;
}

.ct {
  color: var(--ct, #232323) !important;
}
.ct1 {
  color: var(--c1, #00a1e4) !important;
}
.ct2 {
  color: var(--c2, #88bc42) !important;
}
.ct3 {
  color: var(--c3, #a690a4) !important;
}
.ct4 {
  color: var(--c4, #cc1616) !important;
}

.bg1 {
  background-color: var(--c1, #00a1e4) !important;
}
.bg2 {
  background-color: var(--c2, #88bc42) !important;
}
.bg3 {
  background-color: var(--c3, #a690a4) !important;
}
.bg-gray {
  background-color: #f4f4f4 !important;
}
.bg-dark {
  background-color: var(--ct, #232323) !important;
}

@media (min-width: 575px) {
  .bg-image {
    background-image: var(--bgurl, url(../images/bg-image.jpg));
    background-size: cover;
    background-repeat: no-repeat;
  }
  .bg-image.bg1 {
    background-image: linear-gradient(var(--c1, #00a1e4), var(--c1, #00a1e4)),
      var(--bgurl, url(../images/bg-image.jpg)) !important;
    background-size: cover, contain;
    background-repeat: no-repeat, repeat;
    background-attachment: fixed;
  }

  .bg-image.bg-white {
    background-image: linear-gradient(
        rgba(255, 255, 255, 0.95),
        rgba(255, 255, 255, 0.95)
      ),
      var(--bgurl, url(../images/bg-image.jpg)) !important;
    background-size: cover, contain;
    background-repeat: no-repeat, repeat;
    background-attachment: fixed;
  }

  .bg-image.bg-gray {
    background-image: linear-gradient(
        rgba(244, 244, 244, 0.6),
        rgba(244, 244, 244, 0.6)
      ),
      var(--bgurl, url(../images/bg-image.jpg)) !important;
    background-size: cover, cover;
    background-repeat: no-repeat, no-repeat;
    background-attachment: fixed;
  }
}

.fs12 {
  font-size: 0.75rem !important;
}
.fs14 {
  font-size: 0.875rem !important;
}
.fs18 {
  font-size: 1.125rem !important;
}
.fs20 {
  font-size: 1.25rem !important;
}
.fs24 {
  font-size: 1.5rem !important;
}
.fs28 {
  font-size: 1.75rem !important;
}
.fs32 {
  font-size: 2rem !important;
}
.fs40 {
  font-size: 2.5rem !important;
}
.fs48 {
  font-size: 3rem !important;
}
.fs72 {
  font-size: 4.5rem !important;
}

.lh1 {
  line-height: 1 !important;
}
.lh12 {
  line-height: 1.2 !important;
}
.lh13 {
  line-height: 1.3 !important;
}
.lh14 {
  line-height: 1.4 !important;
}
.lh15 {
  line-height: 1.5 !important;
}
.lh16 {
  line-height: 1.6 !important;
}
.lh17 {
  line-height: 1.7 !important;
}
.lh18 {
  line-height: 1.8 !important;
}
.lh19 {
  line-height: 1.9 !important;
}
.lh2 {
  line-height: 2 !important;
}

.fw100 {
  font-weight: 100 !important;
}
.fw200 {
  font-weight: 200 !important;
}
.fw300 {
  font-weight: 300 !important;
}
.fw400 {
  font-weight: 400 !important;
}
.fw500 {
  font-weight: 500 !important;
}
.fw600 {
  font-weight: 600 !important;
}
.fw700 {
  font-weight: 700 !important;
}
.fw800 {
  font-weight: 800 !important;
}
.fw900 {
  font-weight: 900 !important;
}

.font1 {
  font-family: var(--font1, Lato), sans-serif;
}
.font2 {
  font-family: var(--font2, "bree serif"), sans-serif;
}

:not(nav) a:not(.button), a:not(.button):link {
  outline: 0;
  color: var(--c1, #00a1e4);
}
:not(nav) a:not(.button):hover,
input {
  outline: 0;
  color: #00a1e4;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
:not(nav) a:not(.button):visited {
  color: #8e00b8;
}

section {
  padding: 6rem 0;
}

.box {
  max-width: 55rem;
  border-radius: 0.5rem;
  background-color: rgba(255, 255, 255, 0.98);
  color: var(--ct);
}
.box__picture {
  min-width: 10rem;
  min-height: 12rem;
  background-color: #38306b;
  position: relative;
}
.box_uwaga {
  background: url("../images/uwaga.png") no-repeat center center;
  min-height: 12rem;
}

.box-shadow {
  box-shadow: var(--boxShadow, 0 0.125rem 1rem #cecece);
  border: 1px solid #cecece;
}

.owl-dots {
  margin: 3.5rem 0 2rem 80px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.owl-carousel button.owl-dot {
  height: 0.75rem;
  width: 0.75rem;
  background-color: #cecece;
  border-radius: 0.75rem;
  margin-right: 1.6rem;
  transition: all 0.2s ease-in-out;
}
.owl-carousel button.owl-dot.active {
  background-color: var(--c1);
  width: 1.8rem;
}
.owl-carousel button:focus {
  outline-color: var(--c1);
}

@media (max-width: 575px) {
  .owl-dots {
    justify-content: center;
    margin: 2.5rem auto 1rem;
  }
  .owl-carousel button.owl-dot {
    margin-right: 1rem;
  }
  .owl-carousel button.owl-dot.active {
    width: 1.4rem;
  }
}

#timer__box {
  border: 2px solid #e91e63;
  border-radius: 5px;
  padding: 10px 15px;
  background-color: rgb(210 129 166 / 10%);
  box-shadow: 2px 2px 4px #999;
  max-width: 450px;
  margin: 20px auto 10px;
}

.timer-promo {
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 15px;
}

.zegar {
  display: inline-block;
  font-size: 20px;
  line-height: 30px;
}

.liczba {
  font-size: 24px;
  line-height: 30px;
  display: inline-block;
  font-weight: 700;
  color: #e91e63;
  margin-left: 5px;
  margin-right: 5px;
}

.dwukropek {
  font-size: 24px;
  line-height: 30px;
  display: inline-block;
  font-weight: 700;
  margin-left: 5px;
  margin-right: 5px;
}

.jednostka {
  font-size: 20px;
  line-height: 30px;
  display: inline-block;
}

.timer-div {
	background-color:#f9f9f9;
	border-radius:12px;
	padding-top:10px;
	box-shadow:2px 2px 12px #bbb;
	border:2px solid #fff;
	max-width:500px;
	margin:auto;
}
