{# Style for the buttons #}

.tab-btn-con {
 display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  margin-top: 25px;
  flex-wrap: wrap;
}

button.btn-con {
  cursor: pointer;
  outline: none;
  -webkit-appearance: none; 
  -moz-appearance: none;
  appearance: none;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  margin-right: 5px;
  margin-left: 5px;
  margin-bottom: 10px;
}

.tab-content-con {
display: flex;
  flex-direction: row;
}

.tab-content-con img {
  height: 100% !important;
}

.tab-content-con .tab-content-outer {
  width: 80%;
  height: auto;
  display: flex;
  align-items: center;
  z-index: 2;
  margin-left:-150px;
}

@media (max-width: 992px) {
  .tab-content-con .tab-content-outer {
   align-items: end;
   width: 100%;
    margin-left: -90%;
    margin-bottom: -25px;
  }
}

@media (max-width: 575px) {
  .tab-content-con {flex-direction: column; align-items: center;}
  .tab-content-con .tab-content-outer {
   margin-left: 0; 
   width: 90%;
    margin-top: -25px;
  }
}