
#main-section{
    z-index: 1;

}

.notification{
    position: fixed;
    bottom: 10px;
    left:10px;
    right:10px;
    padding: 20px;
    background-color: var(--accent-color);
    border-radius: 10px;
    z-index: 1000;
    font-weight: bold;
}

.selection-title{
    text-align: center;
    margin-bottom: 70px;
}

.card-selection-row{
    display: flex;
    justify-content: space-around;
}

.card-selection-row > a{
    all: unset;
}

.card-container{
    width: 300px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.30s ease-in-out;
    color: var(--primary-color);
    height: 100%;
}

.card-container:hover{
    transform: scale(1.05);
}


.card-title{
    display: flex;
    padding: 10px;
    align-items: center;
    font-family: var(--alt-font-family);
    font-weight: 300;
    font-size: 25px;
    justify-content: center;
}

.card-title img{
    height: 20px;
    margin-right: 10px;
}

.card-preview{
    width: 100%;
}

.card-preview img{
    width: 100%;
    height: auto;
}


.card-caratteristica{
    font-size: var(--base-font-size);
    font-weight: 600;
    margin-bottom: 0;
}

.card-containerc ul{
    padding: 0;
}

.card-dettagli li{
    list-style-type:circle !important;

    margin-bottom: 5px;
}


.card-prezzo{
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: 50px;
    font-weight: bold;
}

.background-absolute-panel{
    position: absolute;
    top: 380px;
    bottom: 0px;
    width: 100%;
    background-color: var(--secondary-color);
    z-index: -1;
    left: 0;
}

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

    .section-fluid{
        padding: 0;
    }

    .card-title{
        justify-content: flex-start;
    }

    .card-selection-row{
        flex-direction: column;
    }
        
    .card-selection-row > a{
      display: flex;
      justify-content:center;
        }

    .card-container{
        margin-bottom: 25px;
        padding-bottom: 25px;
        border-bottom: 1px solid var(--primary-color);
    }

    .card-container:last-child{
        border-bottom: 0;
    }

    .background-absolute-panel{
        top: 300px;
    }

    .card-dettagli{
        margin-left: 0;
        padding: 0;
    }

  }
    
        

@media only screen and (min-width: 1441px){
    .main{
            height: 100%;
        }
}

