.popmenubizdev {
  position: fixed;
  left: 0;
  top: 19%;
  height: auto;
  width: 275px;
  padding: 1.5rem 0 3rem 0;
  z-index: 4;
}
.popmenubizdev::before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 275px;
  background: #dbdcdde6;
  clip-path: polygon(0 0, 100% 0%, 100% 89%, 0% 100%);
  content: "";
}

.popmenubizdev::after {
  position: absolute;
  right: 0;
  height: 300px;
  content: "";
  bottom: 1.2rem;
  width: 197px;
  border-right: 1px solid var(--GlacialBlue);
  border-bottom: 1px solid var(--GlacialBlue);
  transform: skew(0deg, -11deg);
  margin-right: -.8rem;
  z-index: -3;
}

.popmenubizdev svg {
    transform: rotate(180deg);
    font-size: xx-large;
    cursor: pointer;
    max-width: 50px;
}
.closeslideout .st0{
  fill:var(--PumpkinSpice);
  opacity: 1;
}
.closeslideout.closeNone .st0{
  fill:var(--StoneGrey);
  opacity: 1;
}
.closeslideout.closeNone {
  right: -7px;
}
.closeslideout.closeNone svg {
  width: 65%;
  margin-top: .5rem;
}
.popwrapper input, .popwrapper textarea {
    width: 100%;
    max-height: 100px;
    border: none;
    padding: .5rem;
}

.popwrapper .biz-dev-btn1 {
  background: var(--PumpkinSpice);
  color: white;
  border: none;
  padding: .5rem;
}
.popwrapper .biz-dev-btn1:hover{
  background:var(--NavyBlue);
}
.popwrapper h3 span{
    font-weight:300;
}
.popwrapper {
  padding: 1rem;
  position: relative;
}

.popwrapper label {
    color: var(--StoneGrey);
    font-family: 'Futura PT';
    text-transform: uppercase;
    font-weight: 400;
    margin: .5rem 0;
    opacity: .9;
}

.popwrapper h3 {
    color: var(--StoneGrey);
    border-bottom: solid thin var(--StoneGrey);
    padding-bottom: 9px;
    font-size: 1.3rem;
}

.popwrapper a {
    color: var(--RichBlack)
}


.closeslideout {
  position: absolute;
  visibility: visible !important;
  max-width: 28px;
  margin-right: .5rem;
  top: 0;
  margin-top: .5rem;
  right: -50px;
}
.closeslideout.moverightbz {
  max-width: 25px;
}

.closeslideout.moverightbz .st0{
  fill:var(--PumpkinSpice);
  opacity:1;
}
 .closeslideout .st0 {
  fill: var(--StoneGrey);
  opacity: .5;
}

.rotateslidein{
    -webkit-animation: rotate-center 0.6s ease-in both;
    animation: rotate-center 0.6s ease-in both;
}

.rotateslideout{
    -webkit-animation: rotate-center-out 0.6s ease-in both;
    animation: rotate-center-out 0.6s ease-in both;
}

.moverightbz{
  right: -42px !important;
}

.movenegrightbz{
  right:0 !important;
}



@-webkit-keyframes rotate-center {
    0% {
      -webkit-transform: rotate(180deg);
              transform: rotate(180deg);
    }
    100% {
      -webkit-transform: rotate(0);
              transform: rotate(0);
    }
  }
  @keyframes rotate-center {
    0% {
      -webkit-transform: rotate(180deg);
              transform: rotate(180deg);
    }
    100% {
      -webkit-transform: rotate(0);
              transform: rotate(0);
    }
  }

  @-webkit-keyframes rotate-center-out {
    0% {
      -webkit-transform: rotate(0);
              transform: rotate(0);
    }
    100% {
      -webkit-transform: rotate(180deg);
              transform: rotate(180deg);
    }
  }
  @keyframes rotate-center-out {
    0% {
      -webkit-transform: rotate(0);
              transform: rotate(0);
    }
    100% {
      -webkit-transform: rotate(180deg);
              transform: rotate(180deg);
    }
  }
  