﻿.upper-block-package {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.package-features {
    border-top: 1px solid lightgray;
    padding-top: 10px;
}


.price-block > h3 {
    margin: 0;
}
.price-label {
    font-weight: bold;
    font-size: 18px;
}
.price-block > h4 {
    font-weight: normal;
    margin: 0;
}

.price-block {
    text-align: center;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.packages-container {
    width: 100%;
    display: grid;
    column-gap: 50px;
    grid-template-columns: auto auto auto auto;
}

.a-package-small {
    min-height: 300px;
    height: 100%;
    width: auto;
    max-width: 500px;
    
    display: grid;
    grid-template-rows: 300px auto;
    border-radius: 10px;
    border: 1px solid lightgrey;
    box-shadow: 1px 5px 5px lightgray;
    margin: 2% 3% 2% 3%;
    background-image: linear-gradient(to bottom, #f2f2f2 0%, #e6f8ff 100%);
    padding: 40px 20px 40px 20px;
    row-gap: 20px;
}

.packages-container-small {
    display: flex;
    flex-direction: column;
}

.drive-feature-list-small {
    padding: 10px 0px 10px 0px;
    justify-content: center;
    column-gap: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.common-button {
    align-content: center;
}

.h2-title {
    font-size:18px;
}

@media (max-width: 950px) {
    .a-package {
        min-height: 300px !important;
        height: 100% !important;
        width: auto !important;
        max-width: 500px !important;
        
        display: grid !important;
        grid-template-rows: 300px auto !important;
        border-radius: 10px !important;
        border: 1px solid lightgrey !important;
        box-shadow: 1px 5px 5px lightgray !important;
        margin: 2% 3% 2% 3% !important;
        background-image: linear-gradient(to bottom, #f2f2f2 0%, #e6f8ff 100%) !important;
        padding: 40px 20px 40px 20px !important;
        row-gap: 20px !important;
    }

    .packages-container {
        display: flex !important;
        flex-direction: column !important;
    }

    .drive-feature-list {
        padding: 10px 0px 10px 0px !important;
        justify-content: center !important;
        column-gap: 20px !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
    }
}

@media (min-width: 950px) {
    .drive-feature-list {
        padding: 10px 0px 10px 0px !important;
        justify-content: center !important;
        column-gap: 20px !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: row !important;
    }
}

.register-drive-button {
    max-width: 350px;
}

.drive-feature-symbol {
    user-select: none;
    font-size: 40px;
}

.drive-feature-item {
    border: 1px solid lightgray;
    padding: 10px;
    display: flex;
    flex-direction: row;
    column-gap: 10px;
}

.drive-feature-description {
    font-size: 16px;
    font-weight: normal;
}

.drive-feature-list {
    padding: 10px 0px 10px 0px;
    justify-content: center;
    column-gap: 20px;
    width: 100%;
    display: flex;
    flex-direction: row;
}

.drive-feature-list-small {
    padding: 10px 0px 10px 0px;
    justify-content: center;
    column-gap: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.row {
    padding: 2% 3% 2% 3%;
    border-radius: 0px;
    background-image: linear-gradient(#f2f2f2, white);
}

.common-button-container {
    text-align: center;
}

.package-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    text-align: center;
    font-size: 22px;
    font-weight: normal;
}
h2 {
    font-size: 16px;
    font-weight: normal;
}
h3 {
    font-size: 16px;
    font-weight: normal;
}

.a-package {
    overflow-wrap: anywhere;
    min-height: 300px;
    
    display: grid;
    grid-template-rows: 300px auto;
    border-radius: 10px;
    border: 1px solid lightgrey;
    box-shadow: 1px 5px 5px lightgray;
    margin: 2% 3% 2% 3%;
    background-image: linear-gradient(to bottom, #f2f2f2 0%, #e6f8ff 100%);
    padding: 40px 20px 40px 20px;
    row-gap: 20px;
}

.section-container-product-list {
    padding: 20px 10% 20px 10%;
}
.button {
    user-select: none;
    cursor: pointer;
}
.go-to-drive-button {
    text-transform: capitalize;
    margin: 20px;
    padding: 20px;
    width: fit-content;
    border-radius: 10px;
    color: var(--primary-hover);
    border: 1px solid lightgray;
}

@keyframes go-to-drive-button-effect {
    to {
        color: #25335b;
        border: 1px solid var(--primary-color);
    }
}

.go-to-drive-button:hover {
    animation-name: go-to-drive-button-effect;
    animation-duration: 0.2s;
    animation-fill-mode: forwards;
}