.sidebar-form{
  position:fixed;
  top:0;
  right:-420px;
  /* transform:translateY(-50%); */
  width:420px;
  height:100%;
  background:#fff;
  box-shadow: 0 0px 18px rgba(0,0,0,.2);
  box-sizing:border-box;
  transition:0.5s;
  z-index: 999999;
}
.sidebar-form.active{
  right:0;
}
.sidebar-form input,
.sidebar-form textarea{
  width:100%;
  height: 45px;
  /* margin-bottom: 0px; */
  box-sizing:border-box;
  outline:none;
  border-radius: 6px;
}
.sidebar-form h2 {
  margin: 0;
  padding: 40px 30px;
  font-size: 27px;
  font-weight: 700;
  color: #fff;
  background: var(--ztc-bg-main-bg-1);
}
.sidebar-form h2 span {
    color: #fff799;
}
.sidebar-form textarea{
  height: 75px;
}
.sidebar-form input[type="submit"]{
  background: var(--ztc-bg-main-bg-1);
  color:#fff;
  cursor:pointer;
  border:none;
  font-size: 16px;
  text-transform: uppercase;
  /* font-family: var(--myriadpro-bold); */
}
.toggle-sidebar{
  position:absolute;
  height: 205px;
  width:48px;
  text-align:center;
  cursor:pointer;
  background: #660030;
  top: 50%;
  margin-top: -80px;
  left:-48px;
  line-height:48px;
  transform: rotate(180deg);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  border-radius: 0 10px 10px 0;
}
.toggle-sidebar:before{
  content:'COST CALCULATOR';
  font-size: 15px;
  color:#fff;
  /* writing-mode: vertical-rl; */
  /* text-orientation: mixed; */
  /* transform: rotate(303deg); */
  font-weight: 700;
    letter-spacing: .5px;
}
.sidebar-form.active .toggle-sidebar {
    top: 6px;
    left: auto;
    right: 6px;
    transform: translateY(0);
    width: 35px;
    height: 35px;
    line-height: 34px;
    margin-top: 0;
    border-radius: 0;
}


/* .sidebar-form.active .toggle-sidebar::before {
  border-radius: 5px;
  background-color: #fff799; 
    color: #000;
} */
.toggle-sidebar.active:before{
  content:'\f00d';
  font-family: fontAwesome;
  font-size: 18px;
  font-weight: 100;
  transition: all ease-in-out 300ms;
}
@media(max-width:768px) {
  .toggle-sidebar { height: 122px;}
  .sidebar-form{
    width:100%;
    /* height:100%; */
    right:0;
    top: 100%;
  }
  .sidebar-form.active{
    top: 0;
  }
    .sidebar-form .toggle-sidebar {
        top: auto;
        transform: rotate(0);
        transition: 0.5s;
        position: fixed;
        right: 0;
        left: 0;
        width: 100%;
        border-radius: 0;
        bottom: 0;
        writing-mode: rl-tb;
        height: auto;
        font-size: 18px;
        padding: 10px 0;
        outline: 1px solid #8f0044;
        outline-offset: -7px;
 }
  .sidebar-form.active .toggle-sidebar {
    top: 8px;
    left: auto;
    right: 8px;
    transform:translateY(0);
    width: 35px;
    height: 35px;
    line-height: 34px;
    margin-top: 0;
    border-radius: 0;

  }
  .toggle-sidebar { width: 35px; left: -35px; line-height: 34px;height: 155px;}
  .scroll{
    width:100%;
    height:100%;
    overflow-y:auto;
  }
  .content{
    padding:50px 50px;
  }
  .toggle-sidebar:before { font-size: 15px;}
  .sidebar-form.active .toggle-sidebar:hover::before {
  border-radius: 5px;
  background-color: transparent; 
    color: #fff;
}
.sidebar-form.active .toggle-sidebar{
    outline: none;
}
}