* {
    padding: 0;
    margin: 0;
}

html {
    height: 100vh;
    width: 1440px;
    background-color: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
}

body {
    /* padding: 50px 165px; */
    box-sizing: border-box;

    height: fit-content;
    width: 1110px;
}

header {
    margin-top: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1110px;
    /* padding-bottom: ; */
    border-bottom: 2px solid grey;
}

.EC__header_nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.EC__header_nav_logo {
    font-size: 20px;
}

.EC__header_nav_part {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 70%;
}

.EC__header_nav_ul {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 400px;
    margin-left: 15px;
}

.EC__header_nav_ul li {
    text-transform: capitalize;
    color: grey;
    list-style: none;
}

/* header__profile__part */
.EC__header_basket_profile_part {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 15%;
}

.user__info {
    display: none;
}

.profile__icon {
    width: 50px;
    height: 50px;
}

/* site main */

.site__main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 1050px;
    margin-top: 50px;
}

.pictures__part {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    width: 50%;
}

.clicked__button {
    width: 100%;
}

.list__of_images {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    margin-top: 20px;
}

.cards {
    width: 88px;
    height: 88px;
}

.info__part {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    width: 40%;
    height: 100%;
    padding-top: 40px;
}

.name__of_company {
    color: #FF7E1B;
    font-weight: bold;
    font-size: 13px;
    letter-spacing: 1.5px;
}

.type__of_sneakers {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 44px;
    padding-bottom: 45px;
}

.info__part_details {
    font-size: 16px;
    line-height: 1.5;
    padding-bottom: 35px;
}

.price__discount_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 40%;
}

.price {
    font-weight: bold;
    font-size: 28px;

}

.discount {
    font-weight: 16;
    color: #FF7E1B;
    padding: 2px;
    background-color: #FFEEE2;
    border-radius: 2px;
}

.real__price_strikethrough {
    /* background-color: rgb(189, 183, 183); */
    text-decoration: line-through rgb(122, 121, 121);
}

.card__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 50px;
}

.counter__container {

    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    background-color: #979797;
    border-radius: 5px;
}

.calculator {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px 20px;
    font-size: 25px;
    color: #FF7E1B;
    border: none;
    height: 56px;
    background-color:#979797;
    border-radius: 15px;
    
}
.number__indicator{
    padding: 2px 10px;
    
}
.add__to_card_container{
    width: 272px;
    height: 56px;
    background-color: #FF7E1B;
    border: 0;
    border-radius: 5px;
    
}
.card__icon{
    margin-right: 5px;
}



@keyframes clicked {
    from{
        background-color: none;
        border: none;
        opacity: 0.6;
        /* transform: scale(1.5) */
    }
    to{

        opacity: 1;
        border: 3px solid orange;
    }
}
.clicked{
    border: 2px solid orange;
    border-radius: 15px;
    /* opacity: 0.5; */
    transform: rotate(right,360);
    animation-name:clicked;
    animation-duration: 5s;
}
.undisplayed{
    display: none !important;
}

.main__clicked{
position: absolute;
top: 50%;
left:50%;
transform: translate(-50%,-50%);
background-color: grey;
padding: 150px 300px;

}

/* .styled__body{
 opacity: 0.9;


} */