.ws-scrollablefullwidthpanel {
  overflow-x:hidden;
}

.ws-scrollablefullwidthpanel .panels {
  display:flex;
  flex-wrap: nowrap;
  margin-bottom: 2rem;
  transition: all 0.2s ease-in-out;
}

.ws-scrollablefullwidthpanel .panels .ws-scrollablepanel {
  width:100%;
  position: relative;
  flex: 0 0 100%;
  display: grid;
}

.ws-scrollablefullwidthpanel .ws-panel-background {
  padding: 2rem 1.5rem;
  text-align: center;
  border-radius: 2rem;
  background-size: cover;
  width:100%;
}

.ws-scrollablefullwidthpanel .ws-panel-background::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2rem;
}

.ws-scrollablefullwidthpanel .ws-panel-content {
  position: relative;
  z-index: 2;
}

.ws-scrollablefullwidthpanel .ws-panel-content .ws-fullwidthpanel-title,
.ws-scrollablefullwidthpanel .ws-panel-content .ws-fullwidthpanel-body {
  color:#fff;
}

.ws-scrollablefullwidthpanel .ws-panel-content .ws-fullwidthpanel-title {
  margin-bottom: 2rem;
}

.ws-scrollablefullwidthpanel .ws-panel-content .ws-fullwidthpanel-body {
  margin-bottom: 3rem;
}

.ws-scrollablefullwidthpanel .ws-fullwidthpanel-buttons {
  display: flex;
  justify-content: center;
  grid-gap: 1rem;
}

.ws-scrollablefullwidthpanel .ws-fullwidthpanel-button {
  color:#fff;
  border:solid 1px #fff;
  border-radius: 5rem;
  line-height: 1;
  display: inline-block;
  padding: 1rem 1.25rem;
  font-weight: 600;
}

.ws-scrollablefullwidthpanel .ws-controls {
  display: flex;
  justify-content: end;
  grid-gap: 1rem;
}

.ws-scrollablefullwidthpanel .ws-controls button {
  border:0;
  background: #fff;
  border-radius: 5rem;
  width:2.5rem;
  height: 2.5rem;
  line-height: 0;
  display: grid;
  align-content: center;
  justify-content: center;
  border-radius: 4rem;
  border: solid 1px var(--ws-purple);
}

@media screen and (max-width: 767px) {

  .ws-scrollablefullwidthpanel .ws-fullwidthpanel-buttons {
    flex-direction: column;
  }

  .ws-scrollablefullwidthpanel .ws-fullwidthpanel-button {
    width:100%;
  }
}

@media screen and (min-width: 768px) {

  .ws-scrollablefullwidthpanel .ws-panel-background {
    padding: 3rem;
  }

  .ws-scrollablefullwidthpanel .ws-panel-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 5rem;
  }

  .ws-scrollablefullwidthpanel .ws-panel-content .ws-fullwidthpanel-title {
    margin-bottom: 3rem;
  }

  .ws-scrollablefullwidthpanel .ws-fullwidthpanel-button:hover {
    background-color: #fff;
    color: #262B65;
  }
  
  .ws-scrollablefullwidthpanel .ws-controls button:hover {
    background-color: var(--ws-purple);
    cursor: pointer;
  }

  .ws-scrollablefullwidthpanel .ws-controls button:hover svg path {
    fill:#fff;
  }
}