@import url('https://fonts.googleapis.com/css?family=Montserrat');
/* new */
.rz-footer ::-webkit-scrollbar {
  width: 10px;
}

/* Track */
.rz-footer ::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
.rz-footer ::-webkit-scrollbar-thumb {
  background: #888; 
}

/* Handle on hover */
.rz-footer ::-webkit-scrollbar-thumb:hover {
  background: #555; 
}
/* new end */
.rz-footer {
  z-index: 99999999999999;
  height: 40px;
  font-family: "Trebuchet MS", sans-serif;
  background-color: #222;
  color: #fff;
  font-size: 14px;
  bottom: 0;
  position: fixed;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 999;
}
.rz-footer p {
  margin: 10px 0;
}
.rz-footer .lv {
  color: red;
}
.rz-footer a {
  color: #3c97bf;
  text-decoration: none;
}
.rz-footer .rz-footer-text {
  margin: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  position: relative;
  z-index: 2;
}
.rz-dropup-trigger {
  cursor: pointer;
  min-width: 90px;
}
/* new starts */
.rz-dropup-trigger:focus .rz-dropup {
  display: flex;
}
.rz-dropup-trigger .v-m {
  display: block;
}
.rz-dropup-trigger .v-l {
  display: none;
}
.rz-dropup-trigger:focus .v-m {
  display: none;
}
.rz-dropup-trigger:focus .v-l {
  display: block;
}
@keyframes wave-animation {
  0% { transform: rotate( 0.0deg) }
 10% { transform: rotate(14.0deg) }  /* The following five values can be played with to make the waving more or less extreme */
 20% { transform: rotate(-8.0deg) }
 30% { transform: rotate(14.0deg) }
 40% { transform: rotate(-4.0deg) }
 50% { transform: rotate(10.0deg) }
 60% { transform: rotate( 0.0deg) }  /* Reset for the last half to pause */
100% { transform: rotate( 0.0deg) }
}
.rz-dropup .rz-close:hover{
  animation-name: wave-animation;  /* Refers to the name of your @keyframes element below */
    animation-duration: 2.5s;        /* Change to speed up or slow down */
    animation-iteration-count: infinite;  /* Never stop waving :) */
    transform-origin: 70% 70%;       /* Pivot around the bottom-left palm */
    display: inline-block;
}
.rz-dropup .rz-close{
  position: fixed;
    font-size: 1.5rem;
    cursor: pointer;
    top: 0;
    right: 0;
    padding: 20px 30px;
}
/* new ends */
.rz-dropup {
  cursor: auto;
  background-color: #28223F;
  font-family: Montserrat, sans-serif;
  display: none;
  align-items: center;
  flex-direction: row;
  justify-content: space-evenly;
  height: calc(100vh - 30px);
  position: absolute;
  bottom: 28px;
  /* new botton change */
  left: 0;
  width: 100%;
  margin: 0;
  overflow-y: auto;
}
.rz-dropup .rz-cards {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: row;
  width: 100%;
  padding: 0 20px;
  height: 100%;
  overflow-y: auto;
  flex-wrap: wrap;
  gap: 15px;
}
.rz-dropup h3 {
  margin: 10px 0;
}
.rz-dropup h6 {
  margin: 5px 0;
  text-transform: uppercase;
}
.rz-dropup p {
  font-size: 14px;
  line-height: 21px;
}
.rz-dropup .rz-card {
  background-color: #231E39;
  border-radius: 5px;
  box-shadow: 0px 10px 20px -10px rgba(0, 0, 0, 0.75);
  color: #B3B8CD;
  padding-top: 30px;
  position: relative;
  width: 350px;
  max-width: 100%;
  text-align: center;
}
.rz-dropup .rz-card .pro {
  color: #231E39;
  background-color: #FEBB0B;
  border-radius: 3px;
  font-size: 14px;
  font-weight: bold;
  padding: 3px 7px;
  position: absolute;
  top: 30px;
  left: 30px;
}
.rz-dropup .rz-card .round {
  border: 1px solid #03BFCB;
  border-radius: 50%;
  padding: 7px;
}
.rz-dropup .rz-card button.primary {
  background-color: #03BFCB;
  border: 1px solid #03BFCB;
  border-radius: 3px;
  color: #231E39;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
  padding: 10px 25px;
}
.rz-dropup .rz-card button.primary.ghost {
  background-color: transparent;
  color: #02899C;
}
.rz-dropup .rz-card .skills {
  background-color: #1F1A36;
  text-align: left;
  padding: 15px;
  margin-top: 30px;
}
.rz-dropup .rz-card .skills ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.rz-dropup .rz-card .skills ul li {
  border: 1px solid #2D2747;
  border-radius: 2px;
  display: inline-block;
  font-size: 12px;
  margin: 0 7px 7px 0;
  padding: 7px;
}
