@charset "utf-8";
:root {
	--color-main: #762d8d;
	--color-sub-1: #c1539a;
	--color-font-1: #454545;

	--d-mc: #9438b1;
	--d-mc-h: #b244d5;

	--d-sc: #e766b9;
	--d-sc-h: #f97dcd;

	--d-ff: "Google Sans Text", "Google Sans", Helvetica, Arial, sans-serif;
}

@font-face {
  font-family: 'Google Sans Text';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/googlesanstext/v25/5aUu9-KzpRiLCAt4Unrc-xIKmCU5qFp2i1dC.woff2) format('woff2'),
       url(../fonts/5aUu9-KzpRiLCAt4Unrc-xIKmCU5qFp2i1dC.woff2) format('woff2');
  unicode-range: U+0308, U+0530-058F, U+2010, U+2024, U+25CC, U+FB13-FB17;
}

html, body {
	color:#454545;
	font-family: var(--d-ff);
	font-size:16px;
	line-height:30px;
	letter-spacing:2px;
	margin:0px;
	padding:0px;
}

a:link { color:var(--color-main); text-decoration:none; }
a:visited { color:var(--color-main); text-decoration:none; }
a:hover { color:var(--color-sub-1); text-decoration:none; }
a:active { color:var(--color-sub-1); text-decoration:none; }

textarea {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width:100%;
	height:70px;
	border:1px #a9a9a9 solid;
	color:var(--color-font-1);
	font-family: var(--d-ff);
	font-size:16px;
	line-height:30px;
	padding:5px;
	resize:none;
}
textarea:focus {
	outline:none;
}
select {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width:100%;
	height:40px;
	border:1px #a9a9a9 solid;
	color:var(--color-font-1);
	font-family: var(--d-ff);
	font-size:16px;
	line-height:40px;
	padding:0px 5px 0px;
}

input[type=text], input[type=password], input[type=email], input[type=tel], input[type=number] {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width:100%;
	height:40px;
	border:1px #a9a9a9 solid;
	color:var(--color-font-1);
	font-family: var(--d-ff);
	font-size:16px;
	line-height:40px;
	padding:0px 5px 0px;
}
input[type=text]:focus {
	outline:none;
}

input[type="radio"] {
	width:16px;
	height:16px;
}

input[type="checkbox"] {
	width:16px;
	height:16px;
	vertical-align: middle;
}

input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
	-webkit-border-radius:2px;
	-moz-border-radius:2px;
	border-radius:2px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
	width:100%;
	height: 50px;
	border:0px;
	background-color: var(--d-mc, #9438b1);
	color:#ffffff;
	font-family: var(--d-ff);
	font-size:16px;
	line-height: 30px;
	text-align:center;
	padding:10px 0px 10px;
  outline: none;
  display: block;
  cursor: pointer;
}
input[type=submit]:hover {
	background-color: var(--d-mc-h, #b244d5);
}
.btn-form {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: 50px;
  border: 0px;
	font-family: var(--d-ff);
	font-size:16px;
  line-height: 30px;
  text-align: center;
  padding: 10px 0px 10px;
  outline: none;
  display: block;
  cursor: pointer;
}
.btn-form-back {
  background-color: #999999;
  color:#ffffff;
}
.btn-form-back:hover {
  background-color: #777777;
}

.clear_float {
	clear:both;
}

.wrapper {
	width:98%;
	max-width:1440px;
	margin:auto;
}

.hide_desktop {
	display:none;
}

.hide_mobile {
	display:block;
}

.margin_bottom {
	margin-bottom:20px;
}
.gen-margin-bottom {
	margin-bottom:16px;
}

.box_shadow {
	-moz-box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);
	-webkit-box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);
	box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);
}

.box_sizing {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.subtitle_v0 {
	font-size: 21px;
	font-weight: 700;
    color: #c1539a;
}

.subtitle_v1 {
	font-weight: 700;
  color: #c1539a;
  text-decoration: underline;
}

.btn_input {
	-webkit-appearance: none;
	-webkit-border-radius:0px;
	-moz-border-radius:0px;
	border-radius:0px;
	width:100%;
	max-width:124px;
	border:0px;
	background-color:var(--d-mc, #9d1ac5);
	color:#ffffff;
	font-family: var(--d-ff);
	font-size:16px;
	text-align:center;
	padding:10px 0px 10px;
	display: inline-block;
	cursor:pointer;
}

.permission_msg {
	color: var(--d-mc, #9d1ac5);
	font-size: 60px;
	font-weight: 700;
	text-align: center;
}

#container {
	width:100%;
	height:100%;
}

/* header setting start */
#container > #header {
	width:100%;
	background-color:#ffffff;
}
#container > #header > .wrapper > .logo_box {
	width:100%;
	max-width:285px;
	padding:20px 0px 20px;
	float:left;
}
#container > #header > .wrapper > .logo_box > a > .logo_wpedu {
	width:100%;
	max-width:285px;
	height:73px;
	background:url(../images/logo/logo_wpedu.png) no-repeat center center;
	background-size:100% auto;
}
#container > #header > .wrapper > .menubar {
	float:right;
}
/* header setting end */

#container > .page_title {
	background-color:var(--d-mc, #9d1ac5);
	color:#ffffff;
	padding:20px 0px 20px;
}
#container > .page_title > .wrapper > .title {
	font-size:36px;
	line-height:60px;
	text-align:center;
}

/* main setting start */
#main {
	width:100%;
	background-color:#fefbff;
	padding:30px 0px 30px;
}
#main > .wrapper {
	max-width:980px;
}
#main > .wrapper > .section {
	margin-bottom:20px;
}
#main > .wrapper > .content_box {
	background-color:#ffffff;
	padding: 50px;
}

.banner {
	border-top:5px var(--d-mc, #9d1ac5) solid;
}
/* main setting end */

.tdfeaturesl {
	width: 30%;
	vertical-align: top;
}
.tdfeaturesl > img {
	width: 90%;
}
.tdfeaturesr {
	vertical-align: top;
}

/* form_box setting start */
.form_box {
	background-color:#ffffff;
	padding:10px;
}
.cell_bottom {
	border-bottom:1px #ffffff solid;
}
.form_table {
	width:100%;
	height:100%;
	display:table;
}
.unfixed_table {
	width: 100%;
	display: table;
}
.unfixed_row {
	display:table-row;
}
.unfixed_cell {
	display:table-cell;
}
.fixed_table {
	width:100%;
	display:table;
}
.fixed_row {
	display:table-row;
}
.fixed_cell {
	display:table-cell;
}
.num_cell {
	width:56px;
	background-color:var(--d-mc, #9d1ac5);
	color:#ffffff;
	text-align:center;
	padding:10px 0px 10px;
}
.que_cell {
	border-left:1px #ffffff solid;
	background-color:#f0f0f0;
	padding:10px 10px 10px;
}
.radio_cell {
	width:44px;
	border-left:1px #ffffff solid;
	background-color:#f0f0f0;
	text-align:center;
	padding:10px;
}
.radio_cell_title {
	background-color:var(--d-mc, #9d1ac5);
	color:#ffffff;
	vertical-align:bottom;
}
.radio_cell_box {
	cursor:pointer;
}
.mobile_radio_lab {
	display:none;
}
.checkbox_row {
	height:40px;
	line-height:40px;
}
.checkbox_cell {
	width: 50%;
	height: auto;
	text-align: left;
	display: table-cell;
	cursor: pointer;
}
.table_box {
	width:100%;
	margin-bottom:20px;
	display:table;
}
.text_box_row {
	height:100px;
}
.text_cell {
	width:304px;
	border-left:1px #ffffff solid;
	background-color:#f0f0f0;
	text-align:center;
	vertical-align:top;
	padding:10px;
}
.info_box_row {
	height:60px;
	line-height:40px;
}
.info_box_row_2 {
	height:181px;
	line-height:40px;
}
.info_cell {
	width:80%;
	border-left:1px #ffffff solid;
	background-color:#f0f0f0;
	text-align:center;
	vertical-align:top;
	padding:10px;
}
/* form_box setting start */


.info_table {
  width: 100%;
  height: 100%;
}
.info_table > tbody > tr > td {
  border: 1px #c1539a solid;
  border-right: 0px;
  border-bottom: 0px;
  padding: 20px 10px 20px;
}
.info_table > tbody > tr:first-child > td:first-child {
  border-bottom: 1px #c1539a solid;
}
.info_table > tbody > tr:first-child > td {
  text-align: center;
}
.info_table > tbody > tr > td:last-child {
  border-right: 1px #c1539a solid;
}
.info_table > tbody > tr:last-child > td {
  border-bottom: 1px #c1539a solid;
}



/* footer setting start */
#footer {
	width:100%;
	border-top:5px var(--d-mc, #9d1ac5) solid;
	background-color:#ffffff;
	text-align:center;
	padding:30px 0px 30px;
}
#footer > .wrapper > .Copyright {
	color:#333333;
	font-size:14px;
	line-height:30px;
}
/* footer setting end */

#btn_faq {
	-webkit-border-radius:5px;
	-moz-border-radius:5px;
	border-radius:5px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
	width:60px;
	height:60px;
	background:url(../images/icon/btn_faq.png) no-repeat center center;
	background-color: var(--d-mc, #9d1ac5);
	padding:6px;
	position:fixed;
	bottom:135px;
	right:30px;
	display:block;
}
#btn_goto_top {
	-webkit-border-radius:5px;
	-moz-border-radius:5px;
	border-radius:5px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
	width:60px;
	height:60px;
	background:url(../images/icon/goto_top_48_48.png) no-repeat center center;
	background-color: var(--d-mc, #9d1ac5);
	padding:6px;
	position:fixed;
	bottom:70px;
	right:30px;
	display:none;
}
#btn_faq:hover, #btn_goto_top:hover {
  background-color: var(--d-mc-h, #b244d5);
}

@media only screen and (max-width:700px) {
	input[type="submit"] {
		max-width:none;
	}
	.tdfeaturesl {
		width: 100%;
		text-align: center;
    	margin-bottom: 30px;
	}
	.table_box {
		border-bottom:1px #dcdcdc solid;
		margin-bottom:20px;
	}
	.unfixed_table {
		display:block;
	}
	.unfixed_row {
		display:block;
	}
	.unfixed_cell {
		display:block;
	}
	.row_title {
		display:none;
	}
	.radio_cell_box {
		width:100%;
	}
	.radio_cell {
		width:100%;
		height:50px;
		border:0px;
		border-bottom:1px #ffffff solid;
		background-color:#ffffff;
		padding:0px;
	}
	.mobile_radio_input {
		padding-top:13px;
		padding-right:6px;
		padding-bottom:7px;
		padding-left:62px;
		float:left;
	}
	.mobile_radio_lab {
		height:30px;
		padding:10px 0px 10px;
		float:left;
		display:block;
	}
	.checkbox_row {
		height:auto;
		line-height:30px;
	}
	.checkbox_cell {
		width: 100%;
		height: auto;
		line-height: 50px;
	}
	.text_box_row {
		height:auto;
	}
	.text_cell {
		width:100%;
		height:80px;
		border:0px;
		border-bottom:1px #ffffff solid;
		background-color:#ffffff;
		padding:10px 0px 10px;
	}
	.info_box_row {
		height:auto;
		line-height:30px;
	}
	.info_box_row_2 {
		height:auto;
		line-height:30px;
	}
	.info_cell {
		width:100%;
		min-height:50px;
		border:0px;
		border-bottom:1px #ffffff solid;
		background-color:#ffffff;
		padding:10px 0px 10px;
	}
}




/* form_box setting start */
.form_box {
	background-color:#ffffff;
	padding:30px;
}

.form_box > .fixed_table > .fixed_row:hover > .fixed_cell  {
	background-color: #fff8b8;
	cursor: pointer;
}
.form_box > .fixed_table > .fixed_row:first-child > .fixed_cell:first-child  {
	background-color: var(--d-mc, #9d1ac5);
	cursor: inherit;
}
.form_box > .fixed_table > .fixed_row:first-child > .fixed_cell:last-child  {
	background-color: #f0f0f0;
	cursor: inherit;
}

.cell_bottom {
	border-bottom:1px #ffffff solid;
}
.form_table {
	width:100%;
	height:100%;
	display:table;
}
.unfixed_table {
	width: 100%;
	display: table;
}
.unfixed_row {
	display:table-row;
}
.unfixed_cell {
	display:table-cell;
}
.fixed_table {
	width:100%;
	display:table;
}
.fixed_row {
	display:table-row;
}
.fixed_cell {
	display:table-cell;
}
.num_cell {
	width:56px;
	background-color:var(--d-mc, #9d1ac5);
	color:#ffffff;
	text-align:center;
	padding:10px 0px 10px;
}
.que_cell {
	border-left:1px #ffffff solid;
	background-color:#f0f0f0;
	padding:10px 10px 10px;
}
.radio_cell {
	width:44px;
	border-left:1px #ffffff solid;
	background-color:#f0f0f0;
	text-align:center;
	padding:10px;
}
.radio_cell_title {
	background-color:var(--d-mc, #9d1ac5);
	color:#ffffff;
	vertical-align:bottom;
}
.radio_cell_box {
	cursor:pointer;
}
.mobile_radio_lab {
	display:none;
}
.checkbox_row {
	height:40px;
	line-height:40px;
}
.checkbox_cell {
	width: 50%;
	height: auto;
	text-align: left;
	display: table-cell;
	cursor: pointer;
}
.table_box {
	width:100%;
	margin-bottom:20px;
	display:table;
}
.text_box_row {
	height:100px;
}
.text_cell {
	width:304px;
	border-left:1px #ffffff solid;
	background-color:#f0f0f0;
	text-align:center;
	vertical-align:top;
	padding:10px;
}
.info_box_row {
	height:60px;
	line-height:40px;
}
.info_box_row_2 {
	height:181px;
	line-height:40px;
}
.info_cell {
	width:80%;
	border-left:1px #ffffff solid;
	background-color:#f0f0f0;
	text-align:center;
	vertical-align:top;
	padding:10px;
}
/* form_box setting start */

/* lesson setting start */
.lesson > .section > .panel {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #ffffff;
  padding: 30px;
}
.lesson > .section > .top {
  background-color: var(--d-mc, #9d1ac5);
  color: #ffffff;
  font-size: 18px;
  padding: 30px;
}
.lesson > .section > .top > .small-tips {
	font-size: 14px;
	font-style: italic;
}
.lesson > .section > .panel > .classwork-tips {
	color: var(--d-mc, #9d1ac5);
	font-style: italic;
}
.lesson > .section > .panel > .classwork {
	margin-bottom: 16px;
}
.lesson > .section > .panel > .classwork > div {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 8px 16px 8px;
}
.lesson > .section > .panel > .classwork > .title {
  background-color: var(--d-sc, #e766b9);
  color: #ffffff;
}
.lesson > .section > .panel > .classwork > .content {
  border: 1px var(--d-sc, #e766b9) solid;
}
.lesson > .section > .panel > .classwork-img {
	text-align: center;
}
.lesson > .section > .panel > .classwork-img > img {
	margin: auto;
	display: block;
}

.lesson > .section > .classwork-flex {
  display:flex;
  flex-direction:row;
  flex-wrap:wrap;
  align-content:flex-start;
  justify-content:flex-start;
  gap: 16px;
}
.lesson > .section > .classwork-flex > .classwork-tips {
	flex: 0 0 100%;
}
.lesson > .section > .classwork-flex > .classwork {
	flex: 0 0 calc(100% - 304px);
}
.lesson > .section > .classwork-flex > .classwork-img {
	flex: 0 0 288px;
}
@media only screen and (max-width:980px) {
	.lesson > .section > .classwork-flex {
		display: block;
	}
}

.lesson > .section > .panel > .main-point {
  margin-bottom: 16px;
}
.lesson > .section > .panel > .main-point > .top {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display:flex;
  flex-direction:row;
  flex-wrap:nowrap;
  justify-content:flex-start;
  gap: 1px;
}
.lesson > .section > .panel > .main-point > .top > div {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background-color: var(--d-sc, #e766b9);
  color: #ffffff;
  padding: 16px;
}
.lesson > .section > .panel > .main-point > .top > .point {
  flex: 0 0 112px;
  text-align: center;
}
.lesson > .section > .panel > .main-point > .top > .title {
  flex: 0 0 calc(100% - 113px);
}
.lesson > .section > .panel > .main-point > .middle {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px var(--d-sc, #e766b9) solid;
  padding: 16px;
}
.lesson > .section > .panel > .main-point > .middle > .sub-title {
	color: var(--d-sc, #e766b9);
	font-weight: 700;
}
.lesson > .encourage {
  background-color: #ffffff;
	margin-bottom: 16px;
	padding: 30px;
}
.lesson > .intro > .top {
  background-color: #ffffff;
  color: var(--d-mc, #9d1ac5);
  font-size: 21px;
  font-weight: 500;
  line-height: 36px;
  margin-bottom: 2px;
  padding: 30px;
}
.lesson > .intro > .top > .sub-title {
  color: var(--d-sc, #e766b9);
  font-size: 16px;
  font-weight: normal;
  font-style: italic;
}
.lesson > .intro > .middle {
  background-color: #ffffff;
  margin-bottom: 16px;
  padding: 30px;
}
.lesson > .intro > .middle > .grid_wrap > .gw_box > .icon {
  color: var(--d-sc, #e766b9);
  font-size: 120px;
  margin-bottom: 30px;
}

.lesson > .intro > .middle > .grid_wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);;
  grid-auto-rows: auto;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  margin-bottom: 30px;
}
.lesson > .intro > .middle > .grid_wrap > .gw_box {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  height: 100%;
  text-align: center;
}

a.btn_go_back {
  background-color: var(--d-mc, #9d1ac5);
  color: #ffffff;
  font-size: 24px;
  text-align: center;
  padding: 16px;
  display: block;
}
a.btn_go_back:hover {
  background-color: var(--d-mc-h, #b244d5);
}
a.btn_go_back > .btn_click {
	font-size: 16px;
}

@media only screen and (max-width:980px) {
  .lesson > .intro > .middle > .grid_wrap {
    grid-template-columns: repeat(1, 1fr);;
  }
  .lesson > .intro > .middle > .grid_wrap > .gw_box {
    grid-column-start: auto;
    grid-column-end: auto;
    grid-row-start: auto;
    grid-row-end: auto;
  }
}


.lesson > .trailer {
  background-color: #ffffff;
  padding: 30px;
}
.lesson > .trailer > .label1 {
	font-size: 21px;
  text-align: center;
  margin-bottom: 16px;
}
.lesson > .trailer > .label2 {
  font-size: 36px;
  font-style: italic;
  font-weight: 700;
  line-height: 60px;
  text-align: center;
}
.lesson > .trailer > .label3 {
	font-size: 18px;
}

@keyframes neon-blink {
  0%, 100% {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px var(--d-mc-h, #b244d5);
    opacity: 1;
  }
  50% {
    text-shadow: 0 0 2px #fff, 0 0 5px #fff, 0 0 10px var(--d-mc-h, #b244d5);
    opacity: 0.5;
  }
}

.neon-text {
  color: var(--d-mc, #9438b1);
  animation: neon-blink 1.5s infinite;
}
/* lesson setting end */


/* review setting start */
.review > form > .question-box {
  background-color: #ffffff;
  margin-bottom: 8px;
  position: relative;
}
.review > form > .question-box > .que {
  background-color: var(--d-mc, #9d1ac5);
  color: #ffffff;
  padding: 8px 16px 8px;
}
.review > form > .question-box > .opt {
  display:flex;
  flex-direction:row;
  flex-wrap:wrap;
  align-content:flex-start;
  justify-content:flex-start;
  border: 1px var(--d-mc, #9d1ac5) solid;
  background-color: #ffffff;
}
.review > form > .question-box > .opt > .box {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  flex: 0 0 50%;
  display:flex;
  flex-direction:row;
  flex-wrap:nowrap;
  justify-content:flex-start;
  cursor: pointer;
}
.review > form > .question-box > .opt > .box:hover {
  background-color: #fbf1ff;
}
.review > form > .question-box > .opt > .box > .radio-box {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  flex: 0 0 50px;
  text-align: center;
  padding: 13px 12px 7px;
}
.review > form > .question-box > .opt > .box > .radio-box > input {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0px;
}
.review > form > .question-box > .opt > .box > .lable {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  flex: 0 0 calc(100% - 50px);
  padding: 10px 0px 10px 10px;
}
.review > form > .question-box > .opt > .box > .qb-ans {
  color: #ff0000;
}

.review > form > .question-box > .answer-box {
  background-color: var(--d-mc, #9d1ac5);
  color: #ffffff;
  font-size: 14px;
  line-height: 14px;
  padding: 5px 8px 5px;
  position: absolute;
  bottom: 0px;
  right: 0px;
}

.review > form > .answer-box {
	background-color: #fff283;
  padding: 8px 16px 8px;
}

.review > .btn {
  margin-bottom: 8px;
}
.review > a.btn-form {
  color: #ffffff;
}
.font-red {
  color: #ff0000;
}
.review > .review-tips > .small-tips {
	color: #ff0000;
}

@media only screen and (max-width:740px) {
  .review > form > .question-box > .opt > .box {
    flex: 0 0 100%;
  }
}
/* review setting end */

.subscribe-box {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display:flex;
  flex-direction:row;
  flex-wrap:nowrap;
  justify-content:flex-start;
  gap: 16px;
}
.subscribe-box > a {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  flex: 0 0 calc((100% - 16px) / 2);
  display: block;
}
.subscribe-box > a > .btn {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: 50px;
  background-color: #ededed;
  color: #454545;
  text-align: center;
  padding: 10px;
}
.subscribe-box > a:hover > .btn {
  background-color: #d5d5d5;
}

.subscribe-box > a > .btn-checked {
	background-color: var(--d-mc, #9d1ac5);
	color: #ffffff;
}
.subscribe-box > a:hover > .btn-checked {
	background-color: var(--d-mc, #9d1ac5);
	color: #ffffff;
}