@charset "utf-8";
/* CSS Document */

.reqform_trigger {
  position: fixed;
  top: 340px;
  background: #faf565;
  color: #171717;
  font-size: 16px;
  font-weight: 500;
  height: 60px;
  line-height: 60px;
  transform: rotate(-90deg);
  display: flex;
  padding: 0 24px;
  border: 1px solid #171717;
  border-radius: 20px 20px 0 0;
  right: -121px;
  z-index: 3;
  cursor: pointer;
  align-items: center;
  gap: 7px;
  &::after {
    content: "";
    width: 21px;
    height: 21px;
    background: url(../images/icon/btn-arrow-icon.svg) no-repeat center;
    transform: rotate(92deg);
    background-size: 21px;
    display: inline-flex;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
    padding: 8px;
  }
  &:hover { 
    background: #000;
    color: #fff;
    &::after {
      filter: contrast(0) brightness(5) invert(0);
     } 
  }
}

aside.flyout {
  width: 500px;
  position: fixed;
  z-index: 3;
  right: -610px;
  top: 220px;
  background: var(--white);
  border: 2px solid #707070;
  padding: 40px;
  border-radius: 0 0 0 20px;
  transition: all ease-out 0.3s !important;
  -webkit-transition: all ease-out 0.3s !important;
  -moz-transition: all ease-out 0.3s !important;
  -ms-transition: all ease-out 0.3s !important;

  .rtformtitle {
    width: 100%;
    font-size: 24px;
    color: #171717;
    margin-bottom: 25px;
    font-family: "IBM Plex Serif";
    font-weight: 500;
    line-height: 1;
  }

  .closeflyout {
    background: #171717;
    position: absolute;
    transform: rotate(-90deg);
    color: var(--white);
    padding: 12px 25px;
    font-size: 18px;
    font-weight: 600;
    left: -90px;
    border-radius: 20px 20px 0 0;
    top: 42px;
    z-index: -2;
    cursor: pointer;

    & span {
      width: 22px;
      height: 22px;
      display: inline-flex;
      margin: 0 0 0 10px;
      border: 2px solid rgba(255, 255, 255, 0.6);
      align-items: center;
      justify-content: center;
      border-radius: 50%;

      & img {
        width: 10px;
      }
    }
  }
  .button.submitbtn:hover { 
    background-color: #faf565 !important;
    border-color: #faf565 !important;
  }
}

aside.flyout.open {
  right: 0;
  transition: all ease-out 0.3s !important;
  -webkit-transition: all ease-out 0.3s !important;
  -moz-transition: all ease-out 0.3s !important;
  -ms-transition: all ease-out 0.3s !important;
}

@media (max-width: 1599.98px) {}

@media (max-width: 1439.98px) {}

@media (max-width: 1199.98px) {}

@media (max-width: 991.98px) {}

@media (max-width: 575.98px) {
  .reqform_trigger {
      position: fixed;
      top: 340px;
      background: #faf565;
      color: #171717;
      font-size: 14px;
      font-weight: 600;
      height: 48px;
      line-height: 52px;
      transform: rotate(-90deg);
      display: block;
      padding: 0 17px;
      border: 1px solid #171717;
      border-radius: 10px 10px 0 0;
      right: -87px;
      z-index: 3;
      cursor: pointer;
      display: none;
  }

  aside.flyout {
      width: 100vw;
      top: 105px;
      & .closeflyout {
          background: transparent;
          padding: 0px;
          left: 9px;
          /* border-radius: 20px 20px 0 0; */
          top: 10px;
          z-index: -1;
          font-size: 00;
          cursor: pointer;
          height: 25px;
          width: 25px;
          & span {
            width: 22px;
            height: 22px;
            display: inline-flex;
            margin: 0 0 0 0px;
            border: 2px solid rgba(255, 255, 255, 0.6);
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin-bottom: 0 !important;
            filter: brightness(0) invert(0);
          }
      }
  }
}