@import './config.css';


.btn{
  display: inline-block;
  margin-top: 1rem;
  background:var(--orange);
  color:#fff;
  padding:.8rem 3rem;
  font-size: 1.7rem;
  text-align: center;
  cursor: pointer;
  border-radius:10px;
}
.btn:hover { background: var(--orange-hover); }
.btn:active {
  transform: translateY(1px);
  filter: saturate(150%);
}


/* btn marketplace */
.OZON { background: var(--green); }
.OZON:hover { background: var(--OZON); }

.Yam { background: var(--green); }
.Yam:hover {background: var(--Yam);}
/* btn marketplace end */


.heading{
  text-align: center;
  color:var(--black);
  text-transform: uppercase;
  padding:1rem;
  font-size: 3.5rem;
  padding-bottom: 2rem;
}

.heading span{
  color:var(--orange);
  text-transform: uppercase;
}

.header-1{
  background:#eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding:2rem 9%;
}

.logo{
  color:var(--black);
  font-weight: bolder;
  font-size: 3rem;
}

.logo i{
  padding-right: .5rem;
  color:var(--orange);
}

.container-banner img {
  display: block;
  width: 100%;
  margin: 0 auto;
}

.container-banner .content {
  background: rgb(230, 230, 230);
  text-align: center;
  width: 100%;
  padding: 12px 25px 12px 25px;
  border-radius: 4rem;
}

.container-banner .content h3 {
  font-size: 4rem;
}

.container-banner .content p {
  font-size: 2rem;
}

/*------------------------------search------------------------------*/

.header-1 .search-box-container{
  display: flex;
  height:5rem;
}

.header-1 .search-box-container #search-box{
  height: 100%;
  width:100%;
  padding:1rem;
  font-size: 2rem;
  color:#333;
  border:.1rem solid rgba(0,0,0,.3);
  text-transform: none;
  border-radius: 45px 0 0 45px;
}

.header-1 .search-box-container .submit{
  height: 100%;
  width: 8rem;
  font-size: 2.5rem;
  line-height: 5rem;
  color:#fff;
  background:var(--orange);
  text-align: center;
  cursor: pointer;
  border-radius: 0 45px 45px 0;
}

.header-1 .search-box-container label:hover{
  background:var(--black);
}

/*------------------------------search end------------------------------*/

.header-2{
  background:#fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding:2rem 9%;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
  position: relative;
}

.header-2.active{
  position: fixed;
  top:0; left: 0; right:0;
  z-index: 10000;
}

.header-2 .navbar a{
  padding:.5rem 1.5rem;
  font-size: 2rem;
  border-radius: .5rem;
  color:var(--black);
}

.header-2 .navbar a:hover{
  background:var(--orange);
  color:#fff;
}

.header-2 .contact a{
  font-size: 2.5rem;
  color:var(--black);
  padding-left: 1rem;
}

.header-2 .contact a:hover{
  color:var(--orange);
}

.header-1 .contact a{
  font-size: 2.5rem;
  color:var(--black);
  padding-left: 1rem;
}

.header-1 .contact a:hover{
  color:var(--orange);
}

.header-1 .contact a::before{
  color: var(--green);
}

#menu-bar{
  font-size: 3rem;
  border-radius: .5rem;
  border:.1rem solid var(--black);
  padding:.8rem 1.5rem;
  color:var(--black);
  cursor: pointer;
  display: none;
}

.home{
  margin-top: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}


.home .image{
  text-align: center;
  max-width: 800px;
  margin: auto;
}

.home .image img{
  width:80%;
  
}

.home .content{
  flex:1 1 40rem;
}

.home .content span{
  font-size: 2rem;
  color:#666;
}

.home .content h1{
  font-size: 5rem;
  color:var(--black);
}


.banner-container{
  display: flex;
  flex-wrap: wrap;
  gap:1.5rem;
}

.banner-container .banner{
  flex:1 1 40rem;
  height: 25rem;
  overflow: hidden;
  position: relative;
}

.banner-container .banner img{
  height: 100%;
  width:100%;
  object-fit: cover;
}

.banner-container .banner .content{
  position: absolute;
  top:50%; left: 4%;
  transform: translateY(-50%);
}

.banner-container .banner .content h3{
  font-size: 3rem;
  color:var(--black);
}

.banner-container .banner .content p{
  font-size: 2rem;
  color:#333;
}

.banner-container .banner:hover img{
  transform:scale(1.2) rotate(-5deg);
}


-----------------------------------box-info-----------------------------------*/


.box-info p {
    color: var(--grayishBlue);
}

.box-info { 
    display: inline-block;
    font-size: 25px; 
    width: 80%;
    border-radius: 5px;
    box-shadow: 0px 30px 40px -20px var(--grayishBlue);
    padding: 30px;
    margin: 110px 20px 20px 20px;  
}

.box-info img {
    float: right;
}

.orange {
    border-top: 3px solid var(--orange);
}

.box-info h2 {
    color: var(--varyDarkBlue);
    font-weight: var(--weight1);
} 
    .row-container {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}


-----------------------------------box-info-end-----------------------------------*/
.contact .box-container{
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 1rem;
}

.contact .box-container .box{
  border-radius: .5rem;
  text-align: center;
  padding:2rem;
  flex:1 1 25rem;
}

.contact .box-container .box h3{
  font-size: 3.5rem;
  color:var(--black);
  margin-top: 1rem;
}

.contact .box-container .box p{
  font-size: 2rem;
  color:#666;
  padding:.5rem 0;
}

.contact .box-container .box a{
  font-size: 2rem;

}


.category-product {display: flex; z-index:1;}


.category { padding: 2rem 0rem 2rem 0rem; max-width: 30%;}

.category .box-container{
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 2em auto;
    padding: 1em;
    
    border-radius: 10px;
    box-shadow: 0 0 10px 5px rgb(221 221 221);
    position: sticky;
    
    top: 8rem;
    height: 34rem;
    width: 32rem;
    overflow-y: scroll;
}

.category .box-container .box{
  text-align: center;
  flex:1 1 25rem;
}


.category .box-container .box p{
  font-size: 2rem;
  color:#666;
  padding:.5rem 0;
}

.category .box-container .box a{
  font-size: 2rem;
  border:.1rem solid rgba(0,0,0,.3);
  border-radius: 10px;

}

.category .box-container .box .btn{
  display: block;
}


.product {padding: 1rem 0rem 2rem 0rem}

.product .box-container{
    display: flex;
    flex-wrap: wrap;
    gap:1.5rem;
    /*align-items: center;*/
    justify-content: space-evenly;
}

.product .box-container .box{
    flex: 1 1 30rem;
    text-align: center;
    padding: 1rem;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 10px 5px rgb(221 221 221);
    border-radius: 10px;
    max-height: 80rem;
    max-width: 28rem;
    background: #fff;
}
/*↑↑__________________↑↑*/
  /*flex:1 1 30rem;*/
  /*text-align: center;*/
  /*padding:2rem;*/
  /*overflow: hidden;*/
  /*position: relative;*/
  /*box-shadow: 0 0 10px 5px rgba(221, 221, 221, 1);*/
  /*border-radius: 10px;*/
  /*max-height: 80rem;*/
  /*max-width: 30rem;*/
  /*background: #fff;*/

.product .box-container .box:hover{
    transform: scale(1.1); z-index:5;
}

.product .box-container .box .box__img {
    max-width: 100%;
    border-radius: 10px; 
    border: solid #d79d4042;;
    height: 25rem;
    margin: 1rem;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product .box-container .box img{
         height: auto;
        width: 100%;
        flex-shrink: 0;
}

.product .box-container .box h3{
    display: -webkit-box;
    -webkit-line-clamp: 3; /* number of lines to show */
    -webkit-box-orient: vertical;
    
    color:var(--black);
    font-size: 1.8rem;
    overflow: hidden;
    text-overflow: ellipsis;

}

.product .box-container .box a{
  border-radius: 10px;
}

.product .box-container .box a:nth-child(1){
  color:var(--black);
  font-size: 2rem;
}

.product .box-container .box > h3 > a:nth-child(1):hover{
  color:var(--orange);
  font-size: 2rem;
}

.product .box-container .box .stars i{
  padding:1rem .1rem;
  font-size: 1.7rem;
  color:gold;
}

.product .box-container .box .price{
    padding: 0.8rem 0;
}

.product .box-container .box .price h2{
     font-size: 2.8rem;
    color: #000;
}

.product .box-container .box .price span{
    font-size: 2rem;
  color:#ff0000;
  text-decoration: line-through;
}

.product .box-container .box .quantity{
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 1rem;
  padding-bottom: .5rem;
}

.product .box-container .box .quantity span{
  padding:0 .7rem;
  font-size: 1.7rem;
}

.product .box-container .box .quantity input{
  border:.1rem solid rgba(0,0,0,.3);
  font-size: 1.5rem;
  font-weight: bolder;
  color:var(--black);
  padding:.5rem;
  background:rgba(0,0,0,.05);
}

.product .box-container .box .btn{
  display: block;
  top: 100%;
}

.product .box-container .box p{
  font-size: 1.8rem;
}

/*________________________________feedback-container________________________________*/

.error-h3{
    font-size: 3rem;
    text-align: center;
}


.feedback-container {
    
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 2rem 0 2rem 0;;

}

.feedback-container__box {
    display: grid;
    justify-items: center;
    align-items: center;
    
    box-shadow: 0 0 10px 5px rgba(221, 221, 221, 1);
    border-radius: 10px;
    
    padding: 2rem;
    min-height: 20rem;
    min-width: 42rem;
    margin-top: 1rem;
}

.feedback-container__box h3{
    font-size: 2.4rem;
}

.feedback-container__box p{
    font-size: 1.8rem;
    margin-top: 1rem;
}

.feedback-container__box__input{
    border:.1rem solid rgba(0,0,0,.3);
    border-radius: 10px;
    width: 80%;
    height: 3rem;
    margin-top: 1rem;
    padding: 0rem 1rem;
    transition: all 0.5s ease 0s;
}

.feedback-container__box__input:focus{
     transform: scale(1.04);
    
    -webkit-box-shadow: 7px 7px 5px -5px rgba(34, 60, 80, 0.6);
    -moz-box-shadow: 7px 7px 5px -5px rgba(34, 60, 80, 0.6);
    box-shadow: 7px 7px 5px -5px rgba(34, 60, 80, 0.6);
    
}

    /*input[type="number"] {*/
    /*    -moz-appearance: textfield;*/
    /*}*/
    input[type="number"]::-webkit-inner-spin-button {
        display: none;
    }

.feedback-container__box__file{
    box-shadow: 0 0 10px 5px rgb(221 221 221);
    border-radius: 10px;
    height: 5rem;
    margin-top: 1rem;
    padding: 1.2rem;
    text-align-last: center;
}

.feedback-container__box .btn{
    height: 4rem;
}

.feedback-container__box-number {
        width: 40%;
}

.feedback-container__box-error {
        width: 50%;
}


/*________________________________feedback-container________________________________*/

.contact form{
  text-align: center;
  padding:2rem;
  border:.1rem solid rgba(0,0,0,.3);
}

.contact form .inputBox{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact form .inputBox input, .contact form textarea{
  padding:1rem;
  font-size: 1.7rem;
  background:#f7f7f7;
  text-transform: none;
  margin:1rem 0;
  border:.1rem solid rgba(0,0,0,.3);
  width: 49%;
}

.contact form textarea{
  height: 20rem;
  resize: none;
  width: 100%;
}

.newsletter{
  background:url(../images/newsletter-bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
  padding:5rem 2rem;
}

.newsletter h3{
  font-size: 3rem;
  color:var(--black);
}

.newsletter form{
  max-width: 55rem;
  display: flex;
  align-items: center;
  margin:1rem auto;
  padding:1.5rem;
  background:rgba(0,0,0,.1);
}

.newsletter form .box{
  width:100%;
  padding:.7rem 1.5rem;
  font-size: 1.7rem;
  color:#333;
  text-transform: none;
}

.newsletter form .btn{
  margin-top: 0;
}

.footer { background: #e8e8e8}

.footer .box-container{
  display: flex;
  gap:1.5rem;
  flex-wrap: wrap;

}

.footer .box-container .box{
  padding:1rem 0;
  flex:1 1 25rem;
}

.footer .box-container .box .share a{
  padding:0;
  height:4rem;
  width:4rem;
  line-height: 4rem;
  text-align: center;
}

.footer .box-container .box h3{
  font-size: 2.5rem;
  color:var(--black);
}

.footer .box-container .box p{
  font-size: 1.3rem;
  color:#666;
  padding:.7rem 0;
}

.footer .box-container .box .links{
  padding:1rem 0;
}

.footer .box-container .box .links a{
  display: block;
  padding:.5rem 0;
  font-size: 1.7rem;
  color:#333;
}

.footer .box-container .box .links a:hover{
  text-decoration: underline;
  color:var(--orange);
}

.footer .credit{
  padding:2.5rem 1rem;
  border-top: .1rem solid rgba(0,0,0,.1);
  margin-top: 1rem;
  text-align: center;
  font-size: 2rem;
}

.footer .credit span{
  color:var(--orange);
}

/*----------------------------------------card----------------------------------------*/

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700;800&display=swap");


.container-cont {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
      width: 100%;
}

.container-cont .container-card {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  margin: 20px 0;
}



.container-cont .container-card .card {
  position: relative;
  min-width: 254px;
  width: 29.4%;
  height: 540px;
  box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.2),
    inset -5px -5px 15px rgba(255, 255, 255, 0.1),
    5px 5px 15px rgba(0, 0, 0, 0.3), -5px -5px 15px rgba(255, 255, 255, 0.1);
  border-radius: 15px;
    margin: 8px;
  transition: 0.5s;
}

.container-cont .container-card .card:nth-child(1) .box .content a {
  background: #2196f3;
}

.container-cont .container-card .card:nth-child(2) .box .content a {
  background: #e91e63;
}



.container-cont .container-card .card .box {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: var(--orange);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: 0.5s;
}

.container-cont .container-card .card .box:hover {
  transform: translateY(-50px);
}

.container-cont .container-card .card .box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.03);
}

.container-cont .container-card .card .box .content {
  padding: 20px;
  text-align: center;
}

.container-cont .container-card .card .box .content h2 {
  position: absolute;
  top: -10px;
  right: 30px;
  font-size: 8rem;
  color: rgba(255, 255, 255, 0.1);
}

.container-cont .container-card .card .box .content h3 {
  font-size: 4rem;
  color: #fff;
  z-index: 1;
  transition: 0.5s;
  margin-bottom: 15px;
}

.container-cont .container-card .card .box .content p {
  font-size: 2rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  z-index: 1;
  transition: 0.5s;
}

.container-cont .container-card .card .box .content .content__a {
  font-size: 1.8rem;
  position: relative;
  display: inline-block;
  padding: 8px 20px;
  border-radius: 5px;
  text-decoration: none;
  color: white;
  margin-top: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: 0.5s;
  

}
.container-cont .container-card .card .box .content .content__a:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
  background: #fff;
  color: #000;
}

.content__box-img a {
      font-size: 1.8rem;
  position: relative;
  display: inline-block;
  padding: 8px 20px;
  border-radius: 5px;
  text-decoration: none;
  color: white;
  margin-top: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: 0.5s;
  
}

.content__box-img .a-img {
  padding: 4px;
    box-shadow: none;
}

.content__box-img .a-img:hover {
  border-radius: 100%;
}

.content__box-img img {
    width: 8rem;
    height: 8rem;
    flex-shrink: 0;
    display: block;
}

/*------------------------------------reviews.css------------------------------------*/

.main-reviews {
      margin:50px 0px 0px 0px;
}

#respond {
  margin-top: 40px;
    text-align: center;
}

#respond h1 {
        font-size: 2.5rem;
}

#respond label {
    align-items: center;
  justify-content: center;
}

#respond input[type='text'],
#respond input[type='email'],
#respond textarea {
    padding: 5px 5px 5px 10px;
    margin-top: 15px;
  margin-bottom: 10px;
  display: block;
  width: 80%;
  margin-right: auto;
  margin-left: auto;

    border: 1.2px solid gray;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  -khtml-border-radius: 5px;
  border-radius: 5px;

  line-height: 1.4em;
}



.rating-mini {
	display: inline-block;
	font-size: 0;
}
.rating-mini span {
	padding: 0;
	font-size: 20px;
	line-height: 1;
	color: lightgrey;
}
.rating-mini > span:before {
	content: '★';
}
.rating-mini > span.active {
	color: gold;
}

.reviews-container {
    padding-top: 6.2rem;
}

.reviews-container p {
    white-space: pre-wrap;
}

.reviews-name-block {
    font-size: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}


.reviews-container .reviews {
    display: grid;
    font-size: 1.5rem;
    border: 1px solid gray;
    margin-top: 1%;
    border-radius: 5px;
    padding: 0.5%;
    word-break: break-all;
    padding: 1.2rem;
}

.reviews-container .reviews .info {
    margin-top: 2rem;
}

/*------------------------------------reviews.css end------------------------------------*/

.align {
  display: grid;
  place-items: center;
}

/* helpers/icon.css */

.icon {
  font-size: 2rem;
}

.form__field {
  position: relative;
  margin-top: 15px;
}

.form__field .icon {
  position: absolute;
  right: 1em;
  top: 45%;
  transform: translateY(-50%)
}

.form__input {
  border-radius: 0.25em;
  border-style: solid;
  border-width: 2px;
  font-size: 1.5rem;
  padding: 0.5em 4em 0.5em 2em;
}

.form__input:valid {
  border-color: forestgreen;
}

.form__input:valid + .icon::after {
  content: 'рџ�ѓ';
}

.form__input:invalid {
  border-color: firebrick;
}

.form__input:invalid + .icon::after {
  content: 'рџ�і';
}

.form__button {
      border-radius: 0.25em;
  border-style: solid;
  border-width: 2px;
  font-size: 1.5rem;
  padding: 0.5em 4em 0.5em 2em;
}


/*--------------------------------stars.css--------------------------------*/


.container {

  display: flex;
  flex-wrap: wrap;
  /*height: 100vh;*/
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.rating {
  display: flex;
  width: 100%;
  justify-content: center;
  overflow: hidden;
  flex-direction: row-reverse;
  height: 150px;
  position: relative;
}

.rating-0 {
  filter: grayscale(100%);
}

.rating > input {
  display: none;
}

.rating > label {
  cursor: pointer;
  width: 40px;
  height: 40px;
  margin-top: auto;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23e3e3e3' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 76%;
  transition: .3s;
}

.rating > input:checked ~ label,
.rating > input:checked ~ label ~ label {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23fcd93a' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");
}


.rating > input:not(:checked) ~ label:hover,
.rating > input:not(:checked) ~ label:hover ~ label {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23d8b11e' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");
}

.emoji-wrapper {
  width: 100%;
  text-align: center;
  height: 100px;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}

.emoji-wrapper:before,
.emoji-wrapper:after{
  content: "";
  height: 15px;
  width: 100%;
  position: absolute;
  left: 0;
  z-index: 1;
}

.emoji-wrapper:before {
  top: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(255,255,255,1) 35%,rgba(255,255,255,0) 100%);
}

.emoji-wrapper:after{
  bottom: 0;
  background: linear-gradient(to top, rgba(255,255,255,1) 0%,rgba(255,255,255,1) 35%,rgba(255,255,255,0) 100%);
}

.emoji {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: .3s;
}

.emoji > svg {
  margin: 15px 0; 
  width: 70px;
  height: 70px;
  flex-shrink: 0;
}

#rating-1:checked ~ .emoji-wrapper > .emoji { transform: translateY(-100px); }
#rating-2:checked ~ .emoji-wrapper > .emoji { transform: translateY(-200px); }
#rating-3:checked ~ .emoji-wrapper > .emoji { transform: translateY(-300px); }
#rating-4:checked ~ .emoji-wrapper > .emoji { transform: translateY(-400px); }
#rating-5:checked ~ .emoji-wrapper > .emoji { transform: translateY(-500px); }

.feedback {
  max-width: 500px;
  background-color: #fff;
  width: 100%;
  padding: 30px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  box-shadow: 0 4px 30px rgba(0,0,0,.05);
}

/*--------------------------------stars.css--------------------------------*/

/*------------------------------------reviews.css------------------------------------*/



/* Aboutus.html */



.map { text-align: center; }

.aboutus { text-align: center; }

.home__content {
    text-align: left;
    padding: 3rem;
  box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.2),
    inset -5px -5px 15px rgba(255, 255, 255, 0.1),
    5px 5px 15px rgba(0, 0, 0, 0.3), -5px -5px 15px rgba(255, 255, 255, 0.1);
  border-radius: 15px;
}

.home__content h3 {
  font-size: 3.5rem;
  text-align: center;
}

.home__content p {
    font-size: 1.8rem;
    padding: 1.5rem;
    white-space: pre-wrap;
  }
  
  .home__content .podpis {
    margin-top: -5rem;
    text-align:right;
  }


.aboutus h3 {
  font-size: 3.5rem;
  text-align: right;
}

.map h3 {
  font-size: 3.5rem;
  color:var(--black);
  text-transform: uppercase;
  margin-top: 4rem;
}

.map span{
  color:var(--orange);
  text-transform: uppercase;
}

.aboutus p {
    font-size: 1.8rem;
    padding: 1.5rem;
    text-align: right;
  }

  .map iframe { width: 100%; margin-top: 3.5rem; }


/* Aboutus.html end */





/*buyproducts.html*/


.marker {
    position: sticky;
    bottom: 0;
    width: 100%;
    font-size: 3rem;
    background: var(--black__glass);
    padding: 1rem;
    border-radius: 10px 10px 0 0 ;
    z-index: 50;
    backdrop-filter: blur(4px);
    border: 1px solid var(--black);
}

.marker__flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.marker li {
    margin-top: 1rem;
        color: #fff;
}


.marker a {
    color: #fff;
}

.marker a:hover {
    color: var(--orange);
}

.container-main-buyproduct {
    width: 100%;
    display: flex;
    margin: 2rem 0rem 2rem 0rem;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;

}

.container-main-buyproduct .title {
    font-size: 3.5rem;
    /*text-align: center;*/
}

.container-main-buyproduct h1{
    font-size: 3rem;
    white-space: pre-wrap;
    text-align: center;
}

.container-main-buyproduct ul{
    font-size: 2rem;
    white-space: pre-wrap;
    margin-left: 3rem;
}

.container-main-buyproduct .sections {
    
    margin: 2rem 0rem 2rem 0rem;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    
}

.container-main-buyproduct .sections h2 {
   font-size: 3rem;
   margin-top: 2rem;
}


.container-main-buyproduct .section-1 {
    flex-direction: column;
    align-items: center;
}

.container-main-buyproduct .section-1 .container-sale{
    max-width: 100%;
}

.container-main-buyproduct .section-1 .container li{
    font-size: 2.5rem;
    font-weight:bold
}

.container-main-buyproduct .container{
    display: grid;
    align-items: stretch;
    max-width: 850px;
    margin: 2em 1rem;
    padding: 2em;
    box-shadow: 0 0 10px 5px rgba(221, 221, 221, 1);
    border-radius: 10px;
}

.container-main-buyproduct .container:hover{ 
    transform: scale(1.04);
}


.container-main-buyproduct .box{
    font-size: 3rem;
    text-align: center;
}


.container-main-buyproduct .box .links{
    font-size: 2rem;
    margin: 2rem 0rem 8rem 0rem;
    display: inline-grid;
    flex-wrap: wrap;
}




/*buyproducts.html end*/
@media(max-width:1400px){
.category {max-width: 100%;}

.product .box-container .box:hover{
    transform: scale(1.1); z-index:5;
}

.container-cont .container-card .card {
    width: 40%;
    height: 43rem;
}

}

/* media queries  */

@media(max-width:1200px){

  html{
    font-size: 55%;
  }
  
  .product {padding: 1rem 0rem 2rem 0rem}
  
  .category-product {
    flex-direction: column-reverse;
}
  
/*      .category-product {*/
/*        display: grid;*/
/*        justify-items: stretch;*/
/*    }*/

    .category .box-container .box {
        min-width:49%;
    }
    
    .category .box-container {
        width:80%;
    }
    
    
    .container-main-buyproduct .sections {
        
        margin: 2rem 0rem 2rem 0rem;
        display:flex;
        flex-direction: column;
        flex-wrap: wrap;
        align-items: center;
        
    }
   
}

@media(max-width:991px){

  .header-1,
  .header-2{
    padding:2rem;
  }

  section{
    padding:2rem;
  }
  
.container-cont .container-card .card {
    width: 55%;
}

}

@media(max-width:768px){

  #menu-bar{
    display: initial;
  }

  .header-2 .navbar{
    position: absolute;
    top:100%; left: 0; right:0;
    background:var(--black);
    padding:1rem 2rem;
    display: none;
  }

  .header-2 .navbar.active{
    display: initial;
    z-index: 5;
  }

  .header-2 .navbar a{
    font-size: 2.5rem;
    display: block;
    text-align: center;
    background:#fff;
    padding:1rem;
    margin:1.5rem 0;
  }

  .home .content{
    text-align: center;
  }

  .deal{
    background-position: left;
  }

  .deal .content{
    max-width: 100%;
    text-align: center;
  }

  .deal .content .count-down{
    justify-content: center;
  }

  .contact form .inputBox input{
    width:100%;
  }

  .newsletter h3{
    font-size: 2.2rem;
  }
  
  .container-cont .container-card .card {
    width: 75%;
}

}

@media(max-width:825px){

  html{
    font-size: 50%;
  }

  .heading{
    font-size: 3rem;
  }

  .header-1{
    flex-flow: column;
  }

  .header-1 .search-box-container{
    width:100%;
    margin-top: 2rem;
  }

  .logo{
    font-size: 4rem;
  }

  .deal .content .count-down .box h3{
    font-size: 4rem;
  }

  .deal .content .count-down .box span{
    font-size: 1.5rem;
  }
  
.container-cont .container-card .card {
    width: 65%;
    height: 60rem;
}

}

@media(max-width:465px){
    .row-container .number{
        font-size: 3rem;
    }
    
  html{
    font-size: 40%;
  }
  
  .container-main-buyproduct .sections {
    justify-content: none;
}
}



