* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
body {
    color: rgb(46, 44, 44);
}
button,input{
    font-family: inherit;
}
button:focus,input:focus{
    outline: none;
}
.container {
  width: 100%;
  height: 100vh;
  background-color: grey;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 2rem;
font-family: 'Times New Roman', Times, serif;
}
.input-wrapper{
    margin-bottom: 4rem;
    display: flex;
}
.input-wrapper div{
    margin-right: 1rem;
}
.wrapper {
  max-width: 450px;
  padding: 2rem;
  background-color: white;
}
.size {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: block;
}
.buttons-container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    grid-gap: 10px 10px;
    width: 100%;

}
.size-btn {
  border: 2px solid rgb(169, 169, 169);
  padding: 10px 15px;
  font-weight: 500;
  background-color: transparent;
}
.size-btn.selected{
    border:2px solid black ;
}
.size-btn:hover{
    cursor: pointer;
}
.cart-btn{
    margin-top: 2rem;
    width: 100%;
    padding: 0.8rem 0 ;
    background-color: #CFD9C7;
    border: 1px solid #979797;
    font-size: 0.9rem;
    letter-spacing: 2px;
    font-weight: 600;
}
.cart-btn:hover{
    cursor: pointer;
}
.klarna{
    font-size: 0.85rem;
    margin-top: 0.5rem;
    text-align: center;
    color: #434343;
}
.klarna b{
    color: black;
}
.klarna a{
    color: black;
}
.email-wrapper{
    max-height: 0px;
    transition: max-height 400ms;
    margin-top: 2rem;
    overflow-y: hidden;
}
.email-box{
    border: 1px solid #CFD9C7;
    border-radius: 2px;
    padding: 1rem 1rem 1rem;
    
}
.email-wrapper.show{
    max-height: 500px;

}

h2{
font-weight: 500;
font-size: 1.45rem;
margin-bottom: 5px;
}
h5{
    font-weight: 500;
    margin-bottom: 5px;
}
.email-wrapper input{
    width: 100%;
    padding: 11px 10px;
    border: 1px solid #CFD9C7;
    margin-bottom: 7px;
}
.subscribe-btn{
    width: 100%;
    padding: 12px;
    border-radius: 0px;
    border: none;
    background-color: black;
    color: white;
    margin-bottom: 4px;
    text-transform: uppercase;
    font-size: 0.95rem;
}
.info{
    font-size: 0.74rem;
    margin-left: 2px;
}


