/*   BUTTON  */

@font-face {
  font-family: Poppins-Medium;
  src: url('../fonts/poppins/Poppins-Medium.ttf'); 
}

.btn-1-div {
  /* width: 100%; */
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}

.btn-1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  /* width: 100%; */
  height: 50px;
  /* background-color: #333333; */
  background-color: #57b846;
  
  border-radius: 10px;

  font-family: Poppins-Medium;
  font-size: 16px;
  color: #fff;
  line-height: 1.2;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
  position: relative;
  z-index: 0;

  border-style:none;
  border-color:none;
  
}

.btn-1::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  /* width: 100%; */
  height: 100%;
  border-radius: 10px;
  top: 0;
  left: 0;
  background: #07c8f8;
  background: -webkit-linear-gradient(45deg, #190a99, #07c8f8);
  background: -o-linear-gradient(45deg, #190a99, #07c8f8);
  background: -moz-linear-gradient(45deg, #190a99, #07c8f8);
  background: linear-gradient(35deg, #190a99, #07c8f8);
  opacity: 0;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.btn-1:hover:before {
  opacity: 1;
}


/* Specifics  */

.rpt-upgrade-big::before,
.rpt-upgrade-big {
  width: 250px;
  height: 38px;
  text-align: center;
  margin: auto;
}


.rpt-upgrade-small::before,
.rpt-upgrade-small {
  width: 170px;
  height: 24px;
  font-size: 13px;
  border-radius: 5px;
  /* padding-left: 10px;
  padding-right: 10px; */
}


/* HOME ICON  */

@font-face {
  font-family: 'icomoon';
  src:  url('../fonts/icomoon/icomoon.eot?elh4w5');
  src:  url('../fonts/icomoon/icomoon.eot?elh4w5#iefix') format('embedded-opentype'),
    url('../fonts/icomoon/icomoon.ttf?elh4w5') format('truetype'),
    url('../fonts/icomoon/icomoon.woff?elh4w5') format('woff'),
    url('../fonts/icomoon/icomoon.svg?elh4w5#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-home:before {
  content: "\e900";
}



@media (max-width: 700px) {
  .rpt-upgrade-small:hover:before,
  .rpt-upgrade-small::before,
  .rpt-upgrade-small {
    width: 200px !important;
    height: 25px;
    font-size: 12px;
    border-radius: 5px;
    padding-left: 0px;
    padding-right: 0px;
  }
}

@media (max-width: 320px) {
  .rpt-upgrade-small:hover:before,
  .rpt-upgrade-small::before,
  .rpt-upgrade-small {
    width: 240px !important;
    height: 40px;
    font-size: 12px;
    border-radius: 5px;
    padding-left: 0px;
    padding-right: 0px;
  }
  .levelHeaderIcon icon {
    vertical-align: top;
    padding-top:2px;
  }
  .levelHeaderTxt {
    font-size: 15px;
    margin-left: 5px;
    padding-top: 5px;
    padding-right: 3px;
    width:140px;
  }
}