body {
    font-family: 'Matterhorn', Arial;
    font-size: 1rem;
    margin: 0;
    padding: 0;
    color: #555;
    background: #1e1922;
    }

    @font-face {
    font-family: 'Matterhorn';
		src:
	        url('/css/fonts/matterhorn-regular.ttf') format('truetype'), /* Safari, Android, iOS */
	        url('/css/fonts/matterhorn-regular.woff') format('woff'), /* Modern Browsers */
	        url('/css/fonts/matterhorn-regular.svg#webfont') format('svg'); /* Legacy iOS */
    }

form {
    margin: 0;
    padding: 0;
}

input, button, select {
	font-size: 1rem;
}

a {
    text-decoration: none;
    color: #125691;
}

a:visited {
    text-decoration: none;
    color: #2AA2D5;
}

a:hover {
    text-decoration: underline;
    color: #1761A2;
}

a:active {
    text-decoration: none;
}

:focus-visible {
    outline: 2.5px solid #000 ;
}

img {
    border: 0;
    display: inline-block;
    max-width: 100%;
    height: auto;
}

nav {
	margin: 0;
}

.window {
    margin: 0 auto;
}

.main-content {
    background: #FFF;
    min-height: 400px;
    box-shadow: 1px 1px 3px 1px #dde4eb;
}

.main-wrapper {
    position: relative;
    z-index: 1000;
}

.main-wrapper, .footer {
	margin: auto;
}

.main-content-container {
    padding: 1.2rem 1rem;
}

.page_index .main-content-container + img {
	display: block;
	width: auto;
	position: relative;
	top: 0;
	left: 0;
	margin: 0 auto 1rem auto;
	padding: 1rem;
}

.page_index .main-content-container h1 span {
    display: block;
    margin-top: 1rem;
    font-weight: normal;
    font-size: .65em;
}

.contentDebug a {
    background-color: #FF00FF;
    color: #EFEFEF;
    padding: 2px;
    border: 2px dashed #0000FF;
    box-shadow: 2px 2px 5px #88FF88;
    text-shadow: 1px 1px #999;
    border-radius: 5px;
    display: inline-block;
    -webkit-animation: conD 2s linear .5s 1;
    animation: conD 2s linear .5s 1;
}

.main-content .contentDebug a {
    -webkit-animation: conDR 2s linear .5s 1;
    animation: conDR 2s linear .5s 1;
}

.contentDebug a:hover {
    transform: rotate(2deg);
    -ms-transform: rotate(2deg); /* IE 9 */
    -webkit-transform: rotate(2deg); /* Safari and Chrome */
}

@keyframes conD {
    0% {
        transform: rotate(0deg);
        background-color: #FF00FF;
        color: #FFF;
    }
    30% {
        transform: rotate(360deg);
        background-color: #AA00AA;
    }
    60% {
        transform: rotate(0deg);
        background-color: #AA99AA;
    }
    90% {
        trasform: rotate(-360deg);
        background-color: #FF00FF;
        color: #EFEFEF;
    }
}

@keyframes conDR {
    0% {
        transform: rotate(0deg);
        background-color: #FF00FF;
        color: #FFF;
        margin-left: 0;
    }
    30% {
        transform: rotate(-360deg);
        background-color: #AA00AA;
        margin-left: 50%;
    }
    60% {
        transform: rotate(0deg);
        background-color: #AA33AA;
        margin-left: 0%;
    }
    90% {
        trasform: rotate(360deg);
        background-color: #FF00FF;
        color: #EFEFEF;
        margin-left: 0;
    }
}

.left-nav {
    position: absolute;
    margin: 0;
    left: 0;
    background: #0091ca;
    z-index: 10;
    transform: translateX(-100vw) translateY(0rem);
    transition: transform .5s;
}

.left-nav.active {
	transform: translateX(0) translateY(0rem);
}

.nav-icon {
    padding: .3rem;
    cursor: pointer;
}

.nav-icon.active, .nav-icon.active:hover, .icon-flyout.active {
    background: #80d5f7;
}

.nav-icon:hover {
    background: #80d5f7;
}

.menu-icon button {
		width: 3rem;
		height: 3rem;
    border: 1px solid #e4e4e4;
    background: url('/images/icons/icon-menu.png') no-repeat 9px 14px, linear-gradient(to bottom,  #ffffff 0%,#f8f8f8 50%,#f2f2f2 100%);
}

.home-icon a {
		display: block;
		width: 3rem;
		height: 3rem;
    border: 1px solid #e4e4e4;
    background: url('/images/icons/icon-home.png') no-repeat 10px 12px, linear-gradient(to bottom,  #ffffff 0%,#f8f8f8 50%,#f2f2f2 100%);
}

.search-icon button {
		width: 3rem;
		height: 3rem;
    border: 1px solid #e4e4e4;
    background: url('/images/icons/icon-mag.png') no-repeat 9px 11px, linear-gradient(to bottom,  #ffffff 0%,#f8f8f8 50%,#f2f2f2 100%);
}

.contact-icon a {
		display: block;
		width: 3rem;
		height: 3rem;
    border: 1px solid #e4e4e4;
    background: url('/images/icons/icon-contact.png') no-repeat 8px 14px, linear-gradient(to bottom,  #ffffff 0%,#f8f8f8 50%,#f2f2f2 100%);
}

.icon-flyout {
    opacity: 0;
    visibility: visible;
    position: absolute;
    z-index: 100;
    top: 0;
    left: 0;
    width: 0;
    overflow: hidden;
    background: #80d5f7;
    transform: translateX(3.75rem) translateY(0);
    transition: width .5s, opacity .5s .5s;
}

.icon-flyout.active {
	opacity: 1;
	visibility: visible;
	width: 17.5rem;
	transition: width .5s, visibily 0s, opacity 0s;
}

.icon-flyout > div {
    background: #80d5f7;
}

.category-nav ul {
    list-style: none inside none;
    margin: 0;
    padding: 0;
}

.category-nav li {
    background: linear-gradient(to bottom,  #ffffff 0%,#f8f8f8 47%,#f2f2f2 100%);
    margin: .5rem;
}

.category-nav li:first-child {
	margin-top: .3rem;
}

.category-nav li.nav-selected {
    background: #EEE;
}

.category-nav li a {
    display: block;;
    color: #0091ca;
    white-space: nowrap;
    padding: .75rem .5rem;
}

.category-nav li a:hover {
    background: linear-gradient(to bottom,  #0e3067 0%,#1f4582 67%,#1f4582 100%);
    text-decoration: none;
    color: #ffffff;
}

.search-form-container {
    top: 7.2rem;
}

.icon-flyout > div.search-form {
    padding: .5rem;
}

.search-form {
	padding-top: .5rem;
}

.search-form-container form {
	display: flex;
	flex-direction: column;
}

.search-form button {
	padding: .5rem 1rem;
	color: #FFF;
	background: #0090c9;
	border-color: transparent;
}

#search-field-nav, #search-field {
    border: 1px solid #e4e4e4;
    padding: .5rem 2rem .5rem .5rem;
    font-size: 1rem;
    background: linear-gradient(to bottom,  #ffffff 0%,#f8f8f8 50%,#f2f2f2 100%);
    order: 2;
}

.search-form-container input {
	margin-top: 1.2rem;
	border: 1px solid transparent;
}

.search-form-container input ~ label {
	position: absolute;
	background: linear-gradient(to bottom,  #ffffff 0%,#f2f2f2 50%,#f2f2f2 100%);
	order: 4;
	width: 0;
	white-space: nowrap;
	overflow: hidden;
	transform: translateY(1.85rem) translateX(.5rem);
	transition: width .3s;
}

.search-form-container.active input ~ label {
	transition: width .35s .15s;
}

.search-form-container input:focus ~ label {
	position: relative;
	background: transparent;
	transform: translateY(0) translateX(.5rem);
	order: 1;
	padding-bottom: .1rem;
}

.search-form-container input:focus {
	margin-top: 0;
}

.search-form-container button {
    border: 0;
    padding: .45rem;
    margin: 0;
    cursor: pointer;
    background-color: #0090c9;
    color: #ffffff;
    position: absolute;
		right: 0;
		order: 3;
		font-size: .9rem;
		transform: translate(-.65rem, 1.4rem);
}

.search-form-container input:focus ~ button {
	transform: translate(-.5rem, 1.45rem);
}

.page_search .main-content-container #search-button {
    position: relative;
    left: 0;
    top: 0;
    height: 49px;
    width: 68px;
}

.page_search .main-content-container h1 span {
    display: inline;
    font-size: 16px;
}


.page_search .main-content-container h1 strong {
    display: inline;
}

.search-form-container.active label {
	width: 10rem;
}

.question .marker {
    background: transparent url('/images/arrows.png') no-repeat top center;
    transform: translateY(1.45rem) rotateZ(270deg);
    width: 1rem;
    height: 1rem;
    position: absolute;
    transition: transform .5s;
}

.question.active .marker {
    background: transparent url('/images/arrows.png') no-repeat;
    transform: translateY(1.5rem) rotateZ(0deg);
}

.question button {
    color: #707070;
    font-size: 1.1rem;
    padding: 1.25rem 0 .5rem 2rem;
    background: transparent url('/images/line.png') no-repeat top left;
    display: block;
    width: 100%;
    border: 0;
    text-align: left;
}

.answer {
    padding: .5rem 0 .5rem 1rem;
    color: #707070;
    position: absolute;
    width: 1px;
    height: 0%;
    padding: 0;
    margin: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap; /* added line */
    border: 0;
    opacity: 0;
    transition: opacity .5s, height .5s;
}

.question.active + .answer {
	position: relative;
	width: auto;
	height: auto;
	padding: 0 0 1rem 2rem;
	margin: 0;
	overflow: auto;
	clip: auto;
	white-space: normal;
	opacity: 1;
	transition: opacity .5s, height .5s;
}

.questions-answers ul li {
    list-style-type: none;
}

.question.loading::after {
	content: '';
	position: absolute;
	width: 2rem;
	height: 2rem;
	border-radius: 100%;
	border-width:  .3rem;
	border-style: solid;
	border-color: #125691 #0091ca #0091ca #0091ca;
	animation: spin 2s infinite;
}

@keyframes spin {
	from {
		transform: translate(7rem, -50%) rotateZ(0);
	}
	to {
		transform: translate(7rem, -50%) rotateZ(360deg);
	}
}

.page_items .main-content-container h1 span {
    font-size: 15px;
    color: #707070;
    font-weight: normal;
}

h1 {
    clear: left;
}

h1 img {
    float: left;
    margin-right: 10px;
}

h1 strong, h2 strong, .page_contact h1 {
    color: #199cd8;
    display: block;
    font-weight: normal;
}

h1 strong span {
    font-size: .5em;
    color: #999;
    font-weight: normal;
    padding-left: 1em;
}

.how-can-help {
    font-size: 1rem;
}

.how-can-help strong {
    color: #199cd8;
    display: block;
    font-weight: normal;
}

.how-can-help span {
    font-size: 0.7em;
    color: #555;
    font-weight: normal;
}

#homepage-qa h1 {
    margin-top: 15px;
}

.page_index .main-content-container h1 span .active-faq, .page_index .main-content-container h1 span a,
.page_items .main-content-container h1 span .active-faq, .page_items .main-content-container h1 span a
{
    display: inline-block;
    margin-right: 20px;
}

.active-faq {
    color: #108bce;
    border-bottom: 3px solid #108bce;
    padding-bottom: 5px;
}

.page_index .main-content-container h1 span a, .page_items .main-content-container h1 span a {
    color: #90dbf6;
}

.page_items .main-content-container h1 strong, .page_items .main-content-container h1 strong span {
    padding-top: 15px;
}

.contact-container {
    min-height: 300px;
    clear: left;
}

.phone {
    padding-right: 30px;
    float: left;
}

.phone .canada {
    background: transparent url('/images/icon-can.png') no-repeat;
    min-height: 35px;
    padding-left: 40px;
    padding-top: 10px;
}

.phone .us {
    background: transparent url('/images/icon-us.png') no-repeat;
    min-height: 35px;
    padding-left: 40px;
    padding-top: 10px;
}

.page_index .category-container {
    display: flex;
    align-items: flex-end;
}

.page_index .category {
    position: relative;
    margin-right: .7em;
    padding: .5rem 1px .5rem 1px;
    background: -webkit-linear-gradient(#FFF, #F6F6F6); /* For Safari 5.1 to 6.0 */
    background: linear-gradient(#FFF, #F6F6F6);
    border-style: solid;
    border-color:#E4E4E4;
    border-width: 1px 1px 0 1px;
    border-radius: 1em 1em 0 0;
    height: 4.5rem;
    cursor: pointer;
    transition: all .5s;
}

.page_index .category.active, .page_index .category:hover {
    background: linear-gradient(#3FB4E5, #8FCDF1);
    border-color:#E4E4E4;
    cursor: auto;
    height: 4.75rem;
}

.category.active::after {
    content: '';
    width: 1rem;
    height: 1rem;
    background: #FFF;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 4.75rem) rotateZ(45deg);
}

.page_index .category .indicator {
    display: none;
}

.page_index .category.active .indicator {
    display: block;
    width: 14px;
    height: 14px;
    background: #FFF;
    position: absolute;
    margin-left: 50px;
    margin-top: 0px;
    transform: rotate(45deg);
    border-width: 1px 0 0 1px;
    border-color: #A5CCEE;
    border-style: solid;
}

.page_index.ie-8 .category.active .indicator {
    border-width: 1px 1px 0 1px;
}

.page_index .category a {
    display: block;
}

 .more-ways a, .contact-menu .category a {
	display: inline-block;
 }

 .contact-menu .category a:hover {
	outline: 1px solid #000;
 }

.line {
    background: transparent url('/images/blue-line.png') no-repeat bottom left;
    height: 1px;
    clear: left;
}

.bottom-area {
    border-top: 1px solid #d3d3d3;
    background: -webkit-linear-gradient(#f7f7f7, #FFF); /* For Safari 5.1 to 6.0 */
    background: linear-gradient(#f7f7f7, #FFF);
    padding: 1em 3em 3em;
}

.bottom-area .more-ways a {
    margin-right: 21px;
}

.bottom-area .more-ways img {
    max-width: initial;
}

.bottom-area .more-ways img:hover {
    transform: scale(1.03);
}

.bottom-area .more-ways a:last-child {
    margin-right: 0;
}

.bottom-area h3 {
    color: #2b5395;
    font-size: 1.6em;
    font-weight: normal;
    padding-bottom: 10px;
}

.ui-tooltip {
    max-width: 200px;
    border: 1px solid #999;
    border-radius: 1em;
    z-index: 50;
    box-shadow: 5px 5px 5px #CCC;
    padding: .5em;
    background: #FFF;
}

.header button {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	width: 3.5rem;
	height: 3.5rem;
	margin-right: .75rem;
	background: url('/images/icons/icon-menu.png') no-repeat 9px 14px, linear-gradient(to bottom,  #ffffff 0%,#f8f8f8 50%,#f2f2f2 100%);
	border-color: #0091ca;
	border-style: solid;
	border-width: .3rem;
	cursor: pointer;
}

.header button:hover {
	border-color: #80d5f7;
}

.header button strong, .hidden {
	position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap; /* added line */
      border: 0;
}

.header-inside {
	display: flex;
	flex-direction: column;
}

.header-inside > * {
	flex: 1 1 auto;
	align-items: flex-end;
}

.header-group1 {
	display: flex;
}

.header-group2 {
	background: #0b2d6a;
}

.page_contact .category-container {
	display: flex;
	flex-wrap: wrap;
}

.page_contact .category-container > div {
	display: inline-flex;
	flex-direction: column;
	margin: 0 .15rem 1rem 0;
}

.page_contact .category {
    border: 1px solid #e4e4e4;
    border-radius: 1rem;
    background: linear-gradient(to bottom,  #ffffff 0%,#f8f8f8 50%,#f2f2f2 100%);
    text-align: center;
    width: 8rem;
    padding: 1rem 1rem 0;
}

.page_contact .category, .page_contact .topic {
    color: #199cd8;
    display: inline-block;
    margin-right: 1.5rem;
}

.page_contact .topic {
	margin-top: 1rem;
}

.popclick {
    width: 13px;
}

.page_contact .topic div {
    display: list-item;
    list-style: disc;
    margin-left: 1rem;
}

.page_contact .topic strong {
    color: #2b5395;
    font-size: 1.1em;
}

.page_contact .topic div {
    margin-top: 7px;
}

.page_contact .topic-container {
    clear: left;
}

.footer {
    background: url("/images/dot-pattern.gif") repeat scroll 0 0 #f5f5f5;
    border-bottom: 1px solid #dbdada;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border-left: 1px solid #dbdada;
    border-right: 1px solid #dbdada;
    border-radius: 0;
    padding: 1.5rem 0;
}

#gde_footerLegalContainer {
    color: #000000;
    font-size: .9rem;
    line-height: 1.75rem;
    padding: 1.2rem 0;
    text-align: center;
}

#gde_footerContainer {
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
    font-weight: normal;
    margin: 0 auto;
    width: 100%;
}

#gde_footerContainer .gde_footerLegalLinks, #gde_footerContainer .gde_footerLegalLinks a, #gde_footerContainer .gde_footerCopyText {
    color: #333;
}

#gde_footerContainer, #gde_footerContainer a {
    font-family: arial,helvetica,sans-serif;
}

#gde_footerContainer, #gde_footerContainer a {
    font-family: arial,helvetica,sans-serif;
}

#gde_footerContainer a {
    padding: 0 .5rem;
}

.gde_footerCopyText {
    padding-top: 20px;
}

ul {
    list-style-type: none;
}

.main-content .window {
    padding-left: 0;
}

.wFormContainer {
    font-family: 'Matterhorn', Arial;
    width: 100%;
    border: none;
    padding: 0 !important;
}

.wFormContainer h3 {
    color: #199cd8;
    font-size: 27px;
    font-weight: normal;
}

.wForm label, .wForm .label {
    vertical-align: middle;
}

.wFormContainer input {
  border-style: solid;
  border-width: 1px;
  border-color: rgb( 223, 225, 225 );
  background-color: rgb( 255, 255, 255 );
  width: 270px;
  height: 33px;
  box-shadow: 1px 2px 5px #dfe1e1 inset;
  -moz-box-shadow: 1px 2px 5px #dfe1e1 inset;
  -webkit-box-shadow: 1px 2px 5px #dfe1e1 inset;
  padding-left: 10px;
}

.wFormContainer .oneChoice input {
    width: .9em;
    height: .9em;
}

.wForm select {
    font-size: 12px;
    height: 40px;
    text-transform: uppercase;
    width: 283px;
    display: inline;
}

.wForm .inputWrapper {
    display: inline;
    vertical-align: middle;
}

.wForm fieldset {
    border: none;
    margin-left: 0;
    padding: 0 0 15px;
}

/*.wForm .oneField {
    padding: 2px 35px;
}*/

#tfa_825-L {
    margin-top: 10px;
    font-weight: bold;
}


.wFormContainer input.primaryAction {
    background: #2799d4;
    border: none;
    color: #ffffff;
    text-transform: uppercase;
    width: 130px;
    height: 35px;
    box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
    border-radius: 5px;
}

.wForm .label.reqMark:before {
    color: #f00;
    content: " *";
    font-size: 100%;
    margin-right: 3px;
}

.wForm .label.reqMark:after {
    display: none;
}

#tfa_0 {
    background: #ffffff; /* Old browsers */
    background: -moz-linear-gradient(top,  #ffffff 0%, #f4f4f4 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#f4f4f4)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #ffffff 0%,#f4f4f4 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #ffffff 0%,#f4f4f4 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #ffffff 0%,#f4f4f4 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #ffffff 0%,#f4f4f4 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f4f4f4',GradientType=0 ); /* IE6-9 */
    border: 1px solid #f0f0f0;
    border-radius: 11px;
    margin-top: 20px;
    padding: 20px 25px;
}

#tfa_819-L, #tfa_979-L, #tfa_69-L, #tfa_820-L {
    font-size: 18px;
    color: #199cd8;
    margin: 20px 0;
}

#tfa_819, #tfa_69 {
    border-bottom: 1px solid #cdcdcd;
    padding-bottom: 15px;
}

#tfa_936-L, #tfa_158-L {
    font-size: 13px;
    font-weight: bold;
    margin-top: 5px;
    }

.logo-dmr {
    background: url("/contentImages/contact/contact-DMR.png") no-repeat top right;
    height: 150px;
    left: 768px;
    position: absolute;
    top: 200px;
    width: 150px;
}

.logo-dma {
    background: url("/contentImages/contact/contact-DMA.png") no-repeat top right;
    height: 150px;
    left: 768px;
    position: absolute;
    top: 160px;
    width: 150px;
}

.logo-ddc {
    background: url("/contentImages/contact/contact-DDC.png") no-repeat top right;
    height: 150px;
    left: 768px;
    position: absolute;
    top: 200px;
    width: 150px;
}

.logo-bddvd {
    background: url("/catImages/source/category/BDDVDHelp.png") no-repeat top right;
    height: 150px;
    left: 768px;
    position: absolute;
    top: 200px;
    width: 150px;
}

.logo-marvel {
    background: url("/contentImages/contact/contact-MARVEL.png") no-repeat top right;
    height: 150px;
    left: 768px;
    position: absolute;
    top: 200px;
    width: 150px;
}

.wFormContainer p.required span {
    color: #f00;
}

.wFormContainer h3 span {
    font-style: italic;
    font-size: 15px;
}

.wForm fieldset .preField {
    min-width: 70px;
}

.wForm label.preField {
    min-width: 130px;
}

.wForm div > div.oneField, .wForm fieldset > div.oneField, .wForm form > div.oneField, .wForm fieldset, .wForm .matrixLayout, .wForm .gridLayout, .wForm h4, .wForm .wfPagingButtons, .wForm .actions {
    margin-top: 0px;
}

.wFormContainer .wFormTitle {
    padding: 0;
    margin-bottom: 0;
}

.wFormContainer .supportInfo {
    display: none;
}

.hoverpop {
    z-index: 1;
}

fieldset {
    z-index: 0;
}

.popclick {
    display: inline-block;
    height: 14px;
    width: 12px;
    background: url('/images/icons/questionmarkplaceholder.png') no-repeat top left;
}

.popup {
    border-radius: 1em;
    border: .1em solid #e4e4e4;
    background: #FFF;
    background: linear-gradient(#fff, #f6f6f6);
    padding: 1em;
    position: absolute;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 1s;
}

.popup.active {
    opacity: 1;
    visibility: visible;
}

.embedded-messaging {
	position: relative;
	z-index: 1001;
}

@media (min-width: 43rem) {
	body {
		background: #1e1922 url("/images/background-blue.jpg") no-repeat center top;
	}
	.window {
		min-width: 100%;
	}
	.header {
	    padding-top: 2rem;
	}
	.header-group1 {
      background: #0b2d6a;
      padding: .5rem 0 0 .5rem;
  }
  .header-group2 {
      display: flex;
  }
	.main-wrapper, .footer {
		max-width: 90%;
	}
	.main-content-container {
      padding: 3rem;
	}
	.question button, .answer {
		max-width: 38rem;
	}
	.header button {
		display: flex;
	}
}

@media (min-width: 71rem) {
	.window {
		min-width: 43rem;
	}
	.main-wrapper, .footer {
		max-width: 63rem;
	}
	.header-inside {
		flex-direction: row;
	}
	.question button, .answer {
		max-width: 38rem;
	}
	.header button {
		display: none;
	}
	.left-nav, .left-nav.active {
		position: fixed;
		transform: translateX(-6.25rem) translateY(0);
		left: auto;
	}
	.left-nav {
		transform: translateX(-3.75rem) translateY(0);
	}
	.left-nav.scroll {
		top: 0;
	}
	.page_index .main-content-container + img {
		right: .5em;
		top: 26em;
		height: auto;
		position: absolute;
		margin: 0;
		left: auto;
		max-width: 20rem;
		padding: 0;
	}
	.bottom-area .more-ways img {
		max-width: 100%;
	}
}

@media (prefers-reduced-motion) {
  *, *::before, *::after {
    transition: none !important;
  }
}
