@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@600;800&display=swap");

html {
  width: 100%;
  height: 100%;
  font-family: "Manrope", sans-serif;
}
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
h2 {
  margin-bottom: 0;
}

/* Media Query for narrow phones like galaxy folr */
@media only screen and (max-width: 306px){
  .title h1{
    line-height: 2rem;
  }
  label{
    width: 5.5rem !important ;
  }
}

.mcontainer {
  width: 100%;
  height: 100vh;
  background-color: #fafbff;
  height: 100%;
  background-image: url(images/bg-pattern.svg);
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 50rem;
}
.title {
  padding-top: 5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-image: url(images/pattern-circles.svg);
  background-repeat: no-repeat;
  background-position: center 2rem;
}
h1 {
  font-size: 1.5rem;
  line-height: 0.3rem;
}
.container {
  background-color: hsl(0, 0%, 100%);
  max-height: fit-content;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #858fad;
  box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
}
.slider {
  width: 90%;
  -webkit-appearance: none;
  height: 0.5rem;
  background: linear-gradient(to right, #a5f3eb 0%, #a5f3eb 50%, #b3b3b3 50%, #b3b3b3 100%);
  border-radius: 50px;
}
.slider:focus {
  outline: none;
}
.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 2.3rem;
  height: 2.3rem;
  background-color: hsl(174, 86%, 45%);
  border-radius: 50%;
  background-image: url(images/icon-slider.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto;
}
.h2 {
  color: black;
}
.dollar {
  color: black;
}

/* Switch Toggle */

/* Make the checkbox hidden */
input[type="checkbox"] {
  height: 0;
  width: 0;
  visibility: hidden;
}
label {
  cursor: pointer;
  width: 4rem;
  height: 2rem;
  background-color: #cdd7ee;
  display: block;
  border-radius: 30px;
  position: relative;
}
label::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 1.9rem;
  height: 1.8rem;
  background-color: white;
  border-radius: 30px;
  transition: 0.3s;
}
input:checked + label {
  background-color: #a5f3eb;
}
input:checked + label:after {
  left: calc(100% - 2px);
  transform: translateX(-100%);
}
/* Toggle Texts */
.sToggle {
  text-align: center;
  justify-content: center;
  display: flex;
  position: relative;
  padding-bottom: 1rem;
}
.monthly {
  margin-right: 1rem;
}
.yearly {
  margin-left: 1rem;
}
.offer {
  text-align: center;
  background-color: hsl(14, 92%, 95%);
  color: hsl(15, 100%, 70%);
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
}
hr {
  border-top: 1px dashed rgba(163, 163, 163, 0.323);
}
li {
  list-style-type: none;
}
li::before {
  content: url(images/icon-check.svg);
  margin-right: 0.5rem;
}
.btn{
  background-color: hsl(227, 35%, 25%);
  color: hsl(226, 100%, 87%);
  border-radius: 30px;
  margin-bottom: 3rem;
}
.btn:hover{
  outline: none;
  color: hsl(226, 100%, 87%);
  cursor: pointer; 
}
.btn:focus{
  outline: none;
  color: hsl(226, 100%, 87%);
}

