* 
  .newsletter-popup {
    display: none;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    transition: all .3s ease;
  }
  .newsletter-popup .newsletter-popup-container {
    position: relative;
    display: flex;
    flex-flow: column;
    padding: 30px;
    background-color: #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    width: 500px;
    transform: scale(0.3);
    transition: all .3s ease;
  }
  .newsletter-popup .newsletter-popup-container.open {
    transform: scale(1);
  }
  .newsletter-popup .newsletter-popup-container h3 {
    font-size: 20px;
    font-weight: 500;
    margin: 0;
    padding: 10px 0 10px;
    color: #4d5561;
  }
  .newsletter-popup .newsletter-popup-container h3 i {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #4d5561;
    color: #fff;
    margin-right: 10px;
  }
  .newsletter-popup .newsletter-popup-container p {
    margin: 0;
    padding: 15px 0;
    color: #8d9092;
  }
  .newsletter-popup .newsletter-popup-container form {
    display: flex;
    padding: 15px 0 10px;
  }
  .newsletter-popup .newsletter-popup-container form input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    outline: none;
  }
  .newsletter-popup .newsletter-popup-container form input::placeholder {
    color: #8d9092;
  }
  .newsletter-popup .newsletter-popup-container form button {
    width: 200px;
    appearance: none;
    background-color: #4d5561;
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    border: 0;
    cursor: pointer;
  }
  .newsletter-popup .newsletter-popup-container form button:hover {
    background-color: #424953;
  }
  .newsletter-popup .newsletter-popup-container .newsletter-popup-close-btn {
    position: absolute;
    right: 20px;
    top: 20px;
    text-decoration: none;
    color: #ddd;
    font-size: 30px;
    line-height: 20px;
  }
  .newsletter-popup .newsletter-popup-container .newsletter-popup-close-btn:hover {
    color: #c4c4c4;
  }
  .newsletter-popup .newsletter-popup-container .newsletter-msg {
    padding: 5px 0;
  }
  .newsletter-popup.open {
    display: flex;
    background-color: rgba(0, 0, 0, 0.4);
  }
  .send-newsletter-form {
    background-color: #fff;
    width: 500px;
    margin: 0 auto;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  }
  .send-newsletter-form h1 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 25px;
    font-size: 20px;
    text-align: center;
    border-bottom: 1px solid #eceff2;
    color: #6a737f;
    font-weight: 600;
    background-color: #f9fbfc;
  }
  .send-newsletter-form h1 i {
    padding-right: 10px;
    font-size: 24px;
  }
  .send-newsletter-form .fields {
    position: relative;
    padding: 20px;
  }
  .send-newsletter-form input[type="text"] {
    margin-top: 15px;
    padding: 15px;
    border: 1px solid #dfe0e0;
    width: 100%;
    outline: 0;
    font-size: 14px;
  }
  .send-newsletter-form input[type="text"]:focus {
    border: 1px solid #c6c7c7;
  }
  .send-newsletter-form textarea {
    resize: none;
    margin-top: 15px;
    padding: 15px;
    border: 1px solid #dfe0e0;
    width: 100%;
    height: 150px;
    outline: 0;
    font-size: 14px;
  }
  .send-newsletter-form textarea:focus {
    border: 1px solid #c6c7c7;
  }
  .send-newsletter-form input[type="submit"] {
    display: block;
    margin-top: 15px;
    padding: 15px;
    border: 0;
    background-color: #cb5f51;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    width: 100%;
  }
  .send-newsletter-form input[type="submit"]:hover {
    background-color: #c15b4d;
  }
  .send-newsletter-form input[type="submit"]:disabled {
    background-color: #999999;
  }
  .send-newsletter-form .field {
    display: inline-flex;
    position: relative;
    width: 100%;
    padding-bottom: 20px;
  }
  .send-newsletter-form label {
    font-size: 14px;
    font-weight: 600;
    color: #8e939b;
  }
  .send-newsletter-form .responses {
    padding: 0;
    margin: 0;
  }
  .send-newsletter-form .multi-select-list {
    border: 1px solid #dfe0e0;
    margin: 15px 0;
    overflow-y: auto;
    max-height: 150px;
  }
  .send-newsletter-form .multi-select-list label {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #f3f3f3;
  }
  .send-newsletter-form .multi-select-list label input {
    margin-right: 15px;
  }
  .send-newsletter-form .multi-select-list label:last-child {
    border-bottom: 0;
  }
/* Toast Notification */

  .toast-notification {
    position: fixed;
    text-decoration: none;
    z-index: 999999;
    max-width: 300px;
    background-color: #fff;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    display: flex;
    padding: 10px;
    transform: translate(0, -150%);
  }
  .toast-notification .toast-notification-wrapper {
    flex: 1;
    padding-right: 10px;
    overflow: hidden;
  }
  .toast-notification .toast-notification-wrapper .toast-notification-header {
    padding: 0 0 5px 0;
    margin: 0;
    font-weight: 500;
    font-size: 14px;
    word-break: break-all;
    color: #4f525a;
  }
  .toast-notification .toast-notification-wrapper .toast-notification-content {
    font-size: 14px;
    margin: 0;
    padding: 0;
    word-break: break-all;
    color: #4f525a;
  }
  .toast-notification .toast-notification-close {
    appearance: none;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 24px;
    line-height: 24px;
    padding-bottom: 4px;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.2);
  }
  .toast-notification .toast-notification-close:hover {
    color: rgba(0, 0, 0, 0.4);
  }
  .toast-notification.toast-notification-top-center {
    transform: translate(calc(50vw - 50%), -150%);
  }
  .toast-notification.toast-notification-bottom-left, .toast-notification.toast-notification-bottom-right {
    transform: translate(0, 150%);
  }
  .toast-notification.toast-notification-bottom-center {
    transform: translate(calc(50vw - 50%), 150%);
  }
  .toast-notification.toast-notification-dark {
    background-color: #2d2e31;
  }
  .toast-notification.toast-notification-dark .toast-notification-wrapper .toast-notification-header {
    color: #edeff3;
  }
  .toast-notification.toast-notification-dark .toast-notification-wrapper .toast-notification-content {
    color: #edeff3;
  }
  .toast-notification.toast-notification-dark .toast-notification-close {
    color: rgba(255, 255, 255, 0.2);
  }
  .toast-notification.toast-notification-dark .toast-notification-close:hover {
    color: rgba(255, 255, 255, 0.4);
  }
  .toast-notification.toast-notification-success {
    background-color: #C3F3D7;
    border-left: 4px solid #51a775;
  }
  .toast-notification.toast-notification-success .toast-notification-wrapper .toast-notification-header {
    color: #51a775;
  }
  .toast-notification.toast-notification-success .toast-notification-wrapper .toast-notification-content {
    color: #51a775;
  }
  .toast-notification.toast-notification-success .toast-notification-close {
    color: rgba(0, 0, 0, 0.2);
  }
  .toast-notification.toast-notification-success .toast-notification-close:hover {
    color: rgba(0, 0, 0, 0.4);
  }
  .toast-notification.toast-notification-error {
    background-color: #f3c3c3;
    border-left: 4px solid #a75151;
  }
  .toast-notification.toast-notification-error .toast-notification-wrapper .toast-notification-header {
    color: #a75151;
  }
  .toast-notification.toast-notification-error .toast-notification-wrapper .toast-notification-content {
    color: #a75151;
  }
  .toast-notification.toast-notification-error .toast-notification-close {
    color: rgba(0, 0, 0, 0.2);
  }
  .toast-notification.toast-notification-error .toast-notification-close:hover {
    color: rgba(0, 0, 0, 0.4);
  }
  .toast-notification.toast-notification-verified {
    background-color: #d0eaff;
    border-left: 4px solid #6097b8;
  }
  .toast-notification.toast-notification-verified .toast-notification-wrapper .toast-notification-header {
    color: #6097b8;
  }
  .toast-notification.toast-notification-verified .toast-notification-wrapper .toast-notification-content {
    color: #6097b8;
  }
  .toast-notification.toast-notification-verified .toast-notification-close {
    color: rgba(0, 0, 0, 0.2);
  }
  .toast-notification.toast-notification-verified .toast-notification-close:hover {
    color: rgba(0, 0, 0, 0.4);
  }
  .toast-notification.toast-notification-dimmed {
    opacity: .3;
  }
  .toast-notification.toast-notification-dimmed:hover, .toast-notification.toast-notification-dimmed:active {
    opacity: 1;
  }
  