@font-face {
  font-family: 'Sf Republic';
  src: url('https://helloguest.id/wp-content/uploads/2023/07/sf-new-republic.regular.ttf') format('truetype');
}

.button-style-1 {
    border: solid 1px;
    cursor: pointer;
    display: block;
    inline-size: fit-content;
    padding: 5px;
    border-radius: 8px;
    align-self: center;
}

.button-style-2 {
    border: solid 2px;
    cursor: pointer;
    display: block;
    inline-size: fit-content;
    padding: 5px 5px;
    border-radius: 10px;
    font-size: 12px;
    background: #756340;
    color: white;
    font-weight: bolder;
    align-self: center;
}

.button-style-2:hover {
    background: white;
    color: #756340;
}

/* CSS */
.button-style-3 {
  font-size: 12px;
    padding: 5px 10px;
  margin: 5px;
  border: none;
  outline: none;
  color: rgb(255, 255, 255);
  background: #111;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
  user-select: none;
    min-width: 100px;
    text-align: center;
  -webkit-user-select: none;
  touch-action: manipulation;
  align-self: center;
}

.button-style-3:before {
  content: "";
  background: linear-gradient(
    45deg,
    #ff0000,
    #ff7300,
    #fffb00,
    #48ff00,
    #00ffd5,
    #002bff,
    #7a00ff,
    #ff00c8,
    #ff0000
  );
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  -webkit-filter: blur(1px);
  width: calc(100% + 3px);
  height: calc(100% + 3px);
  animation: button-style-3 20s linear infinite;
  transition: opacity 0.3s ease-in-out;
  border-radius: 10px;
}

@keyframes button-style-3 {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}

.button-style-3:after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #222;
  left: 0;
  top: 0;
  border-radius: 10px;
}

.button-style-4 {
  align-items: center;
  background-color: #fee6e3;
  border: 2px solid #111;
  border-radius: 8px;
  box-sizing: border-box;
  color: #111;
  cursor: pointer;
  display: flex;
  font-family: Inter,sans-serif;
  font-size: 16px;
  height: 48px;
  justify-content: center;
  line-height: 24px;
  max-width: 100%;
  padding: 0 25px;
  position: relative;
  text-align: center;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  align-self: center;
}

.button-style-4:after {
  background-color: #111;
  border-radius: 8px;
  content: "";
  display: block;
  height: 48px;
  left: 0;
  width: 100%;
  position: absolute;
  top: -2px;
  transform: translate(8px, 8px);
  transition: transform .2s ease-out;
  z-index: -1;
}

.button-style-4:hover:after {
  transform: translate(0, 0);
}

.button-style-4:active {
  background-color: #ffdeda;
  outline: 0;
}

.button-style-4:hover {
  outline: 0;
}

@media (min-width: 768px) {
  .button-style-4 {
    padding: 0 40px;
  }
}

.button-style-5 {
  align-items: center;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: transparent 0 0 0 3px,rgba(18, 18, 18, .1) 0 6px 20px;
  box-sizing: border-box;
  color: #121212;
  cursor: pointer;
  display: inline-flex;
  flex: 1 1 auto;
  font-family: Inter,sans-serif;
  font-size: 12px;
  font-weight: 700;
  justify-content: center;
  line-height: 1;
  margin: 5px;
  outline: none;
  padding: 5px 10px;
  text-align: center;
  text-decoration: none;
  transition: box-shadow .2s,-webkit-box-shadow .2s;
  white-space: nowrap;
  border: 0;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  align-self: center;
}

.button-style-5:hover {
  box-shadow: #121212 0 0 0 3px, transparent 0 0 0 0;
}

.button-style-6 {
 font-family: "Sf Republic", sans-serif;
 background: black;
 color: white;
 border: none;
 border-radius: 50px;
 font-size: 12px;
 font-weight: normal;
 cursor: pointer;
 position: relative;
 z-index: 1;
 overflow: hidden;
 max-width: fit-content;
 padding: 5px 15px;
 margin: 5px 5px;
}

.button-style-6:hover {
 color: black;
}

.button-style-6:after {
 content: "";
 background: white;
 position: absolute;
 z-index: -1;
 left: -20%;
 right: -20%;
 top: 0;
 bottom: 0;
 transform: skewX(-45deg) scale(0, 1);
 transition: all 0.5s;
}

.button-style-6:hover:after {
 transform: skewX(-45deg) scale(1, 1);
 -webkit-transition: all 0.5s;
 transition: all 0.5s;
}

.button-style-6-2 {
 font-family: "Sf Republic", sans-serif;
 background: white;
 color: black;
 border: none;
 border-radius: 50px;
 font-size: 12px;
 font-weight: normal;
 cursor: pointer;
 position: relative;
 z-index: 1;
 overflow: hidden;
 max-width: fit-content;
    padding: 5px 15px;
    margin: 5px 5px;
    align-self: center;
}

.button-style-6-2:hover {
 color: white;
}

.button-style-6-2:after {
 content: "";
 background: black;
 position: absolute;
 z-index: -1;
 left: -20%;
 right: -20%;
 top: 0;
 bottom: 0;
 transform: skewX(-45deg) scale(0, 1);
 transition: all 0.5s;
}

.button-style-6-2:hover:after {
 transform: skewX(-45deg) scale(1, 1);
 -webkit-transition: all 0.5s;
 transition: all 0.5s;
}

.overlay-custom {
  display: none;  
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 4;
}

.btnhg1 {
                    display: inline-block;
                    outline: 0;
                    cursor: pointer;
                    text-align: center;
                    border: 1px solid #babfc3;
                    padding: 4px 8px;
                    min-height: 36px;
                    min-width: 36px;
                    color: #202223;
                    background: #ffffff;
                    border-radius: 4px;
                    font-weight: 500;
                    font-size: 14px;
                    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 0px 0px;
                    min-height: 28px;
}

.btnhg1:hover {
                        background: #f6f6f7;
                        outline: 1px solid transparent;
}

.btnhg2 {
                    display: inline-block;
                    outline: 0;
                    cursor: pointer;
                    text-align: center;
                    border: 1px solid #babfc3;
                    padding: 4px 15px;
                    min-height: 36px;
                    min-width: 36px;
                    color: #F3F1E7;
                    background: #636363;
                    border-radius: 100px;
                    font-weight: 500;
                    font-size: 14px;
                    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 0px 0px;
                    min-height: 28px;
}
.btnhg2:hover {
                        background: #898989;
                        outline: 1px solid transparent;
} 
