* {
  box-sizing: border-box;
}
/* old color #f1f1f1 -> #F5F7FF */
.dialog__trigger, .dialog__action {
  border: 3px solid #333333;
  border-radius: 0.5rem;
  background: #F5F7FF;
  padding: 15px 20px;
  font-size: 1.1rem;
  text-transform: uppercase;
  display: block;
  transition: all 150ms ease-out;
  transform: translateY(0px);
}

.dialog__action {
  background: #FFF;
}

.dialog__trigger:hover, .dialog__trigger:focus, .dialog__action:hover, .dialog__action:focus {
  outline: 0;
  transform: translateY(-5px);
  transition: all 100ms ease-in;
  box-shadow: 0 5px 10px rgba(51, 51, 51, 0.4);
}
.dialog__trigger:active, .dialog__action:active {
  transform: translateY(-3px);
}

.dialog {

  background: #F5F7FF;
  width: 90%;
  height: 90%;
  position: fixed;
  left: calc(40% - 35%);
  top: 0;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(51, 51, 51, 0.4);
  border: 3px solid #333333;
  border-radius: 0.5rem;
  visibility: hidden;
  opacity: 0;
  transition: all 180ms ease-in;
  z-index: 999;
}
@media (max-width: 600px) {
  .dialog {
    width: 90%;
    left: calc(50% - 45%);
  }
}
.dialog.dialog--active {
  top: 3%;
  visibility: visible;
  opacity: 1;
  transition: all 250ms ease-out;
}
.dialog .dialog__close {
  font-size: 2rem;
  line-height: 2rem;
  position: absolute;
  right: 15px;
  top: 15px;
  cursor: pointer;
  padding: 15px;
  transition: color 150ms ease;
}
.dialog .dialog__close:hover {
  color: #E74C3C;
}
.dialog .dialog__title {
  font-size: 2rem;
  /*font-weight: 100;*/
  margin: 0;
  padding: 0 0 15px 0;
  border-bottom: 2px solid #333333;
}
.dialog .dialog__content {
  font-size: 1.1rem;
  line-height: 2rem;
}
.dialog .dialog__action {
  margin: 0;
  font-size: 1rem;
}

/*
dddd
*/

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap");
*,
*:after,
*:before {
  box-sizing: border-box;
}


.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 96%;
  margin-left: auto;
  margin-right: auto;
  max-width: auto;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.checkbox-group > * {
  margin: 0.05rem 0.3rem;
}

.checkbox-group-legend {
  font-size: 1.5rem;
  font-weight: 700;
  color: #9c9c9c;
  text-align: center;
  line-height: 1.125;
  margin-bottom: 1.25rem;
}

.checkbox-input {
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.checkbox-input:checked + .checkbox-tile {
  border-color: #6613a4;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  color: #6613a4;
}
.checkbox-input:checked + .checkbox-tile:before {
  transform: scale(1);
  opacity: 1;
  background-color: #6613a4;
  border-color: #6613a4;
}
.checkbox-input:checked + .checkbox-tile .checkbox-icon, .checkbox-input:checked + .checkbox-tile .checkbox-label {
  color: #6613a4;
}
.checkbox-input:focus + .checkbox-tile {
  border-color: #6613a4;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1), 0 0 0 4px #b5c9fc;
}
.checkbox-input:focus + .checkbox-tile:before {
  transform: scale(1);
  opacity: 1;
}

.checkbox-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 8rem;
  min-height: 1rem;
  border-radius: 0.5rem;
  border: 2px solid #434241;
  background-color: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  transition: 0.15s ease;
  cursor: pointer;
  position: relative;
  /*margin-top: -1.3rem;*/
}
.checkbox-tile:before {
  content: "";
  position: absolute;
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid #434241;
  background-color: #fff;
  border-radius: 50%;
  top: 0.25rem;
  left: 0.25rem;
  opacity: 0;
  transform: scale(0);
  transition: 0.25s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='192' height='192' fill='%23FFFFFF' viewBox='0 0 256 256'%3E%3Crect width='256' height='256' fill='none'%3E%3C/rect%3E%3Cpolyline points='216 72.005 104 184 48 128.005' fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='32'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: 50% 50%;

}
.checkbox-tile:hover {
  border-color: #6613a4;
}
.checkbox-tile:hover:before {
  transform: scale(1);
  opacity: 1;
}

.checkbox-icon {
  transition: 0.375s ease;
  color: #494949;
}
.checkbox-icon svg {
  width: 3rem;
  height: 3rem;
}

.checkbox-label {
  color: #434241;
  transition: 0.375s ease;
  text-align: center;
}


/* 2 check */

.checkbox-group2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: auto;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.checkbox-group2 > * {
  margin: 0.15rem 0.7rem;
}

.checkbox-group-legend2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #9c9c9c;
  text-align: center;
  line-height: 1.125;
  margin-bottom: 1.25rem;
}

.checkbox-input2 {
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.checkbox-input2:checked + .checkbox-tile2 {
  border-color: #6613a4;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  color: #6613a4;
}
.checkbox-input2:checked + .checkbox-tile2:before {
  transform: scale(1);
  opacity: 1;
  background-color: #6613a4;
  border-color: #6613a4;
}
.checkbox-input2:checked + .checkbox-tile2 .checkbox-icon2, .checkbox-input2:checked + .checkbox-tile2 .checkbox-label2 {
  color: #6613a4;
}
.checkbox-input2:focus + .checkbox-tile2 {
  border-color: #6613a4;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1), 0 0 0 4px #b5c9fc;
}
.checkbox-input2:focus + .checkbox-tile2:before {
  transform: scale(1);
  opacity: 1;
}

.checkbox-tile2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 10rem;
  min-height: 6rem;
  border-radius: 0.5rem;
  border: 2px solid #434241;
  background-color: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  transition: 0.15s ease;
  cursor: pointer;
  position: relative;
}
.checkbox-tile2:before {
  content: "";
  position: absolute;
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid #434241;
  background-color: #fff;
  border-radius: 50%;
  top: 0.25rem;
  left: 0.25rem;
  opacity: 0;
  transform: scale(0);
  transition: 0.25s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='192' height='192' fill='%23FFFFFF' viewBox='0 0 256 256'%3E%3Crect width='256' height='256' fill='none'%3E%3C/rect%3E%3Cpolyline points='216 72.005 104 184 48 128.005' fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='32'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.checkbox-tile2:hover {
  border-color: #6613a4;
}
.checkbox-tile2:hover:before {
  transform: scale(1);
  opacity: 1;
}

.checkbox-icon2 {
  transition: 0.375s ease;
  color: #494949;
}

.checkbox-label2 {
  color: #434241;
  transition: 0.375s ease;
  text-align: center;
}





.checkbox-input3 {
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.checkbox-input3:checked + .checkbox-tile3 {
  border-color: #6613a4;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  color: #6613a4;
}
.checkbox-input3:checked + .checkbox-tile3:before {
  transform: scale(1);
  opacity: 1;
  background-color: #6613a4;
  border-color: #6613a4;
}
.checkbox-input3:focus + .checkbox-tile3 {
  border-color: #6613a4;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1), 0 0 0 4px #b5c9fc;
}
.checkbox-input3:focus + .checkbox-tile3:before {
  transform: scale(1);
  opacity: 1;
}

.checkbox-tile3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 30rem;
  min-height: 2rem;
  border-radius: 0.5rem;
  border: 2px solid #434241;
  background-color: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  transition: 0.15s ease;
  cursor: pointer;
  position: relative;
}
.checkbox-tile3:before {
  content: "";
  position: absolute;
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid #434241;
  background-color: #fff;
  border-radius: 50%;
  top: 0.25rem;
  left: 0.25rem;
  opacity: 0;
  transform: scale(0);
  transition: 0.25s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='192' height='192' fill='%23FFFFFF' viewBox='0 0 256 256'%3E%3Crect width='256' height='256' fill='none'%3E%3C/rect%3E%3Cpolyline points='216 72.005 104 184 48 128.005' fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='32'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.checkbox-tile3:hover {
  border-color: #6613a4;
}
.checkbox-tile3:hover:before {
  transform: scale(1);
  opacity: 1;
}
.checkbox-input3:checked + .checkbox-tile3 .checkbox-icon3, .checkbox-input3:checked + .checkbox-tile3 .checkbox-label3 {
  color: #6613a4;
}

@media only screen and (max-width: 46.1875em){
    .checkbox-tile3 {
        width: 19rem;
    }
    #tool-bone .predict-input {
        width: 32%;
    }
    #tool-bone .lb-input {
        display: block;
    }
    #tool-bone .radios_label.label_smoking{
        margin-left: 62px !important;
    }
    [type="checkbox"]:not(:checked) + label, [type="checkbox"]:checked + label {
        padding-left: 0.3em;
    }
    #tool-bone .btn1 {
        margin: 0 5px 0 5px;
        font-size: 1.2em;
    }
    .col-3-w {
        width: 100% !important;
    }
    #v-img {
        width: 5.4px;
    }
}