:root {
  --blue-bg:    #E6F1F9;
  --blue-border:#076B9C;
  --orange:      #F58423;
  --blue:        #076B9C;
  --gray-border: #CCCBC8;

  --font-family: 'Nunito Sans', sans-serif;
  --font-size:   10pt;
}

* {
  box-sizing: border-box;

  margin: 0;
  padding: 0;
  font-family: var(--font-family);
}

#widget {
  max-width: 526px;
  margin-block: 16px;
  background: #FFFFFF;
  border: 1px solid #CCCBC8;
  border-radius: 32px;
  margin-inline: auto;
  padding: 24px;
  box-shadow: 0px 4px 8px 0px #312F2E26;
}

.title {
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0;      
  margin-bottom: 16px;
}

.toggle {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.button-toggle {
  flex: 1;
  text-align: center;
  padding: 12px 8px;
  font-size: 16px;
  border-radius: 4px;
  border: 2px solid var(--gray-border);
  cursor: pointer;
  user-select: none;
}

.button-toggle.active {
  background: var(--blue-bg);
  border-color: var(--blue-border);
}

.action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 44px;
  gap: 4px;
  margin-top: 16px;
}

.info-link {
  display: flex;
  align-items: center;
  width: 308px;
  height: 44px;
  font-weight: 700;   
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0;
  color: var(--blue);

  text-decoration: none;

}

.next-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 148px;
  height: 44px;
  gap: 4px;
  border-radius: 8px;

  background: var(--orange);
  color: #fff;
  border: none;

  font-weight: 700;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;

  cursor: pointer;
}

.next-btn .arrow {
  font-size: 22px;
  line-height: 1;
}

@media (max-width: 480px) {
  #widget {
    width: calc(100% - 32px);
    margin: 16px auto;
    border-radius: 32px;    
    border-width: 1px;
    padding: 12px;
    padding-bottom: 16px;
    height: auto;
  }

  .title {
    text-align: left;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 12px;
  }

  .toggle {
    gap: 4px;
    margin-bottom: 12px;
  }
  .button-toggle {
    padding: 8px 4px;
    font-size: 14px;
    border-radius: 4px;
  }

  .action-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
    width: 100%;
    height: auto;
  }

  .info-link {
    width: 100%;
    height: auto;
    padding: 10px;
    font-size: 14px;
    line-height: 1.4;
    justify-content: flex-start;
  }

  .next-btn {
    width: 100%;
    height: 44px;
    padding: 0;
    font-size: 16px;
    line-height: 120%;
    border-radius: 6px;
  }
}
