h1 {
  margin-bottom: 24px;
  font-size: 20px; }

.calc {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  flex-direction: column; }
  @media (min-width: 768px) {
    .calc {
      flex-direction: row;
      gap: 75px; } }
  .calc__content {
    flex-grow: 1;
    display: grid;
    grid-column-gap: 17px;
    grid-row-gap: 24px;
    width: 100%; }
    @media (min-width: 768px) {
      .calc__content {
        grid-template-columns: 1fr 1fr; } }
  @media (min-width: 768px) {
    .calc__block.col-1 {
      grid-column: span 2; } }
  .calc__item.calc__item-wth-img .calc__select-content-item {
    display: block; }
    @media (min-width: 768px) {
      .calc__item.calc__item-wth-img .calc__select-content-item {
        display: flex; } }
  .calc__item.static .calc__select-header {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0; }
  .calc__item.static .calc__select-content {
    position: static;
    opacity: 1;
    visibility: visible; }
  .calc__select {
    position: relative; }
    .calc__select-header {
      font-size: 15px;
      display: flex;
      align-items: center;
      padding: 13px 26px;
      border: 1px solid #0D0C36;
      border-radius: 8px;
      user-select: none;
      gap: 8px;
      transition: all 0.2s ease;
      cursor: pointer; }
      .calc__select-header.active {
        border-radius: 8px 8px 0 0; }
    .calc__select-value {
      flex: 1; }
      .calc__select-value .selected {
        font-size: 80%;
        color: #818181; }
    .calc__select-content {
      position: absolute;
      background: #fcfcfc;
      border: 1px solid #0D0C36;
      border-radius: 0 0 8px 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      min-width: 100%;
      z-index: 1000;
      margin-top: -1px;
      opacity: 0;
      visibility: hidden;
      transition: .2s;
      display: flex; }
      .calc__select-content.active {
        opacity: 1;
        visibility: visible; }
      .calc__select-content-img {
        width: 50%;
        flex: none;
        display: none;
        align-items: center;
        justify-content: center;
        height: 187px; }
        @media (min-width: 768px) {
          .calc__select-content-img {
            display: flex; } }
        .calc__select-content-img .img {
          height: 100%; }
      .calc__select-content-list {
        padding: 13px 26px 17px;
        min-width: 50%;
        width: 100%; }
        .calc__select-content-list:before {
          content: '';
          position: absolute;
          left: 0;
          width: 26px;
          height: 2px;
          top: -2px;
          background: #fcfcfc; }
        .calc__select-content-list:after {
          content: '';
          position: absolute;
          right: 0;
          width: 26px;
          height: 2px;
          top: -2px;
          background: #fcfcfc; }
      .calc__select-content-item {
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-weight: 300; }
        .calc__select-content-item:last-child {
          margin-bottom: 0; }
        .calc__select-content-item .img {
          width: 190px;
          height: 96px; }
          @media (min-width: 768px) {
            .calc__select-content-item .img {
              display: none !important; } }
        .calc__select-content-item-input {
          display: flex;
          align-items: center;
          width: 70px;
          height: 25px;
          border: 1px solid #FF1626;
          border-radius: 4px;
          font-size: 10px;
          font-weight: 300;
          padding-left: 6px;
          flex: none; }
          .calc__select-content-item-input input {
            border: 0;
            width: 100%; }
          .calc__select-content-item-input-measure {
            width: 22px;
            flex: none;
            border-left: 1px solid #FF1626;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center; }
        .calc__select-content-item label {
          cursor: pointer;
          font-weight: 300; }
          .calc__select-content-item label input {
            position: absolute;
            opacity: 0;
            visibility: hidden; }
            .calc__select-content-item label input:checked + span:after {
              opacity: 1; }
          .calc__select-content-item label span {
            position: relative;
            padding-left: 32px; }
            .calc__select-content-item label span:before {
              content: '';
              position: absolute;
              left: 0;
              top: 50%;
              transform: translateY(-50%);
              width: 20px;
              height: 20px;
              border: 1px solid #FF1626;
              border-radius: 2px; }
            .calc__select-content-item label span:after {
              content: '';
              position: absolute;
              left: 0;
              top: 50%;
              transform: translateY(-50%);
              width: 20px;
              height: 20px;
              background: linear-gradient(to bottom, #FF1626, #B4000C);
              transition: .2s;
              opacity: 0; }
    .calc__select-options {
      padding: 4px 0;
      list-style: none;
      width: 100%; }
    .calc__select-option {
      padding: 6px 26px;
      font-size: 14px;
      color: #374151;
      cursor: pointer;
      transition: background 0.2s; }
      .calc__select-option:hover, .calc__select-option:focus {
        background-color: #f3f4f6; }
      .calc__select-option.active {
        color: #dc2626; }
  .calc__input {
    position: relative;
    padding: 0;
    font-size: 15px;
    display: flex;
    align-items: center;
    border: 1px solid #0D0C36;
    border-radius: 8px;
    user-select: none;
    gap: 8px;
    transition: all 0.2s ease;
    cursor: pointer; }
    .calc__input-value {
      padding: 13px 26px;
      flex-grow: 1; }
      .calc__input-value label {
        position: absolute;
        left: 21px;
        top: 50%;
        transform: translateY(-50%);
        color: rgba(13, 12, 54, 0.5);
        pointer-events: none;
        background: #fcfcfc;
        padding: 0 5px;
        transition: .2s; }
      .calc__input-value input {
        background: none;
        border: 0;
        width: 100%; }
        .calc__input-value input:focus ~ label, .calc__input-value input:not(:placeholder-shown) ~ label {
          top: 0;
          font-size: 12px; }
    .calc__input-measure {
      width: 55px;
      height: 50px;
      flex: none;
      border-left: 1px solid #0D0C36;
      display: flex;
      align-items: center;
      justify-content: center;
      text-transform: uppercase;
      font-weight: bold; }
  .calc__total {
    width: 420px;
    max-width: 100%;
    flex: none;
    background: #F5F4F4;
    border-radius: 10px;
    box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.25);
    padding: 27px 14px; }
    .calc__total-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-bottom: 24px;
      margin-bottom: 18px;
      border-bottom: 1px solid #FF1626;
      font-weight: bold;
      font-size: 20px; }
      .calc__total-top-label {
        text-transform: uppercase; }
      .calc__total-top-note {
        font-size: 10px;
        color: rgba(13, 12, 54, 0.5);
        margin-bottom: 33px; }
    .calc__total-result {
      color: #FF1626; }
  .calc__form-input {
    margin-bottom: 24px; }
    .calc__form-input input {
      width: 100%;
      border: 1px solid #0D0C36;
      border-radius: 10px;
      padding: 17px 12px; }
  .calc__form-submit {
    margin-bottom: 18px; }
    .calc__form-submit button {
      width: 167px;
      height: 52px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      border: 0;
      background: #FF1626;
      font-weight: bold;
      font-size: 20px;
      border-radius: 10px;
      cursor: pointer; }
  .calc__calculate {
    width: 215px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    border: 0;
    background: #FF1626;
    font-weight: bold;
    font-size: 20px;
    border-radius: 10px;
    text-transform: uppercase;
    cursor: pointer; }
  .calc__agreement {
    color: #767676;
    font-size: 12px; }
    .calc__agreement a {
      color: #FF1626; }

.img {
  display: none; }
  .img.active {
    display: flex;
    align-items: center;
    justify-content: center; }
  .img img {
    max-width: 100%;
    max-height: 100%; }

/*# sourceMappingURL=styles.css.map */
