.dgb-vehicle-options {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1rem;
    align-items: center;
    min-height: 200px;
    background: #f1f1f2;
    border: 1px solid #eaeaea;
    border-radius: .6rem;
    padding: 1rem;
}

@media (max-width: 767.98px) {
    .dgb-vehicle-options {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        font-size:.85rem;
    }
}

.dgb-vehicle-option {
    cursor: pointer;
}

.dgb-vehicle-option input[type="radio"] {
    display: none;
}

.dgb-rental-block, 
.dgb-vehicle-type{
	padding:1rem 0;
}

.dgb-vehicle-box {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    align-items: center;
    text-align:center;
}

.dgb-vehicle-box img{
	width:48px;
	height:48px;
}

@media (max-width: 767.98px) {
    .dgb-vehicle-box {
        padding:1rem;
    }
}

.dgb-vehicle-option input[type="radio"]:checked + .dgb-vehicle-box {
    border: 2px solid var(--dgb-primary);
    border-radius: .25rem;
}

.dgb-rental-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.dgb-rental-option {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: #f5f5f5;
    padding: 0.9rem 1rem;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease;
}

@media (max-width: 767.98px) {
    .dgb-rental-option {
        font-size:.85rem;
        padding:.65rem;
    }
}

.custom-date-wrapper {
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.dgb-display-reset {
    display: flex;
    width: 100%;
    gap: 1rem;
    margin: 1rem 0;
}

.dgb-block-label {
    font-size: clamp(1rem, 0.9rem + 0.4vw, 1.25rem);
    line-height: 1.25;
    font-weight:600;
    margin-bottom:.75rem;
}

/* BILONLINE STANDARD FORM SETTINGS */

.dgb-rental-contact{
	display: flex;
    flex-wrap: wrap;
    gap:1rem;
    padding:1rem 0;
}

.bo-form-group.full {
    flex: 0 0 100%;
}

.bo-form-group.half {
    flex: 0 0 calc((100% - 1rem) / 2);
}

.form-check a{
	color:var(--dgb-primary);
	text-decoration:none;
}

@media (max-width: 767.98px) {
    .bo-form-group.half {
        flex: 0 0 100%;
    }
}
