.shepherd-element {
    border: 3px solid #e21e2b;
    border-radius: 14px 0 14px 14px;
    color: #ffffff;
    box-shadow: 0 1px 4px rgb(0 0 0 / 80%);
    margin: 8px 30px !important;
    max-width: 320px;
}

.shepherd-has-title .shepherd-content .shepherd-header {
  padding: 18px 34px 0px 34px;
}

.shepherd-button {
  flex: 1 1 20%;
  margin: 0;
  padding: 10px 0;
}

.placeholder-btn, .placeholder-btn:hover, .placeholder-btn:active, .placeholder-btn:focus {
  border: none;
  background: none !important;
  cursor: auto;
}

.placeholder-btn:first-child, .placeholder-btn:nth-last-child(2) {
  flex: 1 1 5%;
}

.shepherd-button.link {
  background: none;
  text-decoration: underline;
  color: #e21e2b;
}

.shepherd-button.link:hover, .shepherd-button.link:active, .shepherd-button.link:focus {
  background: none;
  text-decoration: underline;
  color: #e21e2b;
}

.shepherd-element.shepherd-has-title[data-popper-placement^=bottom]>.shepherd-arrow:before {    
    background-color: #e21e2b;
}

.shepherd-header {
  border-top-left-radius: 14px;
  background-color: #fff !important;
  padding: 20px 20px 0px;
}

.shepherd-title {
  color: #e21e2b;
  font-size: 24px;
}

.shepherd-has-title .shepherd-content .shepherd-cancel-icon {
    color: #ffffff;
}

.shepherd-text {
    font-size: 14px;
    padding: 20px 34px 0px 34px;
}

.shepherd-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 18px 34px;

}

.upgrade {
  flex: 0 0 100%;
  margin-right: 0;
  padding: 6px 34px;
}

.upgrade-break, .upgrade-break:hover, .upgrade-break.active, .upgrade-break.focus {
  flex-basis: 100%;
  height: 10px;
  border: none;
  padding: 0;
  background: none !important;
  cursor: auto;
}

.hide-btn {
  display: none;
}

.shepherd-arrow:before {
  transform: none;
  top: 6px; /* because of element margin-top */
  height: 3px;
  width: 40px;
  left: -33px;
  background: #e21e2b;
}

.gt-welcome-step {
  max-width: 640px;
}

@media (max-width:767px) { 
  .shepherd-element {
    margin-left: 0px !important;
    margin-top: 30px !important;
  }
  
  .shepherd-arrow:before {    
    height: 40px;
    width: 3px;
    top: -33px;
  }
}


/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 22px;
  }
  
  /* Hide default HTML checkbox */
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  /* The slider */
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #d2d6de;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider {
    background-color: #e21e2b;
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px #e21e2b;
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(18px);
    -ms-transform: translateX(18px);
    transform: translateX(18px);
  }

  .gt-form {
      margin: 20px 0;
  }