.mergifmm input:checked + label:after {
    content: "\2713";
    width: 40px;
    height: 40px;
    line-height: 37px;
    border-radius: 100%;
    border: 2px solid #EC008C;
    background-color: white;
    color: #EC008C;
    z-index: 999;
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 30px;
}

.mergifmm input {
    display: none;
}



#nextButton, #prevButton{
    background-color: white;
    color: black;
    padding: 5px;
    border: none;
    margin: 5px 10px 10px 10px;
    border-radius: 5px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 18px;

}

.toggled {
    background-color: #ffc107 !important;
    color: black !important;
    border: solid 1px black !important;
}

.mergifmm {
    width: 50%;
    padding: 0 10px;
    float: left;
    font-family: 'Ubuntu';
    font-size: 15px;
    font-weight: 800;
    margin-top: 5px;
}

#questionsContainer label {
  position: relative;
  color: black;
  float: left;
  background-color: white;
  display: flex;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 60px;
  cursor: pointer;
  border: 1px solid black;
  justify-content: center;
  border-radius: 0;
  box-shadow: none;
}

#questionsContainer input:checked + label {
    border: 3px solid white;
    background-color: #FF0F7C;
    color: white;
    opacity: 1;
    animation-name: fadeInOpacity;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: 1s;
}

.selector {
  position: absolute;
  left: 50%;
  width: 140px;
  height: 140px;
  margin-top: 120px;
  margin-left: -65px;
  z-index: 1;
}

.selector ul {
  position: absolute;
  list-style: none;
  padding: 0;
  margin: 0;
  top: 10px;
  right: -5px;
  bottom: 86px;
  left: -5px;
}

.selector li {
  position: absolute;
  width: 0;
  height: 100%;
  margin: 0 50%;
  -webkit-transform: rotate(-360deg);
  transition: all 0.8s ease-in-out;
}

.selector li a {
  position: absolute;
  left: 50%;
  bottom: 100%;
  width: 0;
  height: 0;
  line-height: 1px;
  margin-left: 0;
  text-align: center;
  overflow: hidden;
  background: white;
  color: black;
  cursor: pointer;
  box-shadow: none;
  transition: all 0.8s ease-in-out, color 0.1s, background 0.1s;
  background-size: contain;
  background-repeat: no-repeat;
}

.selector li a img {
  margin-top: 10px;
}

.selector.open li a {
  width: 127px;
  height: 127px;
  line-height: 20px;
  margin-left: -65px;
  font-size: 20px;
  background-color: transparent;
}
.selector.open li a span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-57%, -50%);
}
.bubbly-button {
    display: inline-block;
    font-size: 0.9em;
    padding: 1em 1em;
    -webkit-appearance: none;
    appearance: none;
    background-color: #FF0F7C;
    color: #fff;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    position: relative;
    /*transition: transform ease-in 0.1s, box-shadow ease-in 0.25s;*/
    box-shadow: 0 1px 15px rgba(255, 0, 130, 0.5);
}

.bubbly-button:focus {
    outline: 0;
}

.bubbly-button:active {
    /*transform: scale(0.87);*/
    background-color: #FF0F7C;
    box-shadow: 0 5px 15px rgba(255, 0, 130, 0.2);
}

#buttonsContainer {
    width: 100%;
    display: none;
    text-align: center;
}

#infoBtn{
    display: none;
}

.infoModalTitle{
    font-family: KomikaAxis;
    width: 100%;
    font-size: 21px;
    color: #212529;
}
.bg{
  padding-top: 20%;
  padding-left: 10px;
  padding-right: 10px;
  /* background-image: url(/images/bg-cons-2.png); */
  background-size: cover;
  background-position: bottom center;
  position: absolute;
  right: 0;
  left: 0;
  z-index: -1;
  height: 100%;
  bottom: 30px;
  top: 0;
}
.bg-2 {
  padding-top: 20%;
  padding-left: 10px;
  padding-right: 10px;
  background-image: url(/images/bg-cons-2.png);
  background-size: cover;
  background-position: bottom center;
  position: absolute;
  right: 0;
  left: 0;
  z-index: -3;
  height: 100%;
  bottom: 30px;
  top: 0;
}
@media (min-width: 600px){
    .bg {
        height: 95%;
        padding: 0;
        background-size: cover;
        background-repeat: no-repeat;
    }
}

.highlighted-category{
    box-shadow: #ffff78 0px 0px 10px 9px !important;
}


.shake{
    animation: shake 0.5s;
    animation-iteration-count: 2;
}
@keyframes shake {
    0% { transform: translate(2px, 2px) rotate(0deg); }
    10% { transform: translate(-2px, -3px) rotate(-1deg); }
    20% { transform: translate(-3px, 0px) rotate(1deg); }
    30% { transform: translate(2px, 3px) rotate(0deg); }
    40% { transform: translate(2px, -2px) rotate(1deg); }
    50% { transform: translate(-2px, 3px) rotate(-1deg); }
    60% { transform: translate(-3px, 2px) rotate(0deg); }
    70% { transform: translate(3px, 2px) rotate(-1deg); }
    80% { transform: translate(-3px, -2px) rotate(1deg); }
    90% { transform: translate(2px, 3px) rotate(0deg); }
    100% { transform: translate(2px, -3px) rotate(-1deg); }
}

.restart-consilier {
    padding: 5px;
    border: none;
    margin: 5px 10px 10px 10px;
    border-radius: 5px;
    font-family: 'Ubuntu', sans-serif;
    background: #e3e3e3;
    padding-left: 15px;
    padding-right: 15px;
    height: unset;
    width: unset;
    font-size: 14px;
    color: black;
}


.back-to-shop {
    background: #f0ff00;
    color: black;
    height: unset;
    width: unset;
    font-size: 14px;
    float: right;
    padding: 5px;
    border: none;
    margin: 5px 10px 10px 10px;
    border-radius: 5px;
    font-family: 'Ubuntu', sans-serif;
}


.summary-button{
    border: 1px solid #000000;
    color: #000;
    font-family: 'Ubuntu', sans-serif;
    text-transform: initial;
    font-size: 15px;
    background: #ffc107;
    font-weight: bold;
}

.consul-cat {
    font-size: 20px;
    font-weight: bold;
    color: white;
    text-shadow: -1px 0px 2px #000000;
    font-family: 'Ubuntu', sans-serif;
}

.consul-subcat {
    background: #ffffff !important;
    font-family: 'Ubuntu', sans-serif;
    border: solid 2px black;
    border-radius: 6px;
    margin: 10px 0;
    padding: 10px !important;

}

.consul-subcat-link {
    color: black;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    display: inline-block;

}

.consul-subcat-link:hover {
    color: #de1879;
}

.subcat-icon {
    border: solid 2px black;
    display: inline-block;
    border-radius: 60px;
    box-shadow: 0px 0px 2px #888;
    padding: 0.25em 0.35em;
    float: right;
    margin-left: 10px;
    /*position: absolute;*/
    /*right: 25px;*/
}

#endButtonsContainer{
    width: 100%;
}

.products-count{
    float:right;
}

.collapse.show{
  height: calc(80vh - 30px);
  padding-bottom: 100px;
}
.collapse.show.app{
  height: calc(80vh - -45px);
  padding-bottom: 65px;
}
#back-to-top-cons{
  display: none;
  position: fixed;
  bottom: 62px;
  right: 4px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: #ffffff;
  color: black;
  border-radius: 50%;
  cursor: pointer;
  border-radius: 50%;
  font-size: 13px;
  padding: 6px 0px;
  height: 32px;
  width: 32px;
  text-align: center;
  line-height: 22px;
  border: 4px solid #f50091;
}

.score{
    text-align: center;
    color: #ffc107;
    font-size: 14px;
    font-weight: bold;
    text-shadow: rgb(0, 0, 0) 2px 0px 0px, rgb(0, 0, 0) 1.75517px 0.958851px 0px, rgb(0, 0, 0) 1.0806px 1.68294px 0px, rgb(0, 0, 0) 0.141474px 1.99499px 0px, rgb(0, 0, 0) -0.832294px 1.81859px 0px, rgb(0, 0, 0) -1.60229px 1.19694px 0px, rgb(0, 0, 0) -1.97998px 0.28224px 0px, rgb(0, 0, 0) -1.87291px -0.701566px 0px, rgb(0, 0, 0) -1.30729px -1.5136px 0px, rgb(0, 0, 0) -0.421592px -1.95506px 0px, rgb(0, 0, 0) 0.567324px -1.91785px 0px, rgb(0, 0, 0) 1.41734px -1.41108px 0px, rgb(0, 0, 0) 1.92034px -0.558831px 0px;
    display: none;
}
.not-scrollable {
overflow: hidden;
height: 100vh;
}
@media (min-width: 1200px) {
  .selector ul {
    bottom: 85px;
    padding-top: 55px;
  }
  .selector.open li a {
    margin-left: -66px;
    width: 132px;
    height: 137px;
  }
  .selector.open li a span {
    font-size: 20px;
  }
}
.consul-prod-wrapper {
  position: relative;
  transition: 0.5s all linear;
  top: 0;
}

.product-form #myImg {
    height: auto;
    width: auto;
    max-height: 170px;
}
