* {
    border: 0px none;
    margin: 0px;
    padding: 0px;
}

body {
    background-color: #ffffff;
    color: #333333;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
}

div {
    box-sizing: border-box;
}

img {
    display: block;
}

svg {
    display: block;
}

a {
    display: inline-block;
}

ul {
    display: block;
}

li {
    padding-bottom: 4px;
    list-style-type: disc;
    list-style-position: inside;
}

h1 {
    color: #333333;
    font-size: 40px;
    font-weight: 600;
}

h2 {
    color: #333333;
    font-size: 24px;
    font-weight: 600;
}

span.title {
    color: #333333;
    font-size: 20px;
    font-weight: 600;
}

span.price {
    color: #999999;
    font-size: 20px;
    font-weight: 400;
}

a, a:visited {
    color: #0066CC;
    display: inline-block;
}

.card a, .card a:visited {
    color: #333333;
    text-decoration: none;
}

.card a::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
}

.subheading {
    color: #999999;
    font-size: 20px;
    font-weight: 400;
    text-wrap: balance;
}

.copyright {
    color: #999999;
    font-size: 14px;
}

.legal {
    color: #999999;
    font-size: 14px;
}

.legal  a, .legal a:visited {
    color: #999999;
}

.legal a:hover {
    color: #999999;
    text-decoration: none;
}

.layout {
    background-color: transparent;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px 0px;
}

.header {
    background-color: transparent;
    width: 100%;
    padding-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    height: 60px;
}

.logo g path {
    fill: #cccccc;
}

.main {
    background-color: transparent;
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.section {
    background-color: transparent;
    width: 100%;
    padding: 20px;
}

.section-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.content-block {
    background-color: #eeeeee;
    border-radius: 10px;
    width: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.content-block a:hover {
    text-decoration: none;
}

.card-shelf {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.card {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1;
    position: relative;
}

.card-image img {
    border-radius: 10px;
    width: 100%;
    height: auto;
}

.card-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.panel-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.panel {
    background-color: #eeeeee;
    border-radius: 10px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.panel-control {
    background-color: transparent;
    cursor: pointer;
    padding: 10px 20px;
    width: 100%;
    transition: 0.4s;
    text-align: left;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    color: #333333;
    font-size: 16px;
    font-weight: 500;
}

.panel-control:after {
    content: "\002B";
    color: #999999;
    font-size: 32px;
    font-weight: 200;
}

.active:after {
    content: "\2212";
    color: #999999;
    font-size: 32px;
    font-weight: 200;
}

.panel-show {
    background-color: transparent;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.panel-content {
    background-color: transparent;
    padding: 0px 20px 20px 20px;
    width: 100%;
    color: #666666;
}

.footer {
    background-color: #eeeeee;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-container {
    padding: 40px 20px;
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-logo {
    width: 100%;
}

.footer-content {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}


@media only screen and (max-width: 1023px) {

    .card-shelf {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        align-items: start;
        justify-content: start;
    }

}