.withdrawal-box {
    position: relative;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 28px;
    border: 1px solid #c9c9c9;
    background: #fff;
    color: #181818;
}

.withdrawal-box-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 36px;
}

.withdrawal-box-head h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
}

.withdrawal-info {
    display: inline-flex;
    align-items: center;
    outline: none;
}

.withdrawal-info-icon {
    display: inline-flex;
    cursor: pointer;
}

.withdrawal-info-tooltip {
    position: absolute;
    top: 28px;
    left: calc(100% + 18px);
    width: 228px;
    color: #181818;
    font-size: 14px;
    line-height: 1.4;
}

.withdrawal-info-tooltip::after {
    content: "";
    position: absolute;
    top: 2px;
    left: -27px;
    width: 18px;
    height: 18px;
    background: #fafafa;
    border: solid #c9c9c9;
    border-width: 0 0 1px 1px;
    transform: rotate(45deg);
}

.withdrawal-label {
    margin: 0 0 20px;
    font-size: 22px;
    line-height: 1.2;
}

.withdrawal-products {
    display: flex;
    gap: 30px;
    margin-bottom: 36px;
}

.withdrawal-product-item {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 156px;
    height: 124px;
    border: 1px solid #c9c9c9;
    border-radius: 3px;
    background: #fff;
    color: #181818;
    font-size: 13px;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
}

.withdrawal-product-item:hover,
.withdrawal-product-item.active {
    border-color: #0071bc;
    box-shadow: 0 0 0 1px #0071bc inset;
}

.withdrawal-product-icon {
    display: block;
    width: 62px;
    height: 62px;
    margin: 0 auto 13px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.withdrawal-product-item[data-product="strom"] .withdrawal-product-icon {
    background-image: url('/assets/ext/nrg/img/common/icons/cancellation/power.svg');
}

.withdrawal-product-item[data-product="gas"] .withdrawal-product-icon {
    background-image: url('/assets/ext/nrg/img/common/icons/cancellation/gas.svg');
}

.withdrawal-product-item[data-product="waermepumpe"] .withdrawal-product-icon {
    background-image: url('/assets/ext/nrg/img/common/icons/cancellation/waermepumpe-icon.svg');
}

.withdrawal-product-item[data-product="nachtspeicher"] .withdrawal-product-icon {
    background-image: url('/assets/ext/nrg/img/common/icons/cancellation/storage-icon-moon.svg');
}

.withdrawal-provider-row {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.withdrawal-provider-field {
    position: relative;
    flex: 1 1 auto;
}

.withdrawal-provider-input {
    box-sizing: border-box;
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border: 1px solid #b5b5b5;
    border-radius: 4px;
    color: #181818;
    font-size: 16px;
}

.withdrawal-provider-input:disabled {
    background: #f5f5f5;
    color: #999;
    cursor: not-allowed;
}

.withdrawal-provider-input::placeholder {
    color: #777;
}

.withdrawal-provider-dropdown {
    display: none;
    position: absolute;
    z-index: 10;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    max-height: 280px;
    overflow-y: auto;
    border: 1px solid #b5b5b5;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.withdrawal-provider-dropdown.is-visible {
    display: block;
}

.withdrawal-provider-dropdown-title {
    padding: 10px 16px 6px;
    color: #777;
    font-size: 13px;
}

.withdrawal-provider-option {
    padding: 10px 16px;
    color: #181818;
    font-size: 16px;
    cursor: pointer;
}

.withdrawal-provider-option:hover,
.withdrawal-provider-option.is-active {
    background: #f0f7fc;
}

.withdrawal-submit {
    box-sizing: border-box;
    flex: 0 0 298px;
    height: 44px;
    border: 0;
    border-radius: 4px;
    background: #c6c6c6;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: default;
}

.withdrawal-submit[disabled] {
    opacity: 1;
}

.withdrawal-submit.is-enabled {
    background: #0071bc;
    cursor: pointer;
}

.main_heading {
    color: #181818;
    margin: 0 auto;
    padding: 28px;
    padding-left: 0;
}

@media (max-width: 760px) {
    .withdrawal-products,
    .withdrawal-provider-row {
        flex-direction: column;
        align-items: stretch;
    }

    .withdrawal-product-item,
    .withdrawal-submit {
        width: 100%;
        flex-basis: auto;
    }

    .withdrawal-info-tooltip {
        position: static;
        width: auto;
        margin-top: 8px;
    }

    .withdrawal-info-tooltip::after {
        display: none;
    }
}
