/* CALC */

.rcalc-choice .btn-wide {
    width: 33%;
    padding-bottom: 15px;
    padding-top: 15px;
}

.rcalc-choice .btn-group {
    width: 100%;
}

#rcalcModal #comp, #rcalcModal #goods, #rcalcModal #avto_result,
#rcalcModal #comp_result, #rcalcModal #up_result, #rcalcModal #ts-st, #rcalcModal #kpp_result {
  display: none;
}

#rcalcModal #avto_result, #rcalcModal #comp_result,
#rcalcModal #up_result, #rcalcModal #kpp_result {
  border: 2px dotted #ccc;
  padding: 10px 10px 10px 10px;
  margin-top: 20px;
}

#rcalcModal #comp, #rcalcModal #goods, 
#rcalcModal #avto {
  padding-top: 20px;
}

#btn-rcalc {
  background-color: #333;
  width: 45px;
  height: 45px;
  color: #ffffff;
  border-radius: 50%;
  text-align: center;
  position: fixed;
  bottom: 25px;
  right: 25px;
  cursor: pointer;
  padding-top: 10px;
}

#btn-rcalc i {
    width: 28px;
    height: 28px;
}

.calc-label-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.calc-label-hint {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border: 1px solid #1fa337;
    border-radius: 50%;
    color: #1fa337;
    font-size: 12px;
    font-weight: 700;
    cursor: help;
    line-height: 1;
}

.calc-tooltip {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
    width: 420px;
    max-width: 90vw;
    padding: 10px 12px;
    background: #fff;
    border: 1px solid #dcdcdc;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    font-size: 13px;
    line-height: 1.45;
    color: #333;
    z-index: 20;
}

.calc-label-hint:hover + .calc-tooltip {
    display: block;
}
