.manufacturers{
    width: 681px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;

    padding: 30px 0;
    max-width: 100vw;
}
.manufacturer{
    position: relative;
    align-items: center;
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding: 20px;


    border-radius: 20px;
    box-shadow: 0px 0.5px 5px 2px rgba(0, 0, 0, 0.1);
    cursor: pointer;

    transition: 0.3s;
}
.manufacturer > *{
    flex: 0 0 auto;
}
.manufacturer .infos{
    height: 100%;
    width: 500px
}
.manufacturer .infos > *{
    margin-bottom: 5px;
}
.manufacturer h1{
    font-size: 25px;
    font-weight: 700;

    display: flex;
    flex-direction: row;
    align-items: center;

}
.manufacturer p{
    font-size: 18px;
    font-weight: 500;
}
.manufacturer .pfp{
    height: 130px !important;
    width: 130px !important;
    display: flex;
    justify-content: center;
    align-items: center;
}
.manufacturer .pfp img{
    width: 100%;
    height: 100%;
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
}
.manufacturer button{
  position: absolute;
  color: white;
  background-color: #000000;
  font-size: 17px;
  font-weight: 550;
  bottom: 20px;
  right: 20px;
  padding: 2px 10px;
  border-radius: 30px;
  transition: 0.3s;

  border: none;

}

.verified_svg{
  width: 20px;
  height: 25px;
  color: var(--primary);
  fill: var(--primary);



  margin: 0 0 0 10px !important;
}


.manufacturer:hover, .manufacturer button:hover{
    transform: scale(1.03);
}
@media (max-width: 700px) {
    .manufacturer{
        
    }
        .manufacturer button{
        width: auto !important;
        font-size: 2.5vw;
        padding: 0.5vw 2vw !important;
        bottom: 2vw;
        right: 5vw;
    }

    .manufacturers{
        width: 100vw;
        gap: 3vw;
        padding: 5vw 5vw;
        max-width: 100vw;
    }
    .manufacturer{
        gap: 4vw;
        padding: 3vw;
        border-radius: 3vw;
    }
    .manufacturer .infos{
        width: 80vw
    }
    .manufacturer .infos > *{
        margin-bottom: 1vw;
    }
    .manufacturer h1{
        font-size: 3.8vw;
        font-weight: 700;

    }
    .manufacturer p{
        font-size: 2.2vw;
    }
    .manufacturer .pfp{
        height: 18vw !important;
        width: 18vw !important;
    }
    .manufacturer .pfp img{
        border-radius: 3vw;
    }
    .manufacturer button{
        font-size: 2.5vw;
        bottom: 1vw;
        right: 2vw;
        padding: 2vw 2vw;
        border-radius: 3vw;
    }

    .verified_svg{
        width: 3vw;
        height: 3.8vw;
    
        margin: 0 0 0 1vw !important;
    }
}

.error{
    color: red
}

.designers{
        display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 1000px;
    gap: 33px
}
.designers .manufacturer{
    flex-direction: column;
    width: 300px;
    justify-content: space-between;
}
.designers .manufacturer .stars{
    font-size: 35.2px;
    color: gold;
    width: 100%;
    font-weight: 900;
    display: flex;
    justify-content: center;
}
.designers .manufacturer .infos{
    width: 100%;
    height: auto;
    position: relative;

}
.designers .manufacturer .infos::before{
    position: absolute;
    content: "";
    width: 100%;
    border-top: 1px solid rgba(0,0,0,0.15);
    top: -15px;
    left: 0;
}

.designers .manufacturer button{
    width: 100%;
    background-color: var(--primary);
    margin-left: 15%;
    height: 40px;
    font-size: 15px;
    border-radius: 10px;
    margin-top: 20px !important;
    position: relative;
    bottom: 0
}
.designers .manufacturer button:hover, .designers .manufacturer:hover{
    transform: none;
}
.designers .manufacturer h1{
    font-size: 28px;
    font-weight: 700 !important;
}
.designers .pfp{
    align-self: start;

    margin-left: 10%;
    width: 80px !important;
    height: 80px !important;
}
.designers .pfp img{
    border-radius: 100px !important;

}

@media (max-width: 700px) {
    
    .designers{
        width: 100%;
        gap: 5%;
        flex-direction: column;
        align-items: center;
    }
    .designers .manufacturer{
        width: 85vw;
        margin-bottom: 4vw;
        padding: 7.5vw;
        border-radius: 7vw;
    }
    .designers .manufacturer h1 .verified_svg{
        width: 5vw !important;
        height: 8vw !important;
    }
    .designers .manufacturer .stars{
        font-size: 8vw;
    }
    .designers .manufacturer button{
        height: 10vw;
        font-size: 5vw;
        border-radius: 4vw;
        margin: 3vw 0 0 4vw !important;
        width: 100% !important;
    }

    .designers .manufacturer h1{
        font-size: 8vw;
    }
    .designers .manufacturer .infos *{
        font-size: 5vw !important;
    }
    .designers .manufacturer .infos::before{
        top: -3vw 
    }
    .designers .pfp{
        width: 25vw !important;
        height: 25vw !important;
    }
    .designers .pfp img{
        border-radius: 40vw !important;

    }

}