@import "https://storage-asset.msi.com/frontend/css/common-creation-font.css";
* {
  border: 0;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ol, ul, li {
  list-style: none;
}

button, select {
  appearance: none;
  outline: none;
}

a {
  outline: none;
  text-decoration: none;
  appearance: none;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset;
}

.input--hidden {
  display: none !important;
}

/* Neutralise the Brevo JS anchor so it has zero layout impact */
#sib-container {
  all: unset !important;
  display: contents !important;
}

/* Hide Brevo's loader spinner inside our custom button */
.subscribe .sib-form-block__button {
  background: var(--color-main) !important;
  color: #fff !important;
  border: none !important;
  width: 100% !important;
  padding: 10px !important;
  font-size: 16px !important;
  border-radius: 3px !important;
  cursor: pointer !important;
  display: block !important;
}
.subscribe .sib-form-block__button:hover {
  background: #fff !important;
  color: var(--color-main) !important;
}
@media (min-width: 996px) {
  .subscribe .sib-form-block__button {
    width: 22% !important;
  }
}
.subscribe .sib-hide-loader-icon {
  display: none !important;
}

.sib-form {
  text-align: left;
}

/* Field-level validation errors */
.subscribe .field-error {
  display: none;
  color: #d93025;
  font-size: 13px;
  margin-top: 4px;
  line-height: 1.4;
}
.subscribe .has-error input,
.subscribe .has-error select {
  border-color: #d93025 !important;
}
.subscribe .has-error.form-checkbox label::before {
  border-color: #d93025 !important;
}
.sib-form-message-panel {
  padding: 12px 16px;
  border-radius: 3px;
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.4;
  display: none;
}
.sib-form-message-panel.sib-form-message-panel--active {
  display: flex !important;
}
.sib-form-message-panel__text {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sib-form-message-panel .sib-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
#error-message {
  color: #661d1d;
  background-color: #ffeded;
  border: 1px solid #ff4949;
}
#error-message .sib-icon {
  fill: #661d1d;
}
#success-message {
  color: #085229;
  background-color: #e7faf0;
  border: 1px solid #13ce66;
}
#success-message .sib-icon {
  fill: #085229;
}

.subscribe {
  position: relative;
  --font-shadow: #fff 1px 1px 3px;
  --color-main: #2177b2;
  background: url("../images/subscribe-bg-xs.jpg") bottom center no-repeat ;
  background-size: cover;
  background-attachment: fixed;
  text-align: center;
  padding: 25px;
  align-items: center;
  min-height: 100vh;
  color: #ffffff;
}
@media (min-width: 996px) {
  .subscribe {
    background: url("../images/subscribe-bg.jpg") bottom center no-repeat ;
    background-size: cover;
    overflow-y: hidden;
    text-align: left;
    padding: 0;
    display: flex;
  }
  .subscribe::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 41%;
    height: 100%;
    background: linear-gradient(to bottom, #101217 0%, #181c20 50%, #080909 100%);
    opacity: 0.6;
  }
}
.subscribe .logo img {
  height: 50px;
}
@media (min-width: 996px) {
  .subscribe .logo {
    margin-left: -5%;
  }
  .subscribe .logo img {
    height: 100px;
  }
}
@media (min-width: 1600px) {
  .subscribe .logo {
    position: absolute;
    top: 0;
    left: 2%;
    margin-left: 0;
  }
  .subscribe .logo img {
    height: 150px;
  }
}
.subscribe .wrapper {
  z-index: 2;
}
@media (min-width: 996px) {
  .subscribe .wrapper {
    width: 50%;
    margin-left: 5%;
  }
}
.subscribe h1 {
  font-size: 26px;
  padding-bottom: 10px;
  color: #fff;
  max-width: 500px;
}
.subscribe h1 span {
  display: block;
}
@media (min-width: 996px) {
  .subscribe h1 {
    font-size: 30px;
  }
  .subscribe h1 span {
    display: inline-block;
  }
}
@media (min-width: 1600px) {
  .subscribe h1 {
    max-width: none;
  }
}
.subscribe p {
  font-size: 17px;
  padding-bottom: 25px;
  color: #eee;
  max-width: 400px;
}
@media (min-width: 996px) {
  .subscribe p {
    font-size: 17px;
  }
}
@media (min-width: 1600px) {
  .subscribe p {
    max-width: none;
  }
}
.subscribe form {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, #181c20 50%, #080909 100%);
  border-radius: 10px;
  padding: 25px;
}
@media (min-width: 996px) {
  .subscribe form {
    background: none;
    padding: 25px 0 0;
    width: 60%;
  }
}
.subscribe .form-group {
  position: relative;
}
.subscribe .form-group input, .subscribe .form-group select {
  border: #ccc 1px solid;
  background: #fff;
  width: 100%;
  padding: 10px;
  font-size: 16px;
  display: block;
  margin-bottom: 15px;
  text-align: left;
  color: #333;
}
.subscribe .form-group input:focus, .subscribe .form-group select:focus {
  outline: none;
  background: #fff;
  border-color: var(--color-main);
}
.subscribe .form-group input + label span, .subscribe .form-group select + label span {
  position: relative;
  z-index: 2;
}
@media (min-width: 996px) {
  .subscribe .form-group input, .subscribe .form-group select {
    padding: 15px 10px;
  }
}
.subscribe .form-group input:focus + label,
.subscribe .form-group select:focus + label,
.subscribe .form-group input:not(:placeholder-shown) + label,
.subscribe .form-group select:valid + label {
  top: -0.7em;
  left: 0.5em;
  color: var(--color-main);
  font-size: 0.8em;
}
.subscribe .form-group input:focus + label::before,
.subscribe .form-group select:focus + label::before,
.subscribe .form-group input:not(:placeholder-shown) + label::before,
.subscribe .form-group select:valid + label::before {
  content: "";
  position: absolute;
  background: #fff;
  height: 20px;
  width: 100%;
  left: 0;
  top: 0%;
}
.subscribe .form-group label {
  position: absolute;
  top: 10px;
  left: 0.5em;
  padding: 0 0.2em;
  color: #aaa;
  font-size: 1em;
  transition: all 0.3s ease;
  pointer-events: none;
}
@media (min-width: 996px) {
  .subscribe .form-group label {
    top: 15px;
  }
}
.subscribe .form-group.select::after {
  content: "\ea11";
  font-family: "msi-icons" !important;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  font-weight: bold;
  font-size: 16px;
  color: #696969;
}
.subscribe .form-group.select select option:first-child {
  display: none;
}
.subscribe .form-group.select span {
  position: relative;
  z-index: 2;
}
.subscribe .form-checkbox {
  margin-top: 35px;
}
.subscribe .form-checkbox input[type=checkbox] {
  display: none;
}
.subscribe .form-checkbox input[type=checkbox]:checked + label::before {
  background: var(--color-main);
}
.subscribe .form-checkbox input[type=checkbox]:checked + label::after {
  content: "\ea01";
  font-family: "msi-icons" !important;
  position: absolute;
  top: 1px;
  left: 1px;
  font-weight: bold;
  font-size: 16px;
  color: #fff;
}
.subscribe .form-checkbox label {
  display: flex;
  position: relative;
  cursor: pointer;
}
.subscribe .form-checkbox label::before {
  content: "";
  display: flex;
  width: 16px;
  height: 16px;
  border-radius: 3px;
  margin-right: 8px;
  flex: 0 0 16px;
  border: var(--color-main) 1px solid;
  background-color: #fff;
}
.subscribe .notice {
  text-align: left;
  font-size: 13px;
  line-height: 1.4;
  padding-top: 10px;
  padding-bottom: 10px;
}
.subscribe .notice a {
  color: var(--color-main);
  text-decoration: underline;
}
.subscribe .notice a:hover {
  text-decoration: none;
}
@media (min-width: 996px) {
  .subscribe .notice {
    color: #fff;
    padding: 15px 0 30px;
  }
}
.subscribe button {
  background: var(--color-main);
  color: #fff;
  border: var(--color-main);
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border-radius: 3px;
  cursor: pointer;
}
.subscribe button:hover {
  background: #fff;
  color: var(--color-main);
}
@media (min-width: 996px) {
  .subscribe button {
    width: 22%;
  }
}
