#fsf-container {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 500;
  width: 0;
  overflow: hidden;
  transition: background .25s ease-out;
}

#fsf-container.is-open {
  width: 100vw;
  opacity: 1;
  display: block;
  background: rgba(0,0,0,.20);
}

#fsf-container.is-leaving {
  background: rgba(0,0,0,0)
}

.fsf-wrapper {
  min-height: 100vh;
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
  box-shadow: -10px 1px 20px 0px rgba(0,0,0,0.05);
  margin-left: 10px;
  padding: 0;
  width: 100%;
  max-width: 460px;
  margin-left: auto;
  height: 100%;
  background: white;
  position: relative;
  transform: translateX(100%);
  transition: transform 0.25s ease-out;
}

.fsf-wrapper.is-open {
  transform: translateX(0%);
}

.fsf-iframe {
  display: flex;
  flex: 1 0 auto;
  width: 100%;
  z-index: 4;
  position: relative;
}



.fsf-panel__header {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  width: 25%;
  top: 0;
  right: 0;
  padding-right: 32px;
  padding-top: 20px;
  z-index: 5;
}

.fsf-panel__close-button {
  background: #000;
  color: #fff;
  outline: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  font-size: 15px;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  position: relative;
}

.fsf-panel__close-button-svg {
  position: relative;
  margin-bottom: 2px;
}

#fsf-trigger {
  cursor: pointer !important;
}

.fsf-trigger__image {
  margin-right: 10px;
}