@font-face {
  font-family: "WorkSans-Regualar";
  src: url("./assets/fonts/static/WorkSans-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "WorkSans-Bold";
  src: url("./assets/fonts/static/WorkSans-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "WorkSans-Regualar";
  background: hsl(275, 100%, 97%);
}
.container {
  width: 100%;
  max-width: 100%;
  height: 100vh;
  background-image: url("./assets/images/background-pattern-desktop.svg");
  background-repeat: no-repeat;
  display: flex;
  font-size: 13px;
  align-items: center;
  justify-content: center;
}
.accordion {
  width: 400px;
  min-height: 300px;
  border-radius: 20px;
  padding: 40px;
  background-color: #fff;
  color: hsl(292, 42%, 14%);
  box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.2);
}
.accordion img {
  margin-right: 10px;
  width: 30px;
}
.accordion-item {
  position: relative;
  border-bottom: 1px solid #d3d3d3;
  padding-bottom: 20px;
  margin-bottom: 25px;
}
.accordion-content {
  margin-top: 20px;
  display: none;
}

.accordion-content p {
  line-height: 1.5;
}
h1 {
  margin-bottom: 25px;
  font-family: "WorkSans-Bold";
  font-size: 45px;
  /* font-weight: bold; */
  position: relative;
  display: inline-block;
}

label {
  display: block;
  width: 300px;
  font-weight: bold;
  position: relative;
}
label:hover {
  cursor: pointer;
  font-weight: bold;
  color: #ad28eb;
}
.image {
  opacity: 1;
  position: absolute;
  right: 0;
  top: 10px;
}
.image1 {
  opacity: 0;
  position: absolute;
  right: 0;
  top: 10px;
}
input[type="radio"] {
  appearance: none;
}
input[type="radio"]:hover {
  cursor: pointer;
}
/* input[type="radio"]::after{
    content: "";
    background-image: url("./assets/images/icon-plus.svg");
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0;
    top: -5px;
} */

::selection {
  background: yellow;
}
input[type="radio"]:checked + label + .image + .image1 + .accordion-content {
  display: block;
}
input[type="radio"]:checked + label + .image {
  opacity: 0;
}
input[type="radio"]:checked + label + .image + .image1 {
  opacity: 1;
}
@media (max-width: 375px) {
  .accordion {
    width: 300px;
    padding: 20px;
  }
  .accordion-item {
    width: 280px;
    padding: 10px;
  }
  label {
    width: 200px;
  }
  .image {
    opacity: 1;
    position: absolute;
    right: 0;
    top: 22px;
  }
  .image1 {
    opacity: 0;
    position: absolute;
    right: 0;
    top: 20px;
  }
}
