/* Views/www_webpack/pages/guarantee/guarantee.css */
#guarantee {
  padding: 20px clamp(20px, 5vw, 10vw);
}
#guarantee h1 {
  font-weight: normal;
  font-size: 2em;
  line-height: 1;
  text-transform: uppercase;
}
.guarantee__content ul {
  display: grid;
  padding-left: 50px;
}
.guarantee__content ul > li::before {
  margin-right: 0.5em;
  color: var(--color-green);
  font-size: 1.2em;
  content: "➥";
}
.guarantee__content a {
  padding-left: 5px;
}
.guarantee__content a:hover {
  text-decoration: underline;
}
.guarantee__container {
  display: flex;
  gap: 3vw;
}
.guarantee__container menu {
  position: relative;
  display: grid;
  min-width: 300px;
  background: var(--color-grey);
  border-radius: 8px;
  box-shadow: rgb(0 0 0 / 15%) 0 2px 8px;
}
.guarantee__container menu li:first-child {
  border-radius: 6px 6px 0 0;
}
.guarantee__container menu li:last-child {
  border-radius: 0 0 6px 6px;
}
.guarantee__container menu::after {
  position: absolute;
  top: -2px;
  left: -2px;
  z-index: -1;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  background-image: linear-gradient(to right, rgb(14 174 87 / 60%) 0%, rgb(12 116 117 / 70%) 41%, rgb(14 174 87 / 60%) 120%);
  background-size: 200% auto;
  border-radius: 10px;
  content: "";
}
#guaranteeContent {
  display: grid;
  gap: 20px;
}
.guarantee__menu_item {
  display: flex;
  align-items: center;
  height: 60px;
  cursor: pointer;
}
.guarantee__menu_item.active,
.guarantee__menu_item:hover {
  color: var(--color-white);
  background-image: linear-gradient(to right, rgb(14 174 87 / 60%) 0%, rgb(12 116 117 / 70%) 41%, rgb(14 174 87 / 60%) 120%);
  background-size: 200% auto;
}
.guarantee__menu_item .icon {
  width: 45px;
  height: 45px;
  margin: 0 10px;
}
.guarantee__form {
  display: grid;
  gap: 20px;
  margin-top: 20px;
  padding: 40px;
  background: var(--color-grey);
  border: 2px solid var(--color-dark-grey);
  border-radius: 10px;
}
.guarantee__form h2 {
  font-weight: normal;
  text-transform: uppercase;
}
.guarantee__form input {
  background: var(--color-white);
}
.guarantee__form_top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.guarantee__form_middle {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
}
.guarantee__form_middle .right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.guarantee__form_middle .right div {
  display: grid;
  padding: 10px;
  background: var(--color-white);
  border: 2px solid var(--color-red);
  border-radius: 8px;
}
.guarantee__form_bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.guarantee__form_bottom .two_column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.guarantee__form_bottom .two_rows {
  display: grid;
  gap: 20px;
  margin-top: 20px;
}
.guarantee__form_bottom textarea {
  height: 80px;
  font-size: 1em;
}
.guarantee__form_bottom .label_file {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  padding: 20px;
  background: var(--color-white);
  border: 3px dotted var(--color-green);
  border-radius: 10px;
  cursor: pointer;
}
.guarantee__form_bottom .label_file input {
  display: none;
}
.guarantee__form_bottom .label_file img {
  width: auto;
  height: 240px;
}
.guarantee__form_bottom .label_file:hover img {
  transform: scale(1.02);
}
.label__custom_radio {
  display: flex;
  gap: 5px;
  align-items: center;
}
.label__custom_radio input {
  all: revert;
}
.custom_radio {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.2em;
  height: 1.2em;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 50%;
}
@media screen and (max-width: 1270px) {
  .guarantee__form_middle,
  .guarantee__form_bottom {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 1100px) {
  .guarantee__container {
    flex-direction: column;
  }
}
