a:focus, a:active,
button::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
select::-moz-focus-inner,
input[type="file"] > input[type="button"]::-moz-focus-inner {
  border: 0;
  outline : 0;
}
.wrapper-out {
  border: 1px solid;
  border-radius: 5px;
  padding: 10px;
  max-width: 600px;
  position: relative;
}
.wrapper-out .wrapper-summary {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: flex-end;
  justify-content: space-between;
  align-items: center;
  background: #e9e9e9;
  margin-top: 10px;
  padding: 10px;
}

.wrapper-out ul.wrapper-navigation li {
  margin: 5px;
  text-transform: uppercase;
  font-size: 12px;
}
.wrapper-out ul.wrapper-navigation li.active {
  color: #232323;
  text-decoration: underline;
}
.wrapper-out ul.wrapper-navigation {
  display: flex;
  list-style-type: none;
  flex-wrap: nowrap;
  flex-direction: row;
  align-content: flex-start;
  justify-content: center;
  align-items: stretch;
  margin: 0;
  padding: 0;


}
.familly-wrapper-in {
  display: flex;
  align-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
}
.wrapper-in .section {
  border: 1px solid #d1d1d18a;
  margin-bottom: 20px;
  padding: 10px;
}
.wrapper-in .section .title_section {
  margin-bottom: 5px;
  background: #ffffff;
  border-bottom: 1px solid #1e1e1e;
  text-transform: uppercase;
  color: #1e1e1e;
  font-weight: 500;
  font-size: 13px;
}

.familly-wrapper-in label {
  position: relative;
  display: flex;
  width: calc(100% / 6);
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: stretch;
  justify-content: space-between;
}

.familly-wrapper-in label span {
  text-align: center;
  font-size: 11px;
  min-height: 40px;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
}

.familly-wrapper-in label input {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
  font: inherit;
  color: transparent;
  width: 75px;
  height: 75px;
  display: grid;
  place-content: center;
  border: 2px solid #ffffff;
  border-radius: 5px;
  font-size: 0;
}
.familly-wrapper-in select {
  display: block;
  width: 100%;
  padding: 5px;
}
input[type="radio"]:hover{
  cursor: pointer;
}
input[type="radio"]:checked{
  border-color: #3e3e3e;
}
input[type="radio"]:checked:after {
  content: "";
  position: absolute;
  height: 0;
  width: 0;
  border-top: 30px solid #3e3e3e;
  border-right: 30px solid transparent;
  color: #d5bcbc;
}
input[type="radio"]:checked:before {
  content: "✓";
  position: absolute;
  height: 0;
  width: 0;
  color: #ffffff;
  z-index: 9;
  font-size: 14px;
  text-indent: 2px;
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 400ms;
  animation-duration: 400ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
}
@keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
  -webkit-animation-duration: 400ms;
  animation-duration: 400ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes fadeOut {
  0% {opacity: 1;}
  100% {opacity: 0;}
}
@keyframes fadeOut {
  0% {opacity: 1;}
  100% {opacity: 0;}
}

.tooltip p {
  margin: 0;
  padding: 0;
}
.tooltip img {
  display: none;
}
.tooltip {
  background: rgb(235 235 235);
  position: absolute;
  left: 0;
  bottom: 0;
  width: 200px;
  z-index: 90;
  font-size: 11px;
  border-radius: 3px;
  padding: 3px 5px;
  color: #191919;
  border: 1px solid #dbdbdb;
  border-bottom: 2px solid #c5c5c5;
}




.loader {
  animation: animate 1.5s linear infinite;
  clip: rect(0, 80px, 80px, 40px);
  height: 80px;
  width: 80px;
  position: absolute;
  left: calc(50% - 40px);
  top: calc(50% - 40px);
}
@keyframes animate {
  0% {
    transform: rotate(0deg)
  }
  100% {
    transform: rotate(220deg)
  }
}
.loader:after {
  animation: animate2 1.5s ease-in-out infinite;
  clip: rect(0, 80px, 80px, 40px);
  content:'';
  border-radius: 50%;
  height: 80px;
  width: 80px;
  position: absolute;
}
@keyframes animate2 {
  0% {
    box-shadow: inset #000 0 0 0 17px;
    transform: rotate(-140deg);
  }
  50% {
    box-shadow: inset #000 0 0 0 2px;
  }
  100% {
    box-shadow: inset #000 0 0 0 17px;
    transform: rotate(140deg);
  }
}




.loader-bg {
  z-index: 100;
  background: white;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.7;
}
.option-description.option-grid {
  display: block;
  width: 100%;

}

.option-description.option-grid p {
  color: #f5a623;

  font-size: 12px;
}