.calculator {
    margin-top: -20px;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #fff1de;
}

.menu__list-item-calc {
    background: radial-gradient(circle, #fe6776, #c44451);
    -webkit-background-clip: text;
    color: transparent;
    font-weight: 800;
}

.calculator__inner {
    max-width: 1200px;
    margin: 10px auto;
    padding: 20px;
    border: 1px solid #5d5d5d;
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.calculator__title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.calculator__title {
    text-align: center;
    flex-grow: 1;
    font-size: 28px;
    margin-bottom: 4px;
    line-height: 1.2;
    color: #242424;
}

.calculator__icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.calculator__block {
    flex: 1 1 45%;
    box-sizing: border-box;
}

.calculator__block--map {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.calculator__block--form {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.calculator__subtitle {
    font-size: 18px;
    padding: 2px;
}

#map {
    width: 100%;
    height: 660px;
    margin-bottom: 50px;
}
#discount-message {
    font-weight: 700;
    color: #141414;
    padding: 6px;
    background-color: #eed0a9;
    border-radius: 4px;
    border: 1px solid #888;
}
.result__text--discount {
    font-weight: 700;
}

.result__text-sum--discount {
   display: block;
   width: 180px;
   text-align: center;
}

.form-group {
    text-align: center;
    margin-top: 10px;
}

.form-label-locate {
    text-align: left;
    font-size: 20px;
    font-weight: 500;
}

#locate-btn:hover {
    background-color: #313131;
}

label {
    display: block;
    margin-bottom: 5px;
}

.button-calc {
    width: 100%;
    height: 60px;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: radial-gradient(circle, #31a4b6, #1a7d8c);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    transition: background 0.3s ease, color 0.3s ease;
}

.button-calc:hover {
    background: radial-gradient(circle, #31a4b6, #2997a8);
}

.button-calc.active {
    background: radial-gradient(circle, #1f7d8b, #197280);
}

.button-getcall {
    width: 100%;
    height: 60px;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    background: radial-gradient(circle, #f96472, #ca4855);
}

.button-press::before {
    content: "";
    display: inline-block;
    width: 34px;
    height: 34px;
    background-image: url("../images/pin.svg");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.form-location {
    width: 100%;
    height: 54px;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #c4c4c4;
    border-radius: 4px;
    font-size: 18px;
    margin-bottom: 20px;
    background-color: #ffffff;
    color: #282828;
}

#result {
    /* padding: 15px; */
    padding: 15px 8px 10px 10px;
    background-color: #ffecd3;
    border-left: 3px solid #424242;
    display: none;
}

.result__text {
    margin-bottom: 12px;
    line-height: 1.6;
}

.result__text--note {
    font-size: 14px;
    line-height: 1.3;
    color: #373737;
}
.big-star {
    font-size: 22px;
    color: #232323;
}

#callback-btn {
    margin-top: 4px;
    background: radial-gradient(circle, #fe6776, #c44451);
    padding: 10px;
    border-radius: 4px;
    color: white;
    border: none;
    cursor: pointer;
}

#callback-btn:hover {
    background: radial-gradient(circle, #fe6776, #cf4b58);
}

.hidden {
    display: none;
}

.callback-form {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.callback-form__input-phone input,
.callback-form input {
    width: 100%;
    padding: 10px;
    border: 1px solid #c4c4c4;
    border-radius: 5px;
    box-sizing: border-box;
    background-color: #ffffff;
    height: 54px;
}

.callback-form__text {
    font-size: 14px;
    color: #555;
}

.callback-form__input-name,
.callback-form__input-phone {
    color: #252525;
}