@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;700&display=swap");
/*
* {
  box-sizing: border-box;
}
*/





.wrapper_xx html  {
  font-size: calc(100vw / 1600 * 100);
}

@media (max-width: 768px) {
  .wrapper_xx html {
   font-size: calc(100vw / 768 * 100);
  }
}

@media (max-width: 1024px) {
  .wrapper_xx html {
    /*  font-size: calc(100vw / 1024 * 100);*/
  }
}

@media (max-width: 1200px) {
  .wrapper_xx html {
    /*  font-size: calc(100vw / 1200 * 100);*/
  }
}







/*
body {
  min-height: 100vh;
  font-size: 0.2rem;
  background-color: #bdd6d3;
}
*/

/* -----------------SORTED STARTS-----------------------*/

.main-title {
  margin-bottom: 0.5rem;
  text-align: center;
  font-family: "Abril Fatface", cursive;
  font-size: 0.32rem;
  color: #2e8074;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-title:before, .main-title:after {
  content: "";
  display: block;
  margin: 0 0.2rem;
  flex: 1;
  border-bottom: 1px solid #2e8074;
}

/* -----------------SORTED ENDS-----------------------*/
.wrapper_main {
  /*
   min-height: 100vh;
   width: auto;
*/


   width: auto;
   margin:1.0rem;
   padding: 1.0rem;
   font-family: "Source Sans Pro", sans-serif;


  /* width: 7rem;*/
 }

.wrapper_xx {
 /* width: 7rem;*/
  max-width:40rem;
  width: auto;
  margin:1.0rem;
  padding: 1.0rem;
  font-family: "Source Sans Pro", sans-serif;
  /*
  text-align: center;
  justify-content: center;
  align-items: center;
  */
}


.center_xx {
  margin: auto;
  width: 100%;
  /*border: 3px solid #73AD21;*/
  padding: 10px;
}

.center_xx_inner {
  margin: auto;
  width: 100%;
  /*border: 3px solid #73AD21;*/
  padding: 10px;
}
/*
@media (max-width: 768px) {
  .wrapper_xx {
    width: 600px;
    padding: 0 0.3rem;
  }
  
}
*/

input[type=radio] {
  display: none;
}
input[type=radio]:checked + .item .title {
  color: #fff;
  border-color: #2e8074;
  background-color: #2e8074;

}
input[type=radio]:checked + .item .title:after {
  transform: rotate(180deg);
}
input[type=radio]:checked + .item .content_xx {
  margin-top: 0.3rem;
  margin-bottom: 0.3rem;
  height: auto;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s, opacity 0.7s;
}

.item {
  display: block;
  margin-bottom: 0.1rem;
}



.title {
  padding: 0.1rem 0.3rem;
  border-radius: 0.3rem;
  color: #2e8074;
  border: 1px solid;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.title:after {
  content: "▼";
  display: inline-block;
  font-size: 12px;
}

.content_xx {
  width: 95%;
  margin: 0 auto;
  padding: 0 0.3rem;
  line-height: 1.6;
 /* color: #2e8074;*/
  color: #80742e;
  border: 1px solid;
  border-width: 0 1px;
  height: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  /*display:none;*/
  
}



/*

<!DOCTYPE html>
<html>
<head>
<style>
x::before {
  content: "Read this -";
}
</style>
</head>
<body>

<p>My name is Donald</p>
<p><x>I live in Ducksburg</x></p>


</body>
</html>
*/