h1, h2, h3 {
  font-family: 'Merriweather', serif;
}

p {
  font-family: 'Montserrat', sans-serif;
}

.user img {
  float:right;
  padding:.5em;
}

.myButton {
	background-color:transparent;
	border:1px solid #EC1C2C;
	display:inline-block;
	cursor:pointer;
        border-radius:1px;
	color:#000;
        font-family: 'Merriweather', serif;
	font-size:18px;
	padding:8px 26px;
	text-decoration:none;
}
.myButton:hover {
	background-color:#EC1C2C;
        color:white;
}
.myButton:active {
	position:relative;
	top:1px;
}

.designer-box{
  margin:auto;
  width:80%;
  padding-top:10%;
}

.modal{
  margin-top:100px;
}

.user img {
  padding: .5em;
  float: left;
}

input {
    display: none;
}

.btn{
    display:none;
}

label {
    display: block;    
    padding: 8px 22px;
    margin: 0 0 1px 0;
    cursor: pointer;
    background: #fff;
    border-radius: 3px;
    border-bottom:1px solid black;
    color: #D71920;
    transition: ease .5s;
    font-size:20px;
    position: relative; /* ADDING THIS IS REQUIRED */
}

label:hover {
    background: #f2f2f2;
}

label::after {
    content: '+';
    font-size: 22px;
    font-weight: bold;
    position: absolute;
    right: 10px;
    top: 2px;
}

input:checked + label::after {
    content: '-';
    right: 14px;
    top: 3px;
}

.content {
    background: white;
    padding: 10px 25px;
    margin: 0 0 1px 0;
    border-radius: 3px;
}

input + label + .content {
    display: none;
}

input:checked + label + .content {
    display: block;
}

@media only screen and (max-width: 768px) {
  .warranty-img {
    display: none;
  }
  .btn{
     display:block;
 
  }
}