@font-face {
  font-family: GT Walsheim Pro;
  /* font may be a problem */
  src: url('https://app.feetai.com/assets/fonts/GTWalsheimProRegular.OTF');
  font-style: normal
}
.sw-insertion-point > div{
  background-color: #F27059;
  border: none;
  display: flex;
  align-items: center;
  padding: 14px;
  gap: 8px;
  border-radius: 0px;
  position: relative;
  overflow: hidden;
}

/* Removed purple corner - banner should be solid orange */
.sw_banner_text{
  margin: 0;
  padding: 0 5px;
  position: relative;
  z-index: 2;
}
.sw_banner_text p{
  margin: 0;
  font-family: GT Walsheim Pro, Verdana, serif;
  font-size: 15px;
  line-height: 19px;
  color: white;
}

.sw_banner_content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sw_profile_size {
  font-weight: 500;
}

.sw_show_another {
  font-weight: 400;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.sw_show_another:hover {
  opacity: 0.8;
}
.sw_orange{
  color: #E97354;
  font-weight: bold;
}
.sw_close-icon{
  text-align: right;
  padding: 7px 18px;
  z-index: 99;
}
.sw_close-icon svg path{
  fill: #C0CBD3;
}
.sw_close-icon img{
  filter: brightness(0.8);
}
#sw-pwa-container{
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 3px;
  background-color: rgba(0,0,0,0.1);
  width: 100%;
  z-index: 1050;
  overflow: hidden;
}
#sw-pwa-container:not(.sw_hidden){
  display:flex;
  flex-direction: column;
  justify-content: center;
}

#sw-pwa-box{
  /*border:2px inset black;*/
  margin-left: 5px;
  margin-right: -5px;
  background-color: white;
  transition: transform 0.5s ;
  transform: translateX(0);
  /*right: 0;*/
  border-radius: 10px 0 0 10px;
  flex-grow: 0;
}
.sw_collapsed{
  transform-origin: right;
}
.sw_hidden{
  display:none;
  background-color: transparent;
}

#sw-pwa-container iframe{
  width: 100%;
  height: 610px;
}
.sw_collapsed #sw-pwa-box{
  transform: translateX(100%);
}

@keyframes pulse {
  from {
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
  }
  to {
    transform: scale(1);
  }
}
