h3 {
    font-size: 24px !important;
}

.header-sub-title {
    margin-bottom: 58px;
}

.addNewMeterPoint img,
.deleteBtn img {
    width: 3rem;
    height: 3rem;
    border: 2px solid #BBC3C9;
    border-radius: 50%;
    padding: 10px;
}

.addNewDeliveryAddress img {
    width: 3rem;
    height: 3rem;
    border: 2px solid #BBC3C9;
    border-radius: 50%;
    padding: 15px;
}

.delivery-name {
    flex: 1.4;
}

.delivery-type {
    flex: 1.2;
}

.delivery-kwh {
    flex: .7;
}

.delivery-peak {
    flex: .7;
}

.space {
    flex: .2;
}

.upload-btn {
    background: #BBC3C9;
    padding: 8px 20px;
    border-radius: 10px 0 0 10px;
    font-size: 16px;
    cursor: pointer;
}

.upload-btn-wrapper {
    position: relative;
}

.upload-btn-wrapper input[type=file] {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    cursor: pointer;

}

.uploaded-files {
    background: #BBC3C966;
    padding: 8px 20px;
    border-radius: 0 10px 10px 0;
}

.conditions a {
    text-decoration: underline;
}

.checkbox-wrapper {
    position: relative;
    width: 1.5rem;
    height: 1.5rem;
    border: 1px solid #BBC3C9;
    border-radius: 5px;
    margin-top: 4px;
}

.checkbox {
    opacity: 0;
    height: 0;
    width: 0;
}

.checkbox:checked+.checkbox-wrapper::before {
    position: absolute;
    content: url('/img/register/icons/check-regular.svg');
    width: 100%;
    height: 100%;
    padding: 4px;
    top: 0;
    left: 0;
    line-height: 1;
    background: white;
    border-radius: 5px;
}

.term-text {
    width: fit-content;
}

.meterpoint-contract {
    gap: 100px;
}

.meterpoint-contract p {
    text-align: left;
}

.mb-9 {
    margin-bottom: 40px;
}

.border-2 {
    border-width: 3px;
}

@media (max-width: 768px) {

    .delivery-name,
    .delivery-type,
    .delivery-kwh,
    .delivery-peak {
        flex: 1;
        width: 100%;
    }

    .uploaded-files,
    .upload-btn {
        padding: 10px;
    }

    .meterpoint-contract {
        gap: 50px;
    }

}

@media (max-width: 340px) {

    .term-text {
        font-size: 15px;
    }
}