/* base style */

html, body {
    background-color: #fff;
}

/*** common css **/
body, html {
    font-weight: 400;
    font-size: 62.5%;
    overflow-x: hidden;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.container {
    padding-left: 8%;
    padding-right: 8%;
}

@media(max-width: 480px) {
    .container {
        padding-left: 7%;
        padding-right:7%;
    }
}

.main-wrapper {
    position: relative;
}

.dropanchor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}


/* adjust in article ads */
#in-article {
    margin-bottom: 3rem !important;
    margin-top: 3rem !important;
    display: block !important;
    justify-content: center !important;
}

#mid-article {
    margin-bottom: 3rem !important;
    margin-top: 3rem !important;
    display: block !important;
    justify-content: center !important;
}

.banner__form-field select {
    width: 100%;
    height: 4.2rem;
    outline: none;
    padding-left: 1rem;
}

.placeholder-option {
    color: #6c757d !important;
}

#email-validation-message.hidden,
#zip-validation-message.hidden,
#validation-message.hidden {
	position: absolute !important;
	clip: rect(1px 1px 1px 1px) !important;
	clip: rect(1px, 1px, 1px, 1px) !important;
	overflow: hidden !important;
	height: 1px !important;
	width: 1px !important;
	clip-path: inset(50%) !important;
	white-space: nowrap !important;
}


.article-content-container h1 {
    color: var(--Gray-900, #101828);

    /* text-2xl/Semibold */
    font-family: inherit;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    margin: 10px 0;
}

.article-content-container h2 {
    color: var(--Gray-900, #101828);

    /* text-2xl/Semibold */
    font-family: inherit;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    margin: 10px 0;
}
.article-content-container h3 {
    color: var(--Gray-900, #101828);

    /* text-2xl/Semibold */
    font-family: inherit;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    margin: 10px 0;
}
.article-content-container h4 {
    color: var(--Gray-900, #101828);

    /* text-2xl/Semibold */
    font-family: inherit;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    margin: 10px 0;
}

.article-content-container a {
  color: rgb(82 136 253);
  font-weight: 500;
}

.article-content-container p {
  margin-bottom: 20px;
}


 
.article-content-container ul {
  list-style-type: disc;
  margin: 1em 0;
  padding-left: 40px;
}

.article-content-container li {
  display: list-item;
  list-style-position: outside;
}

.article-content-container ol {
  list-style-type: decimal;
  margin: 1em 0;
  padding-left: 40px;
}

.article-content-container li {
  display: list-item;
  list-style-position: outside;
}

.alert-danger {
    color: rgb(255, 33, 33);
    font-weight: 700;
    font-size: 14px; 
}