/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}




html {
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

body {
  background-color: #60a9ff;
  display: flex;
  flex-direction: column;
  /* justify-content: center;
  align-items: center; */
  min-height: 100vh;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.toggle-container {
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-top: 15px;
}

.switch {
  position: relative;
  width: 50px;
  height: 25px;
}

.switch input {
  display: none;
}

.slider {
  position: absolute;
  background: #ccc;
  border-radius: 25px;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.slider::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  background: white;
  border-radius: 50%;
  top: 2.5px;
  left: 3px;
  transition: 0.3s;
}

input:checked+.slider {
  background: rgb(60, 60, 212);
}

input:checked+.slider::before {
  transform: translateX(24px);
}

.panel-container {
  background-color: white;
  border-radius: 10px;
  width: 100%;
  max-width: 950px;
  padding: 15px 25px;
  display: flex;
  flex-direction: column;
  text-align: center;
  text-transform: uppercase;
}

.pricing-plan {
  border-bottom: 1px solid #c2bdbd;
}

.pricing-plan:last-child {
  border-bottom: none;
}

.icon {
  margin-bottom: 25px;
  max-width: 100%;
}

.pricing-header {
  color: #c2bdbd;
  font-weight: 600;
  letter-spacing: 1px;
}

.pricing-features {
  color: rgb(60, 60, 212);
  font-weight: 600;
  margin: 50px 0 25px;
}

.item {
  padding: 15px 0;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 1px;
  border-top: 1px solid #c2bdbd;
}

.item:last-child {
  border-bottom: 1px solid #c2bdbd;
}

.pricing-price {
  color: rgb(60, 60, 212);
  font-size: 32px;
  font-weight: 700;
  display: block;
}

.pricing-button {
  color: rgb(60, 60, 212);
  font-size: 12px;
  border: 1px solid rgb(113, 113, 177);
  padding: 15px 35px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-block;
  margin: 25px 0;
}

.pricing-button:hover,
.pricing-button:focus {
  background-color: #c2bdbd;
  transition: all 0.3s ease;
}

.is-featured {
  background-color: rgb(60, 60, 212);
  color: white;
}

.is-featured:hover,
.is-featured:focus {
  background-color: rgb(113, 113, 177);
  transition: all 0.3s ease;
}

@media (min-width: 700px) {
  .panel-container {
    flex-direction: row;
  }

  .pricing-plan {
    border-bottom: none;
    border-right: 1px solid #c2bdbd;
    padding: 25px 50px;
  }

  .pricing-plan:last-child {
    border-right: none;
  }
}

@media (max-width: 500px) {
  .nav-links {
    display: none;
  }
}
