#prices .container {
    gap: 1em;
}

#prices .price-list {
    display: flex;
    flex-direction: column;
}
#prices .price-list a {
    display: grid;
    grid-template-columns: 4fr 1fr;

    padding: 1em;
    border-bottom: 1px dashed #d9d9d9;
}
#prices .price-list a p {
    color: #000;
    font-size: 16px;
    font-weight: 400;
}
#prices .price-list a:first-child {
    color: #fff;
    background: rgba(73, 132, 96, 1);
    border-radius: var(--border-radius);
}
#prices .price-list a:first-child p {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
}

#prices .price-list a:hover p {
    cursor: pointer;
}
#prices .price-list a:first-child:hover p {
    cursor: default;
}

@media (min-width: 1441px) {
}
@media (max-width: 1024px) {
}
@media (max-width: 800px) {
}
@media (max-width: 600px) {
}
@media (max-width: 450px) {
}
@media (max-width: 380px) {
}