.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-weight: 900
}

.h1, h1 {
    font-size: 55px
}

.h2, h2 {
    font-size: 40px
}

.h4, h4 {
    font-size: 40px
}

.h5, h5 {
    font-size: 20px
}

* {
    margin: 0;
    padding: 0;
    font-family: Roboto, sans-serif
}

a {
    text-decoration: none;
    color: #000
}

a:hover {
    text-decoration: none;
    color: #000
}

img {
    max-width: 100%
}

.hp-button {
    border: none;
    outline: 0;
    background: #000;
    color: #fff;
    border-radius: 34px !important;
    padding: 10px 3px;
    white-space: nowrap
}

.btn-text {
    padding: 10px;
    font-weight: 700;
    color: #fff
}
.primary-button{
    background-color: rgb(0, 0, 0);
    color: white;
    border-radius: 25px;
    padding:6px 18px;
    font-size: 1rem;
    border: 2px solid black;
    transition: all .3s ease-out;
    margin: 25px auto;
    position: relative;
    display: block;
  }
  .secondary-button{
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    border-radius: 25px;
    padding:6px 18px;
    font-size: 1rem;
    border: 2px solid rgb(0, 0, 0);
    transition: all .3s ease-out;
  }
  .user-block{
    position: relative;
    border-radius: 15px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 5% 10%
  }
  .working-new,.working-first{
    position: relative;
    width: 90%;
    margin: 15px auto;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 20px;
    background-color: #38cd8a;
    color: white
}
.working-new h5{
    position:relative;
    width: 60%;
}
.clock{
  position: relative;
  width: 150px;
  height: 150px;
  border-radius: 50%;
   background: url(/src/img/clock.svg);
  background-size: cover;

}
.clock::before{
  content: '';
  position: absolute;
  left: 50%;
  width: 30%;
  height: 3px;
  background: #fff;
  top: calc(50% - 3px);
  border-radius: 3px;
  animation: animate 15s linear infinite;
  transform-origin: left;
}

@keyframes animate {
  0%{
      transform: rotate(0deg);
  }
  100%{
      transform: rotate(360deg);
  }
}
.clock::after{
  content: '';
  position: absolute;
  left: 50%;
  width: 20%;
  top: calc(50% - 3px);
  border-radius: 3px;
  height: 4px;
  background: #fff;
  animation: anime 60s linear infinite;
  transform-origin: left;
}
@keyframes anime {
  0%{
      transform: rotate(-90deg);
  }
  100%{
      transform: rotate(270deg);
  }
}
.clock span{
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  z-index: 1;
}
.working-first{
    flex-direction: column;
    padding: 30px 80px;
    gap: 30px
}


.working-first-cont::before,
.working-first-cont::after {
    content: '';
    position: absolute;
    top: 0;
    width: 20%; /* Width of the fading effect */
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.working-first-cont::before {
    left: 0;
    background: linear-gradient(to right, #38cd8a 0%, transparent 100%);
}

.working-first-cont::after {
    right: 0;
    background: linear-gradient(to left, #38cd8a 0%, transparent 100%);
}


.working-first-cont {
    overflow: hidden;
    position: relative;
    
}

.working-first-cont img,
.working-first-cont .spacer {
    flex-shrink: 0;
}
.working-first-cont img{
    width: 60%
}
.working-first-cont .image-container {
    animation: slideImage 15s linear infinite;
    display: flex; /* Pro podporu více prvků vedle sebe */
}

.working-first-cont .spacer {
    width: 30%; /* Šířka mezery */
    height: 100px;
    display: block;
    background: transparent;
}

@keyframes slideImage {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%); /* Posun o polovinu celkové šířky obsahu */
    }
}

@media only screen and (max-width: 1000px) {
    .working-new,.working-first{
        width: 100%;
        margin: 10px auto;
        padding: 15px;
        gap: 10px
    }
    .working-new h5,.working-first h5{
        font-size: 16px;
    }
    .working-new{
        flex-direction: column-reverse
    }
    .working-new h5{
        width: 100%;
        text-align: center;
    }
    .clock{
        width: 120px;
        height: 120px;
    }
    .pen{
        display: none
    }
   
}

  .motto{
    font-size: 20px;
  }
  .motto a{
    text-decoration: underline;
  }
  .horcenter{
    display: flex;
    align-items: center;

}
.version-div{
    
    width: 100%;
}
.version-div.active{
   background: #fff3cd;
}

.flexcenter{
    display: flex;
    justify-content: center;
    align-items: center;
}
  .accordion {
    background-color: rgb(255, 255, 255);
    color: #444;
    cursor: pointer;
    margin-top: 20px;
    padding: 18px;
    width: 100%;
    border: none;
    border-radius: 10px;
    text-align: left;
    outline: none;
    font-size: 18px;
    font-weight: 500;
    transition: 0.4s;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  }
  
  .accordion:hover {
    background-color: rgb(241, 241, 241);
  }
  
  .accordion:after {
    content: '\002B';
    color: rgb(0, 0, 0);
    font-weight: bold;
    float: right;
    margin-left: 5px;
  }
  .panel img{
    width: 8%;
    margin: auto;
    max-width: 300px;
}
  .accordion.active:after {
    content: "\2212";
  }
  .panel {
    padding: 0px 25px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }
  .vv-image{
    width: 32%;
    float: left;
    margin-right: 1%;
    margin-bottom: 1%;
    text-align: center;
}
  .backbtn{
    cursor: pointer;
    position:absolute; 
    right: 25px;
    top:25px
    }
    #what-next{
        display: none;
    
    }
    .what-next-row{
        display: flex;
        gap: 10px;
        align-items: center;
        margin-bottom: 15px;
    }
    .what-next-row img{
        width: 8%;
        max-width: 300px;
    }
    .what-next-row h3{
        margin: 0;
    }
    .what-next ul{
        padding-left: 30px;
    }
    .template h1{
        margin-top: 30px
    }
        .template-preview img{
            width: 60%;
            margin: 50px auto
        }
        .template-buttons{
            padding: 20px 10px 60px 10px
        }
        .template-buttons button {
      border-radius: 30px;
      background-color: #000000;
      border: none;
      color: #FFFFFF;
      text-align: center;
      padding: 20px;
      width: 200px;
      transition: all 0.5s;
      cursor: pointer;
      margin: 5px;
    }
    
    .template-buttons button span {
      cursor: pointer;
      display: inline-block;
      position: relative;
      transition: 0.5s;
    }
    
    .template-buttons button span:after {
      content: 	'\2193';
      position: absolute;
      opacity: 0;
      top: 0;
      right: -20px;
      transition: 0.5s;
      font-weight: black
    }
    
    .template-buttons button:hover span {
      padding-right: 25px;
      
    }
    
    .template-buttons button:hover span:after {
      opacity: 1;
      right: 0;
    }
.form-input {
    border: 2px solid #000 !important;
    border-radius: 10px !important
}

.form-input::-webkit-input-placeholder {
    color: #9699a4 !important
}

.form-input::-moz-placeholder {
    color: #9699a4 !important
}

.form-input:-ms-input-placeholder {
    color: #9699a4 !important
}

.form-input::-ms-input-placeholder {
    color: #9699a4 !important
}

.form-input::placeholder {
    color: #9699a4 !important
}

.custom-control-label::after {
    border: 2px solid #000;
    border-radius: 4px
}

.form-text-box {
    border: 2px solid #000;
    border-radius: 4px
}

.grid-img {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 15px
}

.onas-main {
    padding-bottom: 8em;
    padding-top: 6em;
    background-size: cover;
    margin-bottom: 8em !important;
    margin-top: 0 !important
}

.ponozkator-icon {
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    bottom: 20px;
    text-align: center;
    width: 150px;
    -webkit-transform: translateY(120%);
    -ms-transform: translateY(120%);
    transform: translateY(120%)
}
input[type=text] { padding: 5px; width: 300px; }
select { padding: 5px; width: 300px; }

.hs-input {
     background-color: #f5f8fa;
    display: inline-block;
    min-width: 330px;
    max-width: 500px;
    height: 40px;
    padding: 10px 15px !important;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: normal;
    line-height: 22px;
    color: #33475b;
    border: 1px solid #cbd6e2;
    box-sizing: border-box;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    border-radius: 15px;
}
.switch {
position: relative;
display: inline-block;
vertical-align: middle;
margin: 0 10px;
width: 40px;
height: 22px;
}

/* Hide the default checkbox */
.switch input {
opacity: 0;
width: 0;
height: 0;
}

/* The slider */
.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #2196F3;
transition: .4s;
border-radius: 22px;
}

.slider:before {
position: absolute;
content: "";
height: 14px;
width: 14px;
left: 4px; 
bottom: 4px;
background-color: white;
transition: .4s;
border-radius: 50%;
}



input:checked + .slider:before {
transform: translateX(18px);
}

/* Rounded sliders */
.slider.round {
border-radius: 22px;
}

.slider.round:before {
border-radius: 50%;
}

td span {
display: inline-block;
vertical-align: middle;
}


.jak-ponozkator-funguje-ponozky {
    display: block;
    margin-bottom: -20%;
    margin-top: 0;
    width: 75%
}
.stripe{
    margin: 50px 0 50px 0;
    display: flex;
    position: relative;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    height: auto;
}
.stripeImage{
    width: 19.5%;
}

.imgrounded{
    border-radius: 20px;
}


.stripeImage{
    overflow: hidden;
    object-fit: cover;
    border-radius: 5%;
}
.stripeImage img{
    -webkit-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
    -webkit-transform: scale(1);
	transform: scale(1);
}
.stripeImage img:hover{
    -webkit-transform: scale(1.05);
	transform: scale(1.05);
}

.galleryGrid { 
      
    display: grid;
    margin: 0 auto;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    grid-auto-flow: row;
    grid-template-areas:
      "a b c c d "
      "a f g h e"
      

  }
  
  .a { grid-area: a; }
  
  .b { grid-area: b; }
  
  .c { grid-area: c; }
  
  .d { grid-area: d; }
  
  .e { grid-area: e; }
  
  .f { grid-area: f; }
  
  .g { grid-area: g; }
  
  .h { grid-area: h; }

  .i { grid-area: i; }
  
  .j { grid-area: j; }
  
  .k { grid-area: k; }
  
  .l { grid-area: l; }
  
  .m { grid-area: m; }
  
  .n { grid-area: n; }
  
  .o { grid-area: o; }
  
  .p { grid-area: p; }
  
  

  
 .gridItem{
    overflow: hidden;
    border-radius:20px;
    width: 100%;
    height: 100%;
    margin: auto;
    box-shadow: rgba(50, 50, 93, 0.3) 5px 5px 6px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    
 }

  .gridItem img{
    width: 100%;
    height: 100%;
    object-fit: cover;

   
    transform: scale(1);
        -webkit-transform: scale(1);
    transition: .3s ease-in-out;
        -webkit-transition: .3s ease-in-out;
    
    
} 
.B2B-gallery{
    width: 100%;
    gap: 5px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}
.B2B-gridItem img{
    width: 100%;
    display: block;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.ilustration img{
    height: 100%;
    margin: auto;
  }
  .offer-grid{
    margin: 100px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 10%;
    row-gap: 30px
  }
  .offer-grid img{
    width: 16%;
  }
.gridItem img:hover{
  transform: scale(1.1);
      -webkit-transform: scale(1.1);
    }
@media only screen and (max-width: 767px) {
    .jak-ponozkator-funguje-ponozky {
        margin-bottom: 0;
        margin-top: -15%
    }
    .pricing-table{
        width: 95%;
        border-radius: 15px;
    }
    .pricing-table td, .pricing-table th{
        padding: 8px 0
    }
    .vv-image{
        width: 49%;
    }
    .p-4{
        padding: 0.5rem !important;
    }
    .pricing-table h5{
        font-size: 3vw;
    }
    .pricing-table h6{
        font-size: 2.5vw;
    }
    .pricing-table .fa{
        font-size: 2vw;
    }
    .what-next-row{
        display: flex;
        flex-direction: column;
        align-items: center;

    }
    .what-next-row img{
        width: 20%;
    }
    .what-next h2{
        font-size: 22px;
    }
    .offer-grid img{
        width: 30%;
      }
      .hide{
        display: none;
    }
    h1{
        font-size: 40px;
        margin-top: 30px;
    }
    .backbtn{
        top: 10px;
        right: 10px
    }
    .panel{
        width: 100%;
    }
    .what-next.user-block{
        padding: 20px 10px;
    }
    .tempxplate-preview img{
        width: 90%;
        margin: 30px auto
    }
    .template-buttons button span {
        padding-right: 25px;
        
      }
      
      .template-buttons button span:after {
        opacity: 1;
        right: 0;
      }
      .stripeImage{
        width: 48%;
        margin-bottom: 5px;
    }
    .stripe{
        
            margin-top: 90px;
       
        flex-wrap: wrap;
        margin-bottom: 0;
    }
      .galleryGrid{
        
        display: grid;
        align-items: center;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr;
        gap: 5px 5px;
        grid-auto-flow: row;
        grid-template-areas:
          "a b c"
          "d e f"
          "g h i"
          "j k l"
          "m n .";
        width: 90%;
      }
      
      .a { grid-area: a; }
      
      .b { grid-area: b; }
      
      .c { grid-area: c; }
      
      .d { grid-area: d; }
      
      .e { grid-area: e; }
      
      .f { grid-area: f; }
      
      .g { grid-area: g; }
      
      .h { grid-area: h; }
      
      .i { grid-area: i; }
      
      .j { grid-area: j; }
      
      .k { grid-area: k; }
      
      .l { grid-area: l; }
      
      .m { grid-area: m; }
      
      .n { grid-area: n; }
      
      .gridItem img{
        border-radius: 5%;
        height: 35vw;
        width: 100%;
        object-fit: cover;
        
    }
}

.jak-ponozkator-funguje-ponozky-spacer {
    padding-bottom: 10%
}

.jak-ponozkator-funguje-ponozky-container-row {
    max-width: 1140px;
    margin: auto
}

.jak-ponozkator-funguje-ponozky-col {
    padding-top: 5em;
    padding-bottom: 5em
}

@media only screen and (max-width: 767px) {
    .jak-ponozkator-funguje-ponozky-col {
        padding-top: 0
    }
}

.chilli-text {
    padding-bottom: 1em
}

.list-icon {
    max-width: 51px
}

.product-category__name {
    font-size: 25px;
    font-weight: 900
}

.eshop-velikost-btn {
    border: none;
    outline: 0;
    background: #000;
    color: #fff;
    border-radius: 34px !important;
    padding: 1px
}

.eshop-button {
    border: none;
    outline: 0;
    background: #fff;
    border: 2px solid #171728;
    border-radius: 34px !important;
    padding: 5px 10px
}

.eshop-button .btn-text {
    color: #000
}

.eshop-category-color {
    border: none;
    outline: 0;
    background: #2369c4;
    border-radius: 50px !important;
    padding: 1px;
    margin: 1px
}

.eshop-product-detail-gallery {
    border-radius: 9999px
}

.eshop-product-cart {
    border-radius: 20px
}

.eshop-product-detail-btn {
    padding: unset !important;
    background: 0 0 !important;
    border: none !important
}

.eshop-product-detail-photo {
    border-radius: 30px
}

@media only screen and (max-width: 767px) {
    .eshop-product-detail-photo {
        border-radius: 20px
    }
}

.modal-backdrop {
    display: none
}

.eshop-motiv {
    margin-top: 5em;
    border-radius: 20px;
    -webkit-box-shadow: 5px 10px 20px #00000026;
    box-shadow: 5px 10px 20px #00000026;
    border: 2px solid #000
}

.eshop-motiv-ponozky {
    width: 85%
}

.header {
    padding: 30px 0;
    max-width: 1825px;
    margin: auto
}

.navbar {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap
}

.navbar__item {
    font-weight: 900;
    padding: 0 10px;
    font-size: 25px;
    line-height: 30px
}

.navbar__icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 20px 0 0 40px
}

.navbar__icon {
    width: 50px;
    height: 42px;
    padding-left: 8px;
    cursor: pointer
}

.logo {
    max-width: 240px;
    margin-right: auto
}

.hamburger-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
    padding: 20px 0 0 0
}

@media (max-width: 1375px) {
    .navbar__item {
        font-size: 20px;
        line-height: 26px
    }

    .logo {
        max-width: 180px
    }

    .hamburger-wrapper {
        padding: 12px 0 0 0
    }

    .navbar__icons {
        padding: 12px 0 0 20px
    }
}

@media (max-width: 1150px) {
    .hamburger-menu-ui {
        display: block
    }

    .hamburger-wrapper {
        width: 100%;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3
    }

    .navbar {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .navbar__item:not(.navbar__icons) {
        width: 100%;
        padding: 16px;
        border-top: 1px solid #000
    }

    .navbar__item:not(.navbar__icons):last-child {
        border-bottom: 1px solid #000
    }

    .hamburger-menu-state:not(:checked) ~ .hamburger-wrapper {
        display: none
    }

    .hamburger-menu-state:not(:checked) ~ .navbar__icons .open {
        display: block !important
    }

    .hamburger-menu-state:checked ~ .navbar__icons ~ .hamburger-wrapper {
        display: block
    }

    .hamburger-menu-state:checked ~ .navbar__icons .close {
        display: block !important
    }
}

@media (max-width: 575px) {
    .logo {
        max-width: 115px
    }

    .navbar {
        padding: 0
    }

}

@media (max-width: 300px) {
    .logo {
        max-width: none;
        width: 100%
    }
}

.footer-ponozky {
    margin-top: -45%
}

.footer-container {
    margin-top: auto
}

.footer-spacer {
    padding-top: 20%
}

.footer {
    padding: 30px 15px;
    max-width: 1825px;
    margin: auto
}

.footer-title {
    font-size: 2.92vw
}

@media only screen and (max-width: 768px) {
    .footer-ponozky {
        width: 50%;
        position: relative;
        bottom: 8em;
        margin-top: 0
    }

    .footer-udaje {
        position: relative;
        bottom: 3em;
        text-align: center
    }
}

html {
    overflow-y: scroll
}



#app {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.breadcrumb__item:not(:last-child):after {
    content: ">";
    display: inline-block;
    padding: 0 10px;
    text-decoration: none;
    color: #9699a4
}

.breadcrumb__item {
    color: #9699a4;
    text-decoration: none
}

.breadcrumb__item.active {
    color: #000;
    text-decoration: underline
}

.css-state-holder {
    position: absolute;
    left: -9999em
}

.hp-rectangle-ponozky {
    display: block;
    position: relative;
    bottom: 60px;
    width: 75%
}

.rectangle-container {
    margin-top: 2em;
    margin-bottom: 4em;
    border-radius: 40px;
    -webkit-box-shadow: 6px 6px 10px #00000033;
    box-shadow: 6px 6px 10px #00000033
}

@media only screen and (max-width: 575px) {
    .rectangle-container {
        margin: 0
    }
}

.banner-text {
    width: 100%;
    padding: 0 0 0 8vw
}

@media (min-width: 1200px) {
    .banner-text {
        padding: 0 0 0 6em
    }
}

@media only screen and (max-width: 767px) {
    .banner-text {
        padding: 6em 0
    }
}

@media only screen and (max-width: 576px) {
    .banner-text {
        padding: 0 0 6em 0
    }
}

.dark-container {
    color: #fff
}

@media only screen and (max-width: 991px) {
    .hp-rectangle-ponozky {
        width: 100%
    }
}

@media only screen and (max-width: 575px) {
    .hp-rectangle-ponozky {
        position: unset;
        width: 75%;
        margin: auto
    }

    .dark-container {
        color: #000
    }

    .rectangle-container {
        background-color: transparent !important;
        -webkit-box-shadow: none;
        box-shadow: none
    }
}

.tab-container {
    overflow-x: auto
}

.tabs {
    min-width: 390px
}

.nav-tabs {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important
}

.nav-tabs .nav-link {
    border: none;
    background: #f1f1f6;
    color: #9699a4;
    margin: 0px 5px 0px 0px;
    border-radius: 20px 20px 0 0;
    padding: 11px 17px 5px 17px;
    font-size: 12px
}

@media (min-width: 992px) {
    .nav-tabs .nav-link {
        
        border-radius: 40px 40px 0 0;
        padding: 25px 45px 15px 45px;
        font-weight: 900 !important;
        font-size: 25px
    }
}

.nav-link.active {
    background: #000 !important;
    color: #fff !important
}

.nav-tabs {
    border-bottom: none
}

.tab-content {
    -webkit-box-shadow: 5px 5px 20px #00000026;
    box-shadow: 5px 5px 20px #00000026;
    border-radius: 40px;
    background-color: #fff;
    margin: 0 !important
}
.tab-content.nahled{
    border-radius: 0px 40px 40px 40px !important;
}
.tabs .table thead th {
    border: none
}

.counter {
    border: none;
    background: 0 0;
    border-radius: 21px;
    width: 42px;
    height: 42px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-bottom: 20px
}

.counter--small {
    border-radius: 12px;
    width: 24px;
    height: 24px;
    margin-bottom: 0
}

.counter-number {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 42px;
    width: 75px;
    margin-bottom: 20px
}

.counter-number input {
    border: none;
    display: inline-block;
    width: 39px;
    padding: 0 0 0 9px;
    font-size: 25px;
    font-weight: 900;
    color: #000;
    opacity: 1;
    height: 42px;
    background: 0 0
}

.counter-number--small {
    height: 24px;
    width: 54px;
    margin-bottom: 0
}

.counter-number--small input {
    width: 29px;
    padding: 0 0 0 5px;
    font-size: 18px;
    height: 24px
}

.counter-unit {
    font-size: 25px;
    font-weight: 900;
    z-index: -1;
    display: inline-block;
    width: 35px;
    padding: 0 9px 0 0
}

.counter-unit--small {
    font-size: 18px;
    padding: 0 5px 0 0
}

.counter-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.counter-col {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap
}
.pricing-table{
    width: 50%;
    margin: 20px auto;
    text-align: center;
    border-collapse: collapse;
    border-radius: 40px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    font-weight: bold;
}
.pricing-table thead{
    border-bottom: 2px solid #000;
    font-size: 1.2rem;
}
.pricing-table tbody{
    font-size: 1rem;
}
.pricing-table tr{
    border-bottom: 1px solid rgb(204, 204, 204);
    line-height: 30px;
}
.pricing-table tr:last-child{
    border-bottom: none;
}
.pricing-table tr:nth-child(even){
    background-color: rgb(243, 243, 243);
}
.pricing-table td, .pricing-table th{
    padding: 15px 10px;
}
@media only screen and (max-width: 768px) {
    .product__price {
        font-size: 20px;
        line-height: 26px;
        margin-top: 0 !important
    }
}

.product__size {
    font-size: 25px;
    font-weight: 900
}

@media only screen and (max-width: 768px) {
    .product__size {
        font-size: 20px;
        line-height: 26px;
        margin-top: 0 !important
    }
}

.product__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

@media only screen and (max-width: 576px) {
    .product__description {
        -webkit-box-ordinal-group: 1000;
        -ms-flex-order: 999;
        order: 999
    }
}

.cart-divider:after {
    content: "";
    display: block;
    height: 100%;
    border-right: 1px solid #000;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%)
}

.cart1-product-state:not(:checked) ~ .row--content {
    display: none
}

.cart1-product-state:not(:checked) ~ .row--toggler .open-cart {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important
}

.cart1-product-state:checked ~ .row--content {
    display: block
}

.cart1-product-state:checked ~ .row--toggler .close-cart {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important
}

.cart1-product-ui {
    background: #f6f6ff;
    padding: 13px 19px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.filter-product-state:not(:checked) ~ .row--content {
    display: none
}

.filter-product-state:not(:checked) ~ .row--toggler .open-cart {
    display: inline-block !important
}

.filter-product-state:checked ~ .row--content {
    display: block
}

.filter-product-state:checked ~ .row--toggler .close-cart {
    display: inline-block !important
}

.filter {
    width: 100%;
    text-align: center
}

.bg-white {
    background-color: #fff
}

.bg-black {
    background-color: #404040
}

.bg-grey {
    background-color: #f6f6ff
}

.bg-green {
    background-color: #38cd8a
}

.text-white {
    color: #fff
}

.text-black {
    color: #404040
}

.no-border {
    border: none
}

.visuallyhidden {
    margin: -1px;
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    white-space: nowrap
}

.no-padding {
    padding: 0
}

.no-margin {
    margin: 0
}

.dropdown-menu[data-bs-popper] { right: 27px !important; left: auto; margin-top: 8px; }