.custinput {
  background: white !important;
  height: 50px !important;
  margin-right: 10px;
  padding-right: 50px;

  border-radius: 0px !important;
  border: 1px solid #fff !important;
  border-left: 1px solid #d6d4d4 !important;
}

.bg-grad {
  background: rgba(170, 44, 86, 1);
  /* background: linear-gradient(90deg, rgba(249, 143, 179, 1) 0%, rgba(193, 71, 112, 1) 47%, rgba(170, 44, 86, 1) 100%); */
}

table {
  border: 0.5px solid #d999af !important;
}

.fs-18 {
  font-size: 18px !important;
}

ul {
  list-style: none !important;
}

input {
  height: 45px !important;
}

@media only screen and (max-width: 600px) {
  .header-button {
    display: none !important;
  }

  .reverse {
    flex-direction: column-reverse;
  }
}

.zf-important {
  color: red !important;
}

/* .///////////////////////// */

.select-box {
  display: flex;
  width: 60px;
  text-align: center;
  flex-direction: column;
}

.select-box .options-container {
  background: #ffffff;
  color: #2f3640;
  max-height: 0;
  width: 400px;
  opacity: 0;
  transition: all 0.4s;
  border-radius: 8px;
  overflow: hidden;

  order: 1;
}

.selected {
  background: #ffffff;
  height: 50px !important;
  /* border-radius: 8px; */
  margin-bottom: 8px;
  color: #2f3640;
  position: relative;

  order: 0;
}

.selected::after {
  content: "";
  background: url("img/arrow-down.svg");
  background-size: contain;
  background-repeat: no-repeat;

  position: absolute;
  /* width: 32px;
  right: 10px;
  top: 5px; */

  transition: all 0.4s;
}

.select-box .options-container.active {
  max-height: 240px;
  opacity: 1;
  overflow-y: scroll;
}

.select-box .options-container.active + .selected::after {
  transform: rotateX(180deg);
  top: -6px;
}

.select-box .options-container::-webkit-scrollbar {
  width: 8px;
  background: #0d141f;
  border-radius: 0 8px 8px 0;
}

.select-box .options-container::-webkit-scrollbar-thumb {
  background: #525861;
  border-radius: 0 8px 8px 0;
}

.select-box .option,
.selected {
  padding: 10px;
  cursor: pointer;
}

.select-box .option:hover {
  background: #e9e9e9;
}

.select-box label {
  cursor: pointer;
}

.select-box .option .radio {
  display: none;
}

.deskHint {
  display: block;
}

.mobileHint {
  display: none;
}

@media screen and (max-width: 768px) {
  .deskHint {
    display: none;
  }

  .mobileHint {
    display: block;
  }

  .md-center {
    text-align: center !important;
  }

  .center-img-auther .author-meta {
    justify-content: center;
  }
  .mobile-header{
    position: fixed !important;
    z-index:100;
    background-color: #525fe1!important;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
    height: 84px;
  }

  .logo-mob{
    max-height: max-content!important;
  }
}

.trial-heading{
  text-align: center;
  font-size: 45px !important;
  background: linear-gradient(
    90deg,
    #bf3240,
    #7e36d9 93.67%
  );
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;

}