.page {
    padding: 0;
    margin: 0;
}

.header {
    height: 8vh;
    background-image: url("../img/zebrano.jpg");
    padding: 4px;

}

.title {
    font-family: 'Poiret One', sans-serif;
    color: black;
    text-decoration: none;
    font-weight: bolder;
    text-align: center;

}



.button {
    background-color: rgb(0, 0, 0);
    color: white;
    box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.8);
    font-size: 12px;
    padding: 8px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    width: 140px;
    font-weight: bolder;
    margin: 0 auto;
    font-family: 'Poiret One', sans-serif;

}

.container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}


.header__logo-img {
    height: 7vh;
}

.header__menu {
}

.header__menu-link {
    margin-right: 50px;
    text-decoration: none;
    cursor: pointer;
    font-weight: bolder;
    font-size: 16px;

}

.header__menu-link:hover {
color: rgba(0, 0, 0, 0.74);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.62);
}

.header__basket {

}

.header__basket-icon{
    height: 5vh;
}

.header__basket-icon:hover{
    transform: scale(1.02, 1.02);
    transition: 500ms;
}



.catalogue__title {
    font-size: 2rem;
    margin: 20px auto;
}

.catalogue__container {
    flex-direction: column;
}

.catalogue__cards {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;


}

.catalogue__card-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 5px;
    padding-bottom: 5px;
    max-width: 30%;
    min-width: min-content;
    text-align: center;
    background-color: rgb(255, 255, 255);
    backdrop-filter: blur(5px);
    border-radius: 3px;
    box-shadow: 0 0 3px 1px rgba(165, 173, 173, 0.81);
    transition: 1500ms;
    overflow: hidden;

}

.catalogue__card-img {

    width: 100%;
    margin-bottom: 15px;
    transition: 1500ms;
}

.catalogue__card-img:hover{
    transition: 1000ms;
    transform: scale(1.02, 1.02);

}


.catalogue__card-description {
    font-family: 'Poiret One', sans-serif;
    margin: 20px;
    font-size: 13px;

}

.basket-modal {
    display: none;


}


.basket-modal__background {
    background-color: rgba(255, 255, 255, 0.09);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.basket-modal__container {
    position: fixed;
    top: 10%;
    bottom: 10%;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 50%;
    backdrop-filter: blur(50px);
    border-radius: 6px;
    background-color: rgba(240, 245, 245, 0.86);
    box-shadow: 0 0 100px 30px rgba(0, 0, 0, 0.49);
    overflow: scroll;

}

.basket-modal__container::-webkit-scrollbar{
    width: 0;
    height: 0;
}


.basket-modal__header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr 1fr 0.1fr;
    grid-template-rows: 30px 0;
    align-items: center;
    padding: 5px;
    font-size: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.51);
    text-align: center;
    font-family: 'Poiret One', sans-serif;
    font-weight: bold;
    background-color: rgba(240, 245, 245, 0.86);
    box-shadow: 0 0 7px 1px rgba(21, 29, 35, 0.43);


}

.basket-modal__close-button{
    position: absolute;
    top: -15px;
    right: 16px;
    font-family: 'Poiret One', sans-serif;
    font-weight: bolder;
    font-size: 20px;
    color: rgba(165, 173, 173, 0.81);
    cursor: pointer;
}

.basket-modal__close-button:hover{
    transform: scale(1.1, 1.1);
    transition: 500ms;
}



.basket-modal__title {

}

.basket-modal__item {
    text-align: center;


}

.basket-modal__item-body {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr 1fr 0.1fr;
    /*grid-template-rows: 100px;*/
    align-items: center;
    padding: 5px;
    font-size: 12px;

}

.basket-modal__item-link {


}

.basket-modal__item-photo {

}

.basket-modal__item-img {
    max-width: 90px;
    border-radius: 3px;

}
.basket-modal__item-name{
    margin: 5px;
}

.basket-modal__item-title {
}


.basket-modal__item-counter {

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: stretch;
    margin: 5px;
}


.basket-modal__item-plus {


}

.basket-modal__item-input {
    width: 20px;
    border-radius: 3px;
    border: none;
    text-align: center;
    font-family: 'Poiret One', sans-serif;
    font-weight: bolder;
    font-size: 10px;


}

.basket-modal__item-minus {

}

.basket-modal__item-sum {
    font-size: 12px;

}

.basket-modal__item-del{
    font-family: 'Poiret One', sans-serif;
    font-weight: bolder;
    font-size: 12px;
    color: rgba(165, 173, 173, 0.81);
    cursor: pointer;
    margin-right: 7px;

}


.basket-modal__empty {
    display: block;
    margin: 20px;
    font-family: 'Poiret One', sans-serif;
    font-weight: bolder;
    font-size: 14px;
    color: rgba(21, 29, 35, 0.76);

}


.basket-modal__footer {
    position: fixed;
    bottom: 10%;
    left: 0;
    right: 0;
    max-width: 50%;
    margin: 0 auto;
    padding: 10px;
    font-size: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.51);
    text-align: center;
    font-family: 'Poiret One', sans-serif;
    font-weight: bold;
    background-color: rgb(240, 245, 245);
    box-shadow: 0 0 7px 1px rgba(21, 29, 35, 0.43);
    border-radius: 6px;
}

.basket-modal__total-sum{
    color: black;
    bottom: 10px;
    left: 50px;
    margin: 5px;
    font-family: 'Poiret One', sans-serif;
    font-weight: bolder;
    font-size: 16px;
}


.basket-modal__button {
margin: 5px;
}

.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    max-height: 300px;
    background-image: url("../img/zebrano.jpg");
    backdrop-filter: blur(15px);
    font-family: 'Poiret One', sans-serif;
    font-weight: bolder;
    color: black;
}

.footer__contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 15px;
    font-weight: bolder;
 margin-bottom: 5px;


}

.footer__logo-block {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 10px;
    margin-top: 5px;

}

.footer__logo{
    height: 20px;
    margin: 3px;
}

.footer__tel {
    text-decoration: none;
    color: black;
}

.footer__email {
    text-decoration: none;
    color: black;
}

.footer__email-wrap{


}

.footer__tel-wrap{

}

.footer__icon{
  width: 10px;
}

.footer__map{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: rgba(203, 199, 197, 0.64) 6px solid;
    border-radius: 5px;
    margin: 15px;
}

.footer__work-shedule{
    font-size: 14px;
    color: rgba(12, 12, 12, 0.71);
}