.packet {
    width: 30%;
    height: 30%; /* todo: grid */
    color: #E3E3E3;
    background-color: #3f403e;
    display: flex;
    flex-flow: column;
    min-width: 300px;
    box-shadow: 0 10px 6px -6px #777;
    border-radius: 0 0 20px 0; /*0 20px 20px 20px;*/
    overflow: hidden;
}

.packet .description {
    padding: 1.5rem 1.5rem 2rem 1.5rem;
    text-align: justify;
    background: #3f403e;
    border-radius: 0 20px 20px 20px;
}

.packet .description > div:first-child {
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.packet > div > img {
    width: 120%;
    height: 100%;
    /*filter: hue-rotate(270deg);*/
    object-fit: contain;
    border-top-right-radius: 20px;
}

.packet .booking {
    text-align: right;
    margin-top: 2rem;
}
.packet .booking input {
    background-color: #36A9AE;
    background-image: linear-gradient(#37ADB2, #329CA0);
    border: 1px solid #2A8387;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.12) 0 1px 1px;
    color: #FFFFFF;
    cursor: pointer;
    font-family: -apple-system,".SFNSDisplay-Regular","Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 17px;
    line-height: 100%;
    margin: 0;
    outline: 0;
    padding: 11px 15px 12px;
    text-align: center;
    transition: box-shadow .05s ease-in-out,opacity .05s ease-in-out;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    transition: all 0.5s ease;
}
.packet .booking input:hover {
    color: #000;
    background: white;
    transition: all 0.5s ease;
}
