<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
  padding: 0;
  background: #fff;
}

.sidebar-content {
  background: #fff;
  padding: 20px;
  text-align: center;
}

p,
h6 {
  font-size: 16px;
  line-height: 22px;
  color: #4a4a4a;
  font-weight: 400;
}

h1 {
  font-size: 40px;
  font-weight: 200;
  margin: 0;
}

h2 {
  margin: 30px 0 10px 0;
  font-size: 26px;
  font-weight: bold;
  color: #284356;
}

h6 {
  font-family: Manrope, sans-serif;
  margin-bottom: 5px;
}

p {
  word-wrap: break-word;
  margin: 20px 0 10px 0;
}

input[type='radio'] {
  display: none;
  width: 23px;
  height: 22px;
  margin-top: 10px;
}

input[type='radio'] + label {
  display: inline-block;
  width: 24px;
  height: 24px;
  position: relative;
  padding: 0 11px;
  margin-top: 8px;
  cursor: pointer;
  vertical-align: bottom;
  animation: none;
  background-color: rgb(0 0 0 / 0%);
}

input[type='radio'] + label::before,
input[type='radio'] + label::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition-property: transform, border-color;
}

input[type='radio'] + label::before {
  box-sizing: border-box;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border: 2px solid #9b9b9b;
}

input[type='radio'] + label::after {
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  transform: translate(-50%, -50%) scale(0);
  background-color: #00a3e7;
}

input[type='radio']:checked + label::before {
  border-color: #00a3e7;
  animation: ripple 0.2s linear forwards;
}

input[type='radio']:checked + label::after {
  transform: translate(-50%, -50%) scale(1);
}

.white-logo {
  width: 130px;
}

.form-inline .form-control.input-email {
  width: 320px;
}

.logo-icon {
  width: 153px;
  padding: 20px 0;
}

.unsubscribe-graphic {
  width: 258px;
}

.unsubscribe-form-label {
  font-size: 16px;
  font-weight: bold;
  border-bottom: 1px solid #e9ecf0;
  margin-bottom: 20px;
}

.unsubscribe-option {
  display: flex;
  justify-content: space-between;
  text-align: left;
}

.unsubscribe-option-desc {
  font-size: 14px;
  line-height: 18px;
  color: #9b9b9b;
  margin-top: 0;
}

.unsubscribe-update-btn {
  display: block;
  font-size: 18px;
  font-weight: bold;
  margin: 70px auto;
  padding: 8px 18px;
  box-shadow: 0 2px 3px 0 rgb(0 0 0 / 14%);
}

.unsubscribe-left {
  display: inline-block;
  width: 75%;
}

.unsubscribe-right {
  display: inline-flex;
  width: 25%;
  justify-content: space-evenly;
}

.unsubscribe-form-label .unsubscribe-right {
  display: flex;
  margin: 40px 0 10px auto;
}

a:focus,
a:hover {
  text-decoration: none;
}

/* mobile view */
@media (max-width: 376px) {
  h2 {
    font-size: 24px;
  }

  p,
  h6 {
    font-size: 14px;
  }

  .unsubscribe-option-desc {
    font-size: 12px;
  }

  br {
    display: none;
  }

  .logo-icon {
    width: 109px;
  }

  .unsubscribe-graphic {
    width: 198px;
  }

  .unsubscribe-update-btn {
    font-size: 16px;
    margin: 40px auto;
  }

  .unsubscribe-left {
    width: 65%;
  }

  .unsubscribe-right {
    width: 35%;
    justify-content: space-around;
  }
}

@keyframes ripple {
  0% {
    box-shadow: 0 0 0 1px rgb(0 0 0 / 0%);
  }

  50% {
    box-shadow: 0 0 0 10px rgb(0 0 0 / 10%);
  }

  100% {
    box-shadow: 0 0 0 10px rgb(0 0 0 / 0%);
  }
}
</pre></body></html>