.empty-state {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 40px;
}

.empty-state-icon {
  width: 180px;
  height: 150px;
  border: 5px solid #B5B4B4;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 35px;
}

.empty-state-icon svg {
  width: 100px;
  height: 100px;
  fill: #B5B4B4;
}

.empty-state-content {
  flex: 1;
}

.empty-state-title {
  font-family: Buyan;
  font-weight: 700;
  font-size: 55px;
  line-height: 128%;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 45px;
  text-align: center;
}

.empty-state-button {
  background: linear-gradient(263.56deg, #FFE9C8 -4.53%, #FFD9AD 18.44%, #FFDDB5 51.46%, #FFDDB5 76.6%, #FFCC8F 111.92%), radial-gradient(55.13% 55.13% at 50% 2.23%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
  box-shadow: 0px 8.8px 0px 0px #D8A86E;
  width: 381px;
  height: 95px;
  border-radius: 24px;
  font-family: Montserrat;
  font-weight: 800;
  font-size: 25px;
  color: #584D3E;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.1s ease-in, box-shadow 0.25s ease-in;
  border: none;
  cursor: pointer;
}

.empty-state-button:before {
  content: '';
  background: radial-gradient(55.13% 55.13% at 50% 2.23%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  border-radius: 24px;
}

.empty-state-button:hover {
  box-shadow: 0px 5px 0px 0px #D8A86E;
}

.empty-state-button:active {
  box-shadow: 0px 4px 0px 0px #D8A86E;
}


@media screen and (max-width: 900px) {
    .empty-state-title {
        font-size: 50px;
        margin-bottom: 45px;
    }

    .empty-state-icon {
      width: 150px;
      height: 125px;
      margin-bottom: 30px;
    }

    .empty-state-icon svg {
      width: 70px;
      height: 70px;
      fill: #B5B4B4;
    }

  .empty-state-button {
    width: 262px;
    height: 75px;
    font-size: 16px;
    border-radius: 18px;
  }
}

@media screen and (max-width: 600px) {
  .empty-state {
    padding: 50px 14px 50px 14px;
  }

  .empty-state-title {
    font-size: 40px;
    margin-bottom: 30px;
    max-width: 309px;
  }

  .empty-state-icon {
    width: 125px;
    height: 125px;
    margin-bottom: 30px;
  }

  .empty-state-icon svg {
    width: 50px;
    height: 50px;
  }

  .empty-state-content {
    width: 100%;
  }

  .empty-state-button {
    width: 100%;
    height: 68px;
    font-size: 16px;
    border-radius: 18px;
  }
}
