/* Shepherd 기본 스타일 덮어쓰기 */
.shepherd-element {
  background-color: inherit;
  border-radius: 0;
  box-shadow: none;
}
.shepherd-header {
  padding: 0;
  font-size: 1.25rem;
  font-weight: bold;
  color: #333;
}
.shepherd-cancel-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  color: #9ea1a5;
  line-height: 1;
}
.shepherd-cancel-icon > span {
  line-height: 1;
}
.shepherd-text {
  padding: 40px;
  background-color: white;
  border: 1px solid #eff1f3;
  font-size: 1rem;
  color: #666;
}
.shepherd-footer {
  display: flex;
  padding: 0;
}
.shepherd-footer .shepherd-button {
  flex: 1 0 auto;
}
.shepherd-button {
  padding: 10px;
  margin-right: 0;
  border-radius: 0;
  font-size: 14px;
  font-weight: 500;
}
.shepherd-button.shepherd-button-secondary,
.shepherd-button.shepherd-button-secondary:hover {
  background-color: #fff !important;
  color: #000;
}
.shepherd-button.shepherd-button-primary,
.shepherd-button.shepherd-button-primary:hover {
  background-color: #2c64ff;
  color: #fff;
}
.shepherd-arrow,
.shepherd-arrow:before {
  display: none;
}
.shepherd-content {
  position: relative;
}
@media (max-width: 1023.98px) {
  .shepherd-content {
    margin-top: 20px;
    padding: 0 20px;
  }
  .shepherd-cancel-icon {
    right: 40px;
  }
  .on-top .shepherd-content {
    margin-bottom: 20px;
  }
}
@media (min-width: 1024px) {
  .on-top .shepherd-content {
    margin-bottom: 40px;
  }
  .on-bottom .shepherd-content {
    margin-top: 40px;
  }
  .on-left .shepherd-content {
    margin-right: 40px;
  }
  .on-right .shepherd-content {
    margin-left: 40px;
  }
}
