@charset "UTF-8";
/* Common components */
/* gray */
/* Dark3 */
/* Dark2 */
/* Dark1 */
/* blue */
/* green */
/* orange */
/* red */
/* 以降改訂版 */
/* Foreground */
/* Background */
/* Common components */
/* Common components */
/* Button component */
/* Common components */
/* Dropdown component */
/* Common components */
/* Colored Dialog */
/* Common components */
/* Common components */
/* Common components */
input:focus, button:focus, textarea:focus {
  outline: 0;
}

input,
textarea {
  box-sizing: border-box;
  border: 1px solid #cbcace;
  font-size: 1rem;
  line-height: 1.5;
  padding-top: calc(0.3525em - 1px);
  padding-bottom: calc(0.3525em - 1px);
  padding-left: calc(0.625em - 1px);
  padding-right: calc(0.625em - 1px);
  width: 100%;
  -webkit-appearance: none;
}
input.half,
textarea.half {
  width: 50%;
}
input.medium,
textarea.medium {
  width: 35%;
}
input.small,
textarea.small {
  width: 25%;
}
input.tiny,
textarea.tiny {
  width: 10%;
}
input::placeholder,
textarea::placeholder {
  color: #323135;
  opacity: 0.5;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #323135;
  opacity: 0.5;
}
input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: #323135;
  opacity: 0.5;
}
input[type=checkbox],
textarea[type=checkbox] {
  -webkit-appearance: none;
  padding: 0;
  width: 24px;
  height: 24px;
  background: #fff;
  border: 1px solid #cbcace;
  box-shadow: none;
  cursor: pointer;
}
input[type=checkbox]:disabled,
textarea[type=checkbox]:disabled {
  cursor: auto;
}
input[type=radio],
textarea[type=radio] {
  -webkit-appearance: radio;
  width: auto;
}
input[type=radio]:disabled,
textarea[type=radio]:disabled {
  cursor: auto;
}
input:focus,
textarea:focus {
  border-color: #1f76f9;
  box-shadow: 0 0 0 0.125em rgba(0, 136, 204, 0.1);
  outline: 0;
}
input:disabled,
textarea:disabled {
  background-color: #f2f2f3;
}
input:read-only:not([type=checkbox]),
textarea:read-only:not([type=checkbox]) {
  color: #98969c;
  background-color: #f2f2f3;
}

input {
  padding: 6px 8px;
  border-radius: 0;
}

textarea {
  height: 10em;
  min-height: 10em;
  resize: vertical;
}
textarea.lower {
  height: 5em;
  min-height: 5em;
}

.select {
  position: relative;
}
.select::after {
  position: absolute;
  top: 0.7em;
  right: 0.8em;
  pointer-events: none;
  color: #98969c;
  font-family: "Font Awesome 5 Free", FontAwesome;
  font-weight: 900;
  content: "\f0d7";
}

.flex-select-group {
  display: flex;
  align-items: center;
}
.flex-select-group .divider {
  margin: 0 8px;
}

select {
  box-sizing: border-box;
  padding: 8px 24px 8px 8px;
  border: 1px solid #cbcace;
  border-radius: 0;
  background: #fff;
  color: #323135;
  font-size: 13px;
  cursor: pointer;
  -webkit-appearance: none;
}
select:disabled {
  cursor: auto;
  background-color: #f2f2f3;
}

label {
  display: block;
}
label.label {
  margin-bottom: 4px;
}
label.checkbox {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}
label.checkbox > input[type=checkbox] {
  flex-shrink: 0;
  margin: 0;
}
label.checkbox > input[type=checkbox]:checked + .checkbox-text::before {
  position: absolute;
  top: 6px;
  left: 6px;
  font-size: 13px;
  font-family: "Font Awesome 5 Free", FontAwesome;
  font-weight: 900;
  content: "\f00c";
  color: #29a329;
  cursor: pointer;
}
label.checkbox > input[type=checkbox] + .checkbox-text:not(.hidden) {
  margin-left: 8px;
}
label.radio {
  cursor: pointer;
}
label.radio.inline {
  display: inline-flex;
}
label.radio.inline + label.radio.inline {
  margin-left: 8px;
}
label.radio input[type=radio] {
  margin: 0;
  width: 0;
  height: 0;
  opacity: 0;
}
label.radio input[type=radio]:checked + .radio-text::after {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  background: #29a329;
  border-radius: 50%;
  position: absolute;
  top: 4px;
  left: 3px;
}
label.radio .radio-text {
  position: relative;
  padding-left: 20px;
}
label.radio .radio-text::before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  border: 1px solid #98969c;
  border-radius: 50%;
  position: absolute;
  top: 1px;
  left: 0;
}

.field {
  margin-bottom: 16px;
}
.field.labeled-input-text label {
  color: #98969c;
}
.field.labeled-select {
  display: flex;
  flex-wrap: wrap;
}
.field.labeled-select > label {
  flex: 1 100%;
}
.field.labeled-select .select-wrapper {
  position: relative;
}
.field.labeled-select .select-wrapper::after {
  font-family: "Font Awesome 5 Free", FontAwesome;
  font-weight: 900;
  content: "\f0d7";
  position: absolute;
  top: 11px;
  right: 12px;
  color: #98969c;
  pointer-events: none;
}
.field.labeled-select.full .select-wrapper {
  width: 100%;
}
.field.labeled-select.full .select-wrapper select {
  width: 100%;
}
.field.checkbox {
  display: flex;
}
.field:last-child {
  margin-bottom: 0;
}
.field.error {
  color: #e83040;
}
.field.error .label {
  color: #e83040;
}
.field.error input {
  color: #e83040;
}
.fields-row {
  display: flex;
}
.fields-row .field {
  margin-bottom: 0;
}
.fields-row > .field + .field {
  margin-left: 32px;
}

.error {
  color: #d92635;
}

.btn {
  display: inline-flex;
  box-sizing: border-box;
  padding: 0 16px;
  height: 44px;
  line-height: 42px;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
  justify-content: center;
  cursor: pointer;
  background: #cbcace;
  /* border */
  border-width: 1px;
  border-style: solid;
  border-color: #cbcace;
  border-radius: 3px;
  color: #323135;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
  user-select: none;
  vertical-align: top;
  -webkit-appearance: none;
  /*******************/
  /* bordered styles */
  /*******************/
}
.btn:hover {
  text-decoration: none;
}
.btn:not(.disabled):not(:disabled):hover {
  background: rgb(215.04375, 213.3375, 220.1625);
}
.btn:not(.disabled):not(:disabled):active {
  background: rgb(227.725, 225.95, 233.05);
}
.btn:not(.disabled):not(:disabled):focus {
  padding-left: 15px;
  padding-right: 15px;
  border-width: 2px;
  line-height: 40px;
  outline: 0;
  text-decoration: none;
  border-color: rgba(100, 99, 105, 0.5);
}
.btn.disabled, .btn:disabled {
  color: rgba(50, 49, 53, 0.3);
  cursor: default;
}
.btn.disabled:focus, .btn:disabled:focus {
  outline: 0;
  padding: 0 16px;
}
.btn.btn-inverse {
  border-color: #98969c;
  background: #98969c;
  color: #fff;
}
.btn.btn-inverse:not(.disabled):not(:disabled):hover {
  background: rgb(163.3875, 158.6625, 172.8375);
}
.btn.btn-inverse:not(.disabled):not(:disabled):active {
  background: rgb(175.2, 168.6, 188.4);
}
.btn.btn-inverse:not(.disabled):not(:disabled):focus {
  border-color: rgba(100, 99, 105, 0.5);
}
.btn.btn-inverse.disabled, .btn.btn-inverse:disabled {
  color: rgba(255, 255, 255, 0.3);
}
.btn.btn-warning {
  border-color: #f99f06;
  background: #f99f06;
  color: #fff;
}
.btn.btn-warning:not(.disabled):not(:disabled):hover {
  background: hsl(37.7777777778, 100.2941176471%, 55%);
}
.btn.btn-warning:not(.disabled):not(:disabled):active {
  background: hsl(37.7777777778, 105.2941176471%, 60%);
}
.btn.btn-warning:not(.disabled):not(:disabled):focus {
  border-color: rgba(94, 63, 8, 0.5);
}
.btn.btn-warning.disabled, .btn.btn-warning:disabled {
  color: rgba(255, 255, 255, 0.3);
}
.btn.btn-warning.btn-inverse {
  background: #fff;
  color: #f99f06;
  border-color: transparent;
}
.btn.btn-warning.btn-inverse:not(.disabled):not(:disabled):hover {
  background: #fff2db;
}
.btn.btn-warning.btn-inverse:not(.disabled):not(:disabled):active {
  background: #ffe6bd;
}
.btn.btn-warning.btn-inverse:not(.disabled):not(:disabled):focus {
  border-color: transparent;
}
.btn.btn-warning.btn-inverse.disabled, .btn.btn-warning.btn-inverse:disabled {
  color: rgba(255, 255, 255, 0.3);
}
.btn.btn-info {
  border-color: #1f76f9;
  background: #1f76f9;
  color: #fff;
}
.btn.btn-info:not(.disabled):not(:disabled):hover {
  background: rgb(50.7222826087, 132.1572497008, 254.7777173913);
}
.btn.btn-info:not(.disabled):not(:disabled):active {
  background: hsl(216.0550458716, 104.7826086957%, 64.9019607843%);
}
.btn.btn-info:not(.disabled):not(:disabled):focus {
  border-color: rgba(8, 42, 94, 0.5);
}
.btn.btn-info.disabled, .btn.btn-info:disabled {
  color: rgba(255, 255, 255, 0.3);
}
.btn.btn-info.btn-inverse {
  background: #fff;
  color: #1f76f9;
  border-color: transparent;
}
.btn.btn-info.btn-inverse:not(.disabled):not(:disabled):hover {
  background: #e6f0fe;
}
.btn.btn-info.btn-inverse:not(.disabled):not(:disabled):active {
  background: #cde1fe;
}
.btn.btn-info.btn-inverse:not(.disabled):not(:disabled):focus {
  border-color: transparent;
}
.btn.btn-info.btn-inverse.disabled, .btn.btn-info.btn-inverse:disabled {
  color: rgba(255, 255, 255, 0.3);
}
.btn.btn-success {
  background: #29a329;
  color: #fff;
}
.btn.btn-danger {
  border-color: #e83040;
  background: #e83040;
  color: #fff;
}
.btn.btn-danger:not(.disabled):not(:disabled):hover {
  background: rgb(239.6625, 65.8375, 80.9527173913);
}
.btn.btn-danger:not(.disabled):not(:disabled):active {
  background: rgb(246.05, 84.95, 98.9586956522);
}
.btn.btn-danger:not(.disabled):not(:disabled):focus {
  border-color: rgba(77, 25, 30, 0.5);
}
.btn.btn-danger.disabled, .btn.btn-danger:disabled {
  color: rgba(255, 255, 255, 0.3);
}
.btn.btn-danger.btn-inverse {
  background: #fff;
  color: #e83040;
  border-color: transparent;
}
.btn.btn-danger.btn-inverse:not(.disabled):not(:disabled):hover {
  background: #ffebec;
}
.btn.btn-danger.btn-inverse:not(.disabled):not(:disabled):active {
  background: #ffdbde;
}
.btn.btn-danger.btn-inverse:not(.disabled):not(:disabled):focus {
  border-color: transparent;
}
.btn.btn-danger.btn-inverse.disabled, .btn.btn-danger.btn-inverse:disabled {
  color: rgba(255, 255, 255, 0.3);
}
.btn.btn-bordered {
  border-color: #646369;
  background: transparent;
  color: #646369;
  box-shadow: none;
}
.btn.btn-bordered:not(.disabled):not(:disabled):hover {
  background: rgba(100, 99, 105, 0.1);
}
.btn.btn-bordered:not(.disabled):not(:disabled):active {
  background: rgba(100, 99, 105, 0.2);
}
.btn.btn-bordered.btn-info {
  border-color: #1f76f9;
  background: #1f76f9;
  color: #fff;
  background: transparent;
  color: #1f76f9;
}
.btn.btn-bordered.btn-info:not(.disabled):not(:disabled):hover {
  background: rgb(50.7222826087, 132.1572497008, 254.7777173913);
}
.btn.btn-bordered.btn-info:not(.disabled):not(:disabled):active {
  background: hsl(216.0550458716, 104.7826086957%, 64.9019607843%);
}
.btn.btn-bordered.btn-info:not(.disabled):not(:disabled):focus {
  border-color: rgba(8, 42, 94, 0.5);
}
.btn.btn-bordered.btn-info.disabled, .btn.btn-bordered.btn-info:disabled {
  color: rgba(255, 255, 255, 0.3);
}
.btn.btn-bordered.btn-info.btn-inverse {
  background: #fff;
  color: #1f76f9;
  border-color: transparent;
}
.btn.btn-bordered.btn-info.btn-inverse:not(.disabled):not(:disabled):hover {
  background: #e6f0fe;
}
.btn.btn-bordered.btn-info.btn-inverse:not(.disabled):not(:disabled):active {
  background: #cde1fe;
}
.btn.btn-bordered.btn-info.btn-inverse:not(.disabled):not(:disabled):focus {
  border-color: transparent;
}
.btn.btn-bordered.btn-info.btn-inverse.disabled, .btn.btn-bordered.btn-info.btn-inverse:disabled {
  color: rgba(255, 255, 255, 0.3);
}
.btn.btn-bordered.btn-info:not(.disabled):not(:disabled):hover {
  background: rgba(31, 118, 249, 0.1);
}
.btn.btn-bordered.btn-info:not(.disabled):not(:disabled):active {
  background: rgba(31, 118, 249, 0.2);
}
.btn.btn-bordered.btn-info:not(.disabled):not(:disabled):focus {
  border-color: #1f76f9;
}
.btn.btn-bordered.btn-info.disabled, .btn.btn-bordered.btn-info:disabled {
  opacity: 1;
  color: rgba(31, 118, 249, 0.3);
  border-color: rgba(31, 118, 249, 0.3);
}
.btn.btn-bordered.btn-warning {
  border-color: #f99f06;
  background: #f99f06;
  color: #fff;
  background: transparent;
  color: #f99f06;
}
.btn.btn-bordered.btn-warning:not(.disabled):not(:disabled):hover {
  background: hsl(37.7777777778, 100.2941176471%, 55%);
}
.btn.btn-bordered.btn-warning:not(.disabled):not(:disabled):active {
  background: hsl(37.7777777778, 105.2941176471%, 60%);
}
.btn.btn-bordered.btn-warning:not(.disabled):not(:disabled):focus {
  border-color: rgba(94, 63, 8, 0.5);
}
.btn.btn-bordered.btn-warning.disabled, .btn.btn-bordered.btn-warning:disabled {
  color: rgba(255, 255, 255, 0.3);
}
.btn.btn-bordered.btn-warning.btn-inverse {
  background: #fff;
  color: #f99f06;
  border-color: transparent;
}
.btn.btn-bordered.btn-warning.btn-inverse:not(.disabled):not(:disabled):hover {
  background: #fff2db;
}
.btn.btn-bordered.btn-warning.btn-inverse:not(.disabled):not(:disabled):active {
  background: #ffe6bd;
}
.btn.btn-bordered.btn-warning.btn-inverse:not(.disabled):not(:disabled):focus {
  border-color: transparent;
}
.btn.btn-bordered.btn-warning.btn-inverse.disabled, .btn.btn-bordered.btn-warning.btn-inverse:disabled {
  color: rgba(255, 255, 255, 0.3);
}
.btn.btn-bordered.btn-warning:not(.disabled):not(:disabled):hover {
  background: rgba(249, 159, 6, 0.1);
}
.btn.btn-bordered.btn-warning:not(.disabled):not(:disabled):active {
  background: rgba(249, 159, 6, 0.2);
}
.btn.btn-bordered.btn-warning:not(.disabled):not(:disabled):focus {
  border-color: #f99f06;
}
.btn.btn-bordered.btn-warning.disabled, .btn.btn-bordered.btn-warning:disabled {
  opacity: 1;
  color: rgba(249, 159, 6, 0.3);
  border-color: rgba(249, 159, 6, 0.3);
}
.btn.btn-bordered.btn-danger {
  border-color: #e83040;
  background: #e83040;
  color: #fff;
  background: transparent;
  color: #e83040;
}
.btn.btn-bordered.btn-danger:not(.disabled):not(:disabled):hover {
  background: rgb(239.6625, 65.8375, 80.9527173913);
}
.btn.btn-bordered.btn-danger:not(.disabled):not(:disabled):active {
  background: rgb(246.05, 84.95, 98.9586956522);
}
.btn.btn-bordered.btn-danger:not(.disabled):not(:disabled):focus {
  border-color: rgba(77, 25, 30, 0.5);
}
.btn.btn-bordered.btn-danger.disabled, .btn.btn-bordered.btn-danger:disabled {
  color: rgba(255, 255, 255, 0.3);
}
.btn.btn-bordered.btn-danger.btn-inverse {
  background: #fff;
  color: #e83040;
  border-color: transparent;
}
.btn.btn-bordered.btn-danger.btn-inverse:not(.disabled):not(:disabled):hover {
  background: #ffebec;
}
.btn.btn-bordered.btn-danger.btn-inverse:not(.disabled):not(:disabled):active {
  background: #ffdbde;
}
.btn.btn-bordered.btn-danger.btn-inverse:not(.disabled):not(:disabled):focus {
  border-color: transparent;
}
.btn.btn-bordered.btn-danger.btn-inverse.disabled, .btn.btn-bordered.btn-danger.btn-inverse:disabled {
  color: rgba(255, 255, 255, 0.3);
}
.btn.btn-bordered.btn-danger:not(.disabled):not(:disabled):hover {
  background: rgba(232, 48, 64, 0.1);
}
.btn.btn-bordered.btn-danger:not(.disabled):not(:disabled):active {
  background: rgba(232, 48, 64, 0.2);
}
.btn.btn-bordered.btn-danger:not(.disabled):not(:disabled):focus {
  border-color: #e83040;
}
.btn.btn-bordered.btn-danger.disabled, .btn.btn-bordered.btn-danger:disabled {
  opacity: 1;
  color: rgba(232, 48, 64, 0.3);
  border-color: rgba(232, 48, 64, 0.3);
}
.btn.btn-bordered.disabled, .btn.btn-bordered:disabled {
  color: rgba(100, 99, 105, 0.3);
  border-color: rgba(100, 99, 105, 0.3);
}
.btn.btn-small {
  height: 32px;
  line-height: 30px;
}
.btn.btn-small:not(.disabled):not(:disabled):focus {
  line-height: 28px;
}
.btn.btn-icon {
  align-items: center;
  justify-content: space-between;
}
.btn.btn-icon > i + * {
  margin-left: 6px;
}
.btn.btn-icon > img + * {
  margin-left: 8px;
}
.btn.btn-expand {
  display: flex;
  width: 100%;
}
.btn.btn-expand.btn-icon {
  justify-content: center;
}
.btn.btn-transparent {
  background: transparent;
  border: transparent;
  box-shadow: none;
}
.btn.btn-transparent:not(.disabled):not(:disabled):hover {
  background: transparent;
}
.btn.btn-transparent:not(.disabled):not(:disabled):focus {
  padding-left: 16px;
  padding-right: 16px;
}
.btn > svg:not(:last-child) {
  margin-right: 8px;
}

.notice {
  font-weight: bold;
  position: relative;
  opacity: 0;
  transform: translate(0, -10px);
  transition: all 600ms;
  pointer-events: none;
}
.notice.fade {
  opacity: 1;
  transform: translate(0, 0);
  transition-delay: 0.4s;
  transition-duration: 0.5s;
  pointer-events: auto;
}
.notice .notice-close {
  display: inline-block;
  position: absolute;
  top: 4px;
  right: 4px;
  width: 24px;
  line-height: 24px;
  border-radius: 50%;
  font-weight: normal;
  text-align: center;
  cursor: pointer;
}
.notice .notice-close::after {
  font-family: "Font Awesome 5 Free", FontAwesome;
  font-weight: 900;
  content: "\f00d";
}
.notice:hover .notice-close {
  background: rgba(8, 42, 94, 0.1);
}
.notice i.separator {
  margin-left: 8px;
  margin-right: 8px;
  opacity: 0.3;
}
.notice a {
  text-decoration: underline;
}
.notice.notice-info {
  background: #cde1fe;
  color: #082a5e;
}
.notice.notice-info a {
  color: #1f76f9;
}
.notice.notice-warning {
  background: #ffe6bd;
  color: #5e3f08;
}
.notice.notice-warning a {
  color: #f99f06;
}
.notice.notice-error {
  background: #ffdbde;
  color: #4d191e;
}
.notice.notice-error a {
  color: #e83040;
}

.dropdown {
  position: relative;
}
.dropdown > .dropdown-toggle {
  cursor: pointer;
  user-select: none;
}
.dropdown > .dropdown-menu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: -99999px; /* To prevent the scroll bar from being displayed when the menu is at the right end. */
  margin: 0;
  padding: 0;
  z-index: 1000;
  box-sizing: border-box;
  width: 100%;
  font-size: 13px;
  color: hsl(216, 10%, 20%);
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 0 2px rgba(0, 0, 0, 0.1);
}
.dropdown > .dropdown-menu.show {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.1s ease-in-out;
}
.dropdown > .dropdown-menu > header {
  padding: 12px 16px;
  border-radius: 4px 4px 0 0;
  background: #f2f2f3;
  color: #323135;
}
.dropdown > .dropdown-menu > header > h1, .dropdown > .dropdown-menu > header h2, .dropdown > .dropdown-menu > header h3, .dropdown > .dropdown-menu > header h4, .dropdown > .dropdown-menu > header h5, .dropdown > .dropdown-menu > header h6 {
  margin: 0;
  padding: 0;
  line-height: 20px;
  font-size: 13px;
  font-weight: bold;
}
.dropdown > .dropdown-menu > footer {
  line-height: 20px;
  text-align: center;
  font-weight: bold;
  background: #fff;
  border-top: 1px solid #f2f2f3;
  border-radius: 0 0 4px 4px;
}
.dropdown > .dropdown-menu > footer a {
  box-sizing: border-box;
  display: block;
  padding: 12px 16px;
  width: 100%;
  height: 100%;
}
.dropdown > .dropdown-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.dropdown > .dropdown-menu ul > li {
  box-sizing: border-box;
  padding: 16px;
  line-height: 16px;
  cursor: pointer;
}
.dropdown > .dropdown-menu ul > li > a {
  color: inherit;
  text-decoration: none;
}
.dropdown > .dropdown-menu ul > li:hover {
  background: rgba(203, 202, 206, 0.1);
}
.dropdown > .dropdown-menu ul > li:focus {
  background: rgba(203, 202, 206, 0.1);
}
.dropdown > .dropdown-menu ul > li.disabled {
  color: #cbcace;
  cursor: default;
}
.dropdown > .dropdown-menu ul > li.disabled:hover {
  background: #fff;
}
.dropdown > .dropdown-menu ul > li.disabled:focus {
  background: #fff;
}
.dropdown > .dropdown-menu ul.full-link-list > li {
  padding: 0;
}
.dropdown > .dropdown-menu ul.full-link-list > li > a {
  display: block;
  padding: 16px;
}
.dropdown > .dropdown-menu ul.empty-list {
  display: flex;
  align-items: center;
  height: 100%;
}
.dropdown > .dropdown-menu ul.empty-list > .dropdown-menu-placeholder {
  flex: 1;
  margin: 0 16px;
  padding: 32px 0;
  border-radius: 2px;
  background: #f2f2f3;
  color: #323135;
  opacity: 0.5;
  text-align: center;
}
.dropdown > .dropdown-menu.disable-hover ul > li {
  cursor: default;
}
.dropdown > .dropdown-menu.disable-hover ul > li:not(.dropdown-menu-placeholder):hover {
  background: #fff;
}
.dropdown > .dropdown-menu.disable-hover ul > li:not(.dropdown-menu-placeholder):focus {
  background: #fff;
}
.dropdown.dropdown-large .triangle {
  content: "";
  position: absolute;
  top: -16px;
  left: calc(50% - 8px);
  border: 8px solid transparent;
  border-bottom-color: #f2f2f3;
}
.dropdown.dropdown-large > .dropdown-menu {
  width: 320px;
}
.dropdown.dropdown-large > .dropdown-menu > .dropdown-menu-body {
  height: 320px;
  overflow-y: scroll;
}
.dropdown.dropdown-large > .dropdown-menu > .dropdown-menu-body ul li + li {
  border-top: 1px solid #f2f2f3;
}

/* //Common components */
/**
 * admin.scss と styles.scss に共通のスタイルを書く
 */
/**
 * レスポンシブデザイン
 */
/**
 * アイコンとコメント投稿欄が横並びになるレイアウト
 */
/* Elements base styles */
html, body, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-size: 14px;
}

html {
  scroll-padding-top: 64px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "ヒラギノ角ゴ ProN W3", Arial, メイリオ, Meiryo, sans-serif;
  color: hsl(216, 10%, 20%);
  background: hsl(216, 25%, 95%);
  overflow-wrap: break-word;
  word-wrap: break-word;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul.normal-list {
  margin: 0 0 0 24px;
  list-style: disc;
}
ul.normal-list > li + li {
  margin-top: 4px;
}

dl {
  margin: 0;
}
dl dd {
  margin: 0;
}

a {
  color: #1f76f9;
}

p {
  margin: 0 0 16px;
}

textarea {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "ヒラギノ角ゴ ProN W3", Arial, メイリオ, Meiryo, sans-serif;
  line-height: 1.6;
}
textarea.dragover {
  background: rgba(31, 118, 249, 0.05);
  border: solid 1px #1f76f9;
}

input.dragover {
  background: rgba(31, 118, 249, 0.05);
  border: solid 1px #1f76f9;
}

label.label {
  color: #98969c;
  font-size: 13px;
  font-weight: normal;
}

.table {
  box-sizing: border-box;
  border: 1px solid #f2f2f3;
  border-collapse: collapse;
}
.table.fixed {
  table-layout: fixed;
}
.table.full {
  width: 100%;
}
.table th.align-center {
  text-align: center;
}
.table td {
  padding: 16px;
}
.table td.align-center {
  text-align: center;
}
.table > thead {
  background-color: #f2f2f3;
  color: #646369;
}
.table > thead th {
  padding: 8px 16px;
  text-align: center;
}
.table > thead.left th {
  text-align: left;
}
.table > thead.right th {
  text-align: right;
}
.table > tbody > tr th {
  padding: 16px;
}
.table > tbody > tr:first-child > th {
  padding-top: 24px;
}
.table > tbody > tr:first-child > td {
  padding-top: 24px;
}
.table > tbody > tr:last-child > th {
  padding-bottom: 24px;
}
.table > tbody > tr:last-child > td {
  padding-bottom: 24px;
}

/* Common class */
.text-ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.container {
  box-sizing: border-box;
  width: 1280px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.container.narrow {
  width: 1024px;
}

.gray-notice {
  color: #98969c;
}
.gray-notice.small {
  font-size: 12px;
}

.dropdown > .dropdown-menu {
  box-sizing: border-box;
  border: none;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.1), 0px 2px 4px rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 0 2px rgba(0, 0, 0, 0.1);
}
.dropdown > .dropdown-menu.unclickable {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.02);
}
.dropdown > .dropdown-menu.unclickable.disabled {
  opacity: 0.3;
}
.dropdown ul > li + li {
  border-top: 1px solid #f2f2f3;
}

.notice-layout {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 100;
  text-align: center;
  pointer-events: none;
}
.notice-layout .notice {
  padding: 16px;
  min-width: 20%;
  display: inline-block;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1), 0px 2px 4px rgba(0, 136, 204, 0.1);
  border-radius: 2px;
  font-weight: normal;
}

.header-toast {
  margin: 0;
  position: fixed;
  top: 88px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 100;
  pointer-events: none;
  transform: translate(0, -9999px);
}
.header-toast > .toast {
  margin: 0;
  padding: 16px;
  display: inline-block;
  background-color: #082a5e;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1), 0px 0px 2px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  font-weight: normal;
  font-size: 14px;
  color: hsl(216, 10%, 95%);
  opacity: 0;
  transform: translate(0, -10px);
  pointer-events: none;
}
.header-toast > .toast.toast-done::before {
  font-family: "Font Awesome 5 Free", FontAwesome;
  font-weight: 900;
  content: "\f00c";
  display: inline-block;
  margin-right: 16px;
  width: 16px;
  height: 16px;
  line-height: 16px;
  color: #29a329;
}
.header-toast.show {
  transform: translate(0, 0);
}
.header-toast.show > .toast {
  opacity: 1;
  transform: translate(0, 0);
  transition: all 600ms;
  transition-delay: 0.4s;
  transition-duration: 0.5s;
  pointer-events: auto;
}
.header-toast.show.end > .toast {
  opacity: 0;
  transform: translate(0, -10px);
  pointer-events: none;
}

.breadcrumb-layout {
  margin-bottom: 32px;
}

.breadcrumb ul {
  display: flex;
}
.breadcrumb ul li {
  display: flex;
  align-items: center;
}
.breadcrumb ul li > a, .breadcrumb ul li > span {
  padding: 0 6px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.breadcrumb ul li > a {
  text-decoration: none;
}
.breadcrumb ul li:first-child > a {
  padding-left: 0;
}
.breadcrumb ul li:last-child > a {
  color: #323135;
  cursor: text;
  pointer-events: none;
}
.breadcrumb ul li + li::before {
  font-family: "Font Awesome 5 Free", FontAwesome;
  font-weight: 900;
  content: "\f054";
  color: #cbcace;
}

img.user-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-sizing: border-box;
  outline: 1px solid rgba(50, 49, 53, 0.1);
  outline-offset: -1px;
}
img.user-icon.middle {
  width: 32px;
  height: 32px;
}
img.user-icon.half {
  width: 24px;
  height: 24px;
}
img.user-icon.small {
  width: 20px;
  height: 20px;
}
img.user-icon.tiny {
  width: 16px;
  height: 16px;
}

.icon-username {
  display: flex;
  align-items: center;
  font-weight: normal;
  color: #323135;
}
.icon-username img.user-icon {
  margin-right: 16px;
}
.icon-username img.user-icon.half {
  margin-right: 8px;
}
.icon-username img.user-icon.small {
  margin-right: 8px;
}
.icon-username img.user-icon.tiny {
  margin-right: 4px;
}
.icon-username.with-status > .username-with-status {
  display: flex;
  flex-direction: column;
}

.tiny-date {
  font-size: 12px;
  color: hsl(216, 10%, 20%);
  opacity: 0.5;
}

.status-label {
  display: inline-block;
  width: 76px;
  height: 28px;
  line-height: 28px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 88px;
  background: #f2f2f3;
  text-align: center;
  color: #646369;
}
.status-label.tiny {
  width: 36px;
  height: 16px;
  line-height: 16px;
  font-size: 10px;
}
.status-label.small {
  width: 58px;
  height: 16px;
  line-height: 16px;
  font-size: 10px;
}
.status-label.long {
  width: 92px;
}
.status-label.status-label-danger {
  background: #ffebec;
  color: #e83040;
}

.unread-mark {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: #e83040;
}

.title-card-list > li + li {
  margin-top: 8px;
}

.class-title-card {
  box-sizing: border-box;
  position: relative;
  min-height: 120px;
  background-color: #fff;
  background-position: bottom 8px right -4px;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.05), 0px 0px 2px rgba(0, 0, 0, 0.1);
  border-right: 16px solid transparent;
}
.class-title-card.top-stamp {
  background-position: top 8px right -4px;
}
.class-title-card > a {
  box-sizing: border-box;
  display: block;
  width: 100%;
  min-height: 120px;
  padding: 32px 72px 0 16px;
  color: #323135;
  text-decoration: none;
}
.class-title-card header > .title {
  font-size: 14px;
  font-weight: bold;
}
.class-title-card footer {
  position: absolute;
  bottom: 8px;
  font-size: 11px;
  color: #646369;
}
.class-title-card.placeholder {
  background: rgba(203, 202, 206, 0.5);
  box-shadow: none;
  padding: 16px;
}
.class-title-card.theme-256free {
  border-right-color: #3b7bdb;
  background-repeat: no-repeat;
  background-image: url(/assets/img/stamps/stamp-256free.png);
  background-size: 64px;
}
.class-title-card.theme-html {
  border-right-color: #ee712b;
  background-repeat: no-repeat;
  background-image: url(/assets/img/stamps/stamp-html.png);
  background-size: 64px;
}
.class-title-card.theme-css {
  border-right-color: #09a8f8;
  background-repeat: no-repeat;
  background-image: url(/assets/img/stamps/stamp-css.png);
  background-size: 64px;
}
.class-title-card.theme-js {
  border-right-color: #f4c41a;
  background-repeat: no-repeat;
  background-image: url(/assets/img/stamps/stamp-js.png);
  background-size: 64px;
}
.class-title-card > .notification-label {
  display: inline-block;
  width: 76px;
  height: 28px;
  line-height: 28px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 88px;
  background: #f2f2f3;
  text-align: center;
  color: #646369;
  height: 18px;
  line-height: 18px;
  background: #e83040;
  color: #fff;
  font-weight: normal;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 8px;
  right: 8px;
}
.class-title-card > .notification-label.tiny {
  width: 36px;
  height: 16px;
  line-height: 16px;
  font-size: 10px;
}
.class-title-card > .notification-label.small {
  width: 58px;
  height: 16px;
  line-height: 16px;
  font-size: 10px;
}
.class-title-card > .notification-label.long {
  width: 92px;
}
.class-title-card > .notification-label > i {
  margin-right: 4px;
}

.exercise-index {
  display: inline-block;
  width: 24px;
  height: 24px;
  line-height: 24px;
  border-radius: 2px;
  background: #f2f2f3;
  text-align: center;
  font-weight: bold;
  font-size: 12px;
  color: #646369;
}
.exercise-index.current {
  position: relative;
  box-shadow: 0 0 0 2px #cbcace;
}
.exercise-index.current::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  box-shadow: 0 0 0 1px #fff;
  border-radius: 2px;
}
.exercise-index.submitted {
  background: #e6f0fe;
  color: #082a5e;
}
.exercise-index.submitted.current {
  box-shadow: 0 0 0 2px #9cc2fc;
}
.exercise-index.done {
  background: #e9fbe9;
  color: #29a329;
}
.exercise-index.done.current {
  box-shadow: 0 0 0 2px #a1e8a1;
}
.exercise-index.news {
  background: #fff2db;
  color: #f99f06;
  background-image: url(/assets/img/exercise-index-news.png?v=2);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.exercise-index.topic {
  background: #fff2db;
  color: #f99f06;
  background-image: url(/assets/img/exercise-index-topic.png?v=20210113);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.exercise-title-with-index {
  display: flex;
  align-items: center;
}
.exercise-title-with-index > .exercise-index {
  flex-shrink: 0;
  margin-right: 8px;
}
.exercise-title-with-index > .exercise-title {
  font-weight: normal;
}
.exercise-title-with-index > .exercise-title.unread {
  font-weight: bold;
}

.exercise-index-tile {
  display: flex;
  flex-wrap: wrap;
  margin: -4px;
}
.exercise-index-tile > li {
  margin: 4px;
}

.help-me-badge {
  display: inline-flex;
  align-items: center;
  box-sizing: border-box;
  padding: 2px 8px;
  height: 18px;
  line-height: 18px;
  background: #e83040;
  border-radius: 10px;
  font-size: 10px;
  font-weight: bold;
  color: #fff;
}

.menu-button {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  text-align: center;
  line-height: 24px;
}
.menu-button:hover {
  background: rgba(50, 49, 53, 0.05);
}
.menu-button > .dropdown-toggle {
  display: inline-block;
  width: 100%;
  height: 100%;
}
.menu-button > .dropdown-toggle > i {
  color: hsla(216, 10%, 20%, 0.6);
}

.class-members-tile {
  display: flex;
  flex-wrap: wrap;
  margin: -4px;
}
.class-members-tile > li {
  margin: 4px;
}

.remaining-time-box {
  position: relative;
  padding: 16px;
  background: #476b5d;
  border: 4px solid #cbcace;
  border-radius: 2px;
  color: #fafafa;
  text-align: center;
}
.remaining-time-box.before {
  color: rgba(250, 250, 250, 0.5);
}
.remaining-time-box.before #remaining_time_before_start {
  display: block;
}
.remaining-time-box.before #remaining_time_now_open {
  display: none;
}
.remaining-time-box.before #remaining_time_end {
  display: none;
}
.remaining-time-box #remaining_time_before_start {
  display: none;
}
.remaining-time-box #remaining_time_now_open {
  display: block;
}
.remaining-time-box #remaining_time_label {
  display: none;
}
.remaining-time-box #remaining_time_end {
  display: none;
}
.remaining-time-box .remaining-time-label {
  display: none;
}
.remaining-time-box.soon #remaining_time_label {
  display: inline-flex;
}
.remaining-time-box.end {
  color: rgba(250, 250, 250, 0.5);
}
.remaining-time-box.end #remaining_time_before_start {
  display: none;
}
.remaining-time-box.end #remaining_time_now_open {
  display: none;
}
.remaining-time-box.end #remaining_time_end {
  display: block;
}
.remaining-time-box.end .remaining-time-notice {
  opacity: 0.3;
}
.remaining-time-box.end .remaining-time-label {
  opacity: 0.3;
}
.remaining-time-box.hour .remaining-time-label {
  background: #e8d67d;
}
.remaining-time-box.minute .remaining-time-label {
  background: #e699a6;
}
.remaining-time-box .deadline-digit {
  font-size: 22px;
  font-weight: bold;
}

.remaining-time-label {
  display: inline-flex;
  align-items: center;
  box-sizing: border-box;
  height: 24px;
  line-height: 24px;
  margin-top: 8px;
  padding: 0 8px 0 10px;
  border-radius: 2px;
  background: #646369;
  color: #476b5d;
  font-size: 12px;
  font-weight: bold;
}
.remaining-time-label i {
  margin-right: 4px;
  line-height: 24px;
}

.remaining-time-eraser {
  position: absolute;
  bottom: 0;
  right: 16px;
  width: 20px;
  height: 6px;
  background: #c49647;
  border-radius: 2px 2px 0 0;
}
.remaining-time-eraser .remaining-time-eraser-band {
  width: 4px;
  height: 100%;
  margin: 0 auto;
  background: #4e565e;
}

.simple-section-layout {
  margin: 0 0 32px;
}
.simple-section-layout > header {
  margin: 0 0 16px;
  padding: 8px 0;
  border-bottom: 1px solid #cbcace;
}
.simple-section-layout > header.with-right-btn {
  display: flex;
  justify-content: space-between;
}
.simple-section-layout > header > h1, .simple-section-layout > header h2, .simple-section-layout > header h3 {
  margin: 0;
  padding: 0;
  height: 32px;
  line-height: 32px;
  font-weight: bold;
}
.simple-section-layout.centered > header {
  margin-bottom: 32px;
  border-bottom: none;
  text-align: center;
}
.simple-section-layout.centered > header > h1, .simple-section-layout.centered > header h2, .simple-section-layout.centered > header h3 {
  font-size: 24px;
}
.simple-section-layout > .simple-section-layout-body .body-content {
  padding: 16px;
}
.simple-section-layout > .simple-section-layout-body > pre.limited {
  max-height: 8em;
  overflow: scroll;
  padding: 2px;
  border: 1px solid #ccc;
  background: #fff;
  font-size: 12px;
  line-height: 15px;
}
.simple-section-layout.bg-white > footer {
  background: #fff;
}
.simple-section-layout.bg-white > .simple-section-layout-body {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.02);
  border-radius: 2px;
}

.half-layout {
  display: flex;
}
.half-layout .half {
  flex: 1;
  margin-right: 24px;
}
.half-layout .half:last-child {
  margin-right: 0;
}

.root-layout {
  margin: 96px 0 32px;
}

.single-col-layout {
  width: 640px;
  margin: 0 auto;
}
.single-col-layout > main {
  margin-bottom: 64px;
}

.two-col-layout {
  display: flex;
  justify-content: space-between;
}
.two-col-layout > :first-child {
  flex-shrink: 1;
  width: 864px;
  min-width: 0;
}
.two-col-layout > :last-child {
  flex-shrink: 0;
  width: 320px;
  margin-left: 64px;
}
.two-col-layout.inverse > :first-child {
  order: 2;
  margin-left: 64px;
}
.two-col-layout.inverse > :last-child {
  order: 1;
  margin-left: 0;
}

.narrow > .two-col-layout > *:first-child {
  width: 608px;
}

body.full-width .container {
  width: 100%;
}
body.full-width .two-col-layout > *:first-child {
  width: calc(50% - 32px);
}
body.full-width .two-col-layout > *:last-child {
  width: calc(50% - 32px);
}

.common-card-component {
  box-sizing: border-box;
  border: none;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.1), 0px 2px 4px rgba(0, 0, 0, 0.05);
  /* 入れ子 */
}
.common-card-component.unclickable {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.02);
}
.common-card-component.unclickable.disabled {
  opacity: 0.3;
}
.common-card-component a {
  text-decoration: none;
  color: #323135;
}
.common-card-component a:hover {
  background: #fafafa;
}
.common-card-component a.colored {
  color: #1f76f9;
  text-decoration: underline;
}
.common-card-component.hoverable:hover {
  background: #fafafa;
  cursor: pointer;
}
.common-card-component.with-header > header {
  padding: 16px;
  border-bottom: 1px solid #f2f2f3;
  color: #323135;
  font-weight: bold;
}
.common-card-component.with-header > .common-card-component-body {
  padding: 16px;
}
.common-card-component.with-align-right-footer > .common-card-component-body + footer {
  padding: 0 16px 16px;
  text-align: right;
}
.common-card-component header.with-right-btn {
  position: relative;
}
.common-card-component header.with-right-btn > .btn:last-child {
  position: absolute;
  top: 11px;
  right: 16px;
}
.common-card-component header.with-right-float-icon {
  box-sizing: border-box;
  height: 48px;
  line-height: 48px;
  padding: 0 16px;
  position: relative;
}
.common-card-component header.with-right-float-icon img {
  position: absolute;
  top: 24px;
  margin: 0;
}
.common-card-component .common-card-component-body {
  position: relative;
}
.common-card-component .common-card-component-body > p:last-child {
  margin-bottom: 0;
}
.common-card-component .common-card-component-body textarea.for-raw-copy {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
}
.common-card-component .common-card-component {
  box-shadow: none;
}
.common-card-component .common-card-component.with-header header {
  padding-left: 0;
  padding-right: 0;
}
.common-card-component .common-card-component.with-header .common-card-component-body {
  padding-left: 0;
  padding-right: 0;
}
.common-card-component .common-card-component:last-child.with-header .common-card-component-body {
  padding-bottom: 0;
}

.common-row-component {
  box-sizing: border-box;
  border: none;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.1), 0px 2px 4px rgba(0, 0, 0, 0.05);
  padding: 16px;
}
.common-row-component.unclickable {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.02);
}
.common-row-component.unclickable.disabled {
  opacity: 0.3;
}
.common-row-component + .common-row-component {
  margin-top: 8px;
}
.common-row-component a {
  text-decoration: none;
}
.common-row-component > a {
  display: block;
  box-sizing: border-box;
  color: #323135;
}
.common-row-component > a:hover {
  background: #fafafa;
}
.common-row-component.unclickable > a:hover {
  background: inherit;
}
.common-row-component.full-link {
  padding: 0;
}
.common-row-component.full-link > a {
  width: 100%;
  height: 100%;
  padding: 16px;
}
.common-row-component.full-link > a > .row-main-contents {
  padding: 16px 16px 8px;
}
.common-row-component.full-link > a.with-commented {
  flex-direction: column;
  padding: 0px;
}
.common-row-component.full-link > a.with-commented .title {
  display: flex;
  padding: 16px;
}
.common-row-component.full-link > a.with-commented .commented {
  display: flex;
  padding: 8px;
  border-top: 1px solid #f2f2f3;
  justify-content: flex-end;
  align-items: center;
}
.common-row-component.full-link > a.with-commented .commented .user {
  display: flex;
  align-items: center;
  padding-right: 4px;
}
.common-row-component.full-link > a.with-commented .commented .time {
  display: flex;
  align-items: center;
  padding-right: 8px;
}
.common-row-component.full-link > .checkbox-box + a {
  padding-left: 0;
}
.common-row-component.full-link > .undo-box + a {
  padding-left: 0;
}
.common-row-component.full-link.with-footer > a {
  padding: 0;
}
.common-row-component:not(.full-link).with-footer {
  padding: 0;
}
.common-row-component:not(.full-link).with-footer > .row-main-contents {
  padding: 16px;
}
.common-row-component.empty {
  background: #cbcace;
  color: #323135;
  text-align: center;
}
.common-row-component.with-right-el {
  display: flex;
  align-items: center;
}
.common-row-component.with-right-el > :last-child {
  margin-left: auto;
  flex: 0 1 auto;
}
.common-row-component.with-right-el > a {
  display: flex;
  align-items: center;
}
.common-row-component.with-right-el > a > :last-child {
  margin-left: auto;
}
.common-row-component.with-right-el > a + a:last-child {
  width: auto;
}
.common-row-component.with-right-el .tail-el {
  display: flex;
  align-items: center;
}
.common-row-component.with-right-el .tail-el > * + * {
  margin-left: 8px;
}
.common-row-component.with-tail-controls > .controls {
  padding: 0 16px;
}
.common-row-component.align-top > a {
  align-items: flex-start;
}
.common-row-component.hoverable:hover {
  background: #fafafa;
  cursor: pointer;
}
.common-row-component .subtitle {
  font-size: 11px;
  color: #323135;
  opacity: 0.5;
}
.common-row-component .checkbox-box {
  display: block;
  padding: 16px;
}
.common-row-component .undo-box {
  display: block;
  padding: 16px;
  cursor: pointer;
}
.common-row-component .undo-box > i {
  display: inline-block;
  width: 24px;
  height: 24px;
  text-align: center;
  line-height: 24px;
}

.common-list-menu .common-row-component {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.common-list-menu .common-row-component.selected {
  position: relative;
}
.common-list-menu .common-row-component.selected::before {
  content: "";
  position: absolute;
  width: 3px;
  top: 0;
  bottom: 0;
  left: 0;
  background-color: #1f76f9;
}
.common-list-menu .common-row-component + .common-row-component {
  margin-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.common-list-menu .common-row-component:last-child {
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
}

.common-tabs {
  margin-bottom: 16px;
  border-bottom: 1px solid #cbcace;
}
.common-tabs ul {
  display: inline-flex;
  height: 44px;
}
.common-tabs ul li {
  text-align: center;
  position: relative;
}
.common-tabs ul li.active a {
  margin-top: 1px;
  color: #1f76f9;
  border-bottom: 2px solid #1f76f9;
}
.common-tabs ul li a {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  line-height: 100%;
  padding: 0 16px;
  color: hsla(216, 10%, 20%, 0.6);
  font-weight: bold;
  text-decoration: none;
}
.common-tabs ul li .unread-mark {
  position: absolute;
  top: 10px;
  right: 6px;
  width: 8px;
  height: 8px;
  display: none;
}
.common-tabs ul li .unread-mark.show {
  display: block;
}

.common-tab-body.hidden {
  display: none;
}

.common-accordion .common-accordion-body {
  overflow: hidden;
  border-bottom: 1px solid #f2f2f3;
  transition: height 0.3s ease;
}
.common-accordion .common-accordion-header.disabled {
  opacity: 0.3;
}
.common-accordion .common-accordion-header.disabled > .common-accordion-label {
  cursor: auto;
}
.common-accordion .common-accordion-header.disabled > .common-accordion-label:hover {
  background-color: inherit;
}
.common-accordion .common-accordion-header > .common-accordion-label {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 16px;
  font-weight: bold;
  cursor: pointer;
}
.common-accordion .common-accordion-header > .common-accordion-label:hover {
  background-color: rgba(152, 150, 156, 0.05);
}
.common-accordion .common-accordion-header:not(.active) + .common-accordion-body {
  height: 0;
}

.controls {
  display: flex;
  justify-content: flex-end;
}
.controls.center {
  justify-content: center;
}
.controls .btn + .btn,
.controls .btn + form,
.controls form + form {
  margin-left: 8px;
}

.common-comment-form-layout {
  display: flex;
}
.common-comment-form-layout .user-icon {
  margin-right: 16px;
}
.common-comment-form-layout .blank-wrapper {
  flex: 1;
  min-width: 0;
}

.common-rich-textarea-layout {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.02);
  border-radius: 2px;
  background: #fff;
}
.common-rich-textarea-layout .common-rich-textarea-panel {
  position: relative;
}
.common-rich-textarea-layout .common-rich-textarea-panel .file-attach-btn {
  float: right;
  margin-top: 6px;
  margin-right: 16px;
}
.common-rich-textarea-layout .common-rich-textarea-panel input[type=file] {
  box-sizing: border-box;
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: 144px;
  height: 32px;
  font-size: 0;
  margin-top: 6px;
  margin-right: 16px;
  padding: 0;
  background: red;
  opacity: 0.4;
  cursor: pointer;
}
.common-rich-textarea-layout .common-rich-textarea-panel .common-tabs {
  margin-bottom: 0;
  border-radius: 2px 2px 0 0;
  background: hsl(216, 20%, 97%);
}
.common-rich-textarea-layout .common-rich-textarea-panel .common-tabs > ul {
  margin-left: 16px;
}
.common-rich-textarea-layout .common-rich-textarea-panel .common-tab-body {
  padding: 16px;
  border-bottom: 1px solid #cbcace;
}
.common-rich-textarea-layout .common-rich-textarea-panel .common-tab-body-textarea textarea {
  padding: 0;
  border: none;
  box-shadow: none;
  resize: none;
}
.common-rich-textarea-layout .common-rich-textarea-panel .common-tab-body-preview {
  min-height: 10em;
}
.common-rich-textarea-layout .common-rich-textarea-panel .common-tab-body-preview .comment-body img {
  max-width: 100%;
}
.common-rich-textarea-layout .comment-controls {
  display: flex;
  justify-content: flex-end;
  padding: 8px 16px;
  border-radius: 0 0 2px 2px;
  background: hsl(216, 20%, 97%);
}
.common-rich-textarea-layout .comment-controls .btn + .btn {
  margin-left: 8px;
}

.common-rich-textarea-bordered-layout {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.02);
  border-radius: 2px;
  background: #fff;
  border: none;
  border-radius: 0;
}
.common-rich-textarea-bordered-layout .common-rich-textarea-panel {
  position: relative;
}
.common-rich-textarea-bordered-layout .common-rich-textarea-panel .file-attach-btn {
  float: right;
  margin-top: 6px;
  margin-right: 16px;
}
.common-rich-textarea-bordered-layout .common-rich-textarea-panel input[type=file] {
  box-sizing: border-box;
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: 144px;
  height: 32px;
  font-size: 0;
  margin-top: 6px;
  margin-right: 16px;
  padding: 0;
  background: red;
  opacity: 0.4;
  cursor: pointer;
}
.common-rich-textarea-bordered-layout .common-rich-textarea-panel .common-tabs {
  margin-bottom: 0;
  border-radius: 2px 2px 0 0;
  background: hsl(216, 20%, 97%);
}
.common-rich-textarea-bordered-layout .common-rich-textarea-panel .common-tabs > ul {
  margin-left: 16px;
}
.common-rich-textarea-bordered-layout .common-rich-textarea-panel .common-tab-body {
  padding: 16px;
  border-bottom: 1px solid #cbcace;
}
.common-rich-textarea-bordered-layout .common-rich-textarea-panel .common-tab-body-textarea textarea {
  padding: 0;
  border: none;
  box-shadow: none;
  resize: none;
}
.common-rich-textarea-bordered-layout .common-rich-textarea-panel .common-tab-body-preview {
  min-height: 10em;
}
.common-rich-textarea-bordered-layout .common-rich-textarea-panel .common-tab-body-preview .comment-body img {
  max-width: 100%;
}
.common-rich-textarea-bordered-layout .comment-controls {
  display: flex;
  justify-content: flex-end;
  padding: 8px 16px;
  border-radius: 0 0 2px 2px;
  background: hsl(216, 20%, 97%);
}
.common-rich-textarea-bordered-layout .comment-controls .btn + .btn {
  margin-left: 8px;
}
.common-rich-textarea-bordered-layout .common-rich-textarea-panel {
  border: 1px solid #cbcace;
}
.common-rich-textarea-bordered-layout .common-rich-textarea-panel .file-attach-btn {
  float: right;
  margin-right: 6px;
}
.common-rich-textarea-bordered-layout .common-rich-textarea-panel .common-tabs > ul {
  margin-left: 0;
}
.common-rich-textarea-bordered-layout .common-rich-textarea-panel .common-tab-body-textarea {
  border-bottom: none;
}
.common-rich-textarea-bordered-layout .comment-controls {
  padding: 16px 0 0;
  background: #fff;
}

.comments-container {
  margin-top: 16px;
}
.comments-container article {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
}
.comments-container article.fade-out {
  transition: opacity 0.3s ease-out;
}
.comments-container article.removed {
  display: none;
}
.comments-container article.removed .removed-comment {
  flex: 1;
  margin-left: 64px;
  padding: 16px;
  border-radius: 4px;
  background: #cbcace;
  opacity: 0.5;
}
.comments-container article > .comment-user-icon-wrapper {
  display: flex;
  flex-direction: column;
  margin-right: 16px;
}
.comments-container article > .comment-user-icon-wrapper .user-icon {
  vertical-align: bottom;
}
.comments-container article > .comment-user-icon-wrapper > .topic-staff-label {
  margin-top: 6px;
}
.comments-container article a.comment-anchor {
  position: relative;
  top: -8px;
}

.common-comment-body {
  position: relative;
}
.common-comment-body textarea.for-raw-copy {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
}

.common-comment-box-layout {
  flex: 1;
  min-width: 0;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.02);
  background-color: #fff;
}
.common-comment-box-layout header {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  height: 48px;
  line-height: 48px;
  padding: 0 16px;
  border-radius: 2px 2px 0 0;
  border-bottom: 1px solid #f2f2f3;
  font-weight: bold;
  background: hsl(216, 20%, 97%);
  color: hsla(216, 10%, 20%, 0.6);
}
.common-comment-box-layout header > span:last-child {
  margin-left: auto;
}
.common-comment-box-layout header > span:last-child .help-me-badge {
  margin-right: 4px;
}
.common-comment-box-layout header > span:last-child .menu-button > .dropdown-menu {
  width: 200px;
  font-weight: normal;
  text-align: left;
}
.common-comment-box-layout.help-me > header {
  background: #ffc2c7;
  color: #4d191e;
}
.common-comment-box-layout.help-me > header .menu-button {
  display: none;
}
.common-comment-box-layout .common-comment-body {
  flex: 1;
  padding: 16px;
  background: #fff;
}
.common-comment-box-layout .submitted-answer {
  margin-top: 8px;
  margin-left: 8px;
  margin-right: 8px;
  margin-bottom: 8px;
  padding: 8px;
  background-color: #e6f0fe;
  border-radius: 4px;
  display: flex;
  align-items: center;
}
.common-comment-box-layout .submitted-answer + .common-comment-body {
  padding-top: 8px;
}
.common-comment-box-layout .submitted-answer .difficulty {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  height: 32px;
}
.common-comment-box-layout .submitted-answer .difficulty .difficulty-icon {
  width: 32px;
}
.common-comment-box-layout .submitted-answer .difficulty .difficulty-text {
  margin-left: 8px;
}
.common-comment-box-layout .submitted-answer .submitted-answer-notice {
  margin: 0 16px;
  flex: 1 1 auto;
  text-align: right;
  color: hsla(216, 10%, 20%, 0.6);
}
.common-comment-box-layout .submitted-answer button {
  flex: 0 0 auto;
}
.common-comment-box-layout footer {
  box-sizing: border-box;
  min-height: 36px;
  padding-right: 16px;
  padding-left: 16px;
  border-radius: 0 0 2px 2px;
  border-top: 1px solid #f2f2f3;
  font-size: 12px;
  background: hsl(216, 20%, 97%);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.common-comment-box-layout footer time {
  font-size: 12px;
  color: hsl(216, 10%, 20%);
  opacity: 0.5;
}
.common-comment-box-layout footer time > a {
  text-decoration: none;
  color: inherit;
}
.common-comment-box-layout footer time > a:hover {
  text-decoration: underline;
  color: #1f76f9;
}
.common-comment-box-layout footer time {
  display: inline-block;
  min-width: 132px;
  text-align: right;
}

.difficulty-icon {
  width: 100%;
  height: 100%;
  background-size: cover;
}
.difficulty-icon.difficulty-easy {
  background-image: url(/assets/img/exercise-impression-easy.png?v=2);
}
.difficulty-icon.difficulty-normal {
  background-image: url(/assets/img/exercise-impression-normal.png?v=2);
}
.difficulty-icon.difficulty-hard {
  background-image: url(/assets/img/exercise-impression-hard.png?v=2);
}
.difficulty-icon.difficulty-incomplete {
  background-image: url(/assets/img/exercise-impression-incomplete.png?v=2);
}

.difficulty-text {
  font-weight: 600;
}
.difficulty-text.difficulty-easy {
  color: #29a329;
}
.difficulty-text.difficulty-normal {
  color: #f99f06;
}
.difficulty-text.difficulty-hard {
  color: #e83040;
}
.difficulty-text.difficulty-incomplete {
  color: hsla(216, 10%, 20%, 0.6);
}

.hashtag-help-me {
  display: inline-block;
  padding: 0 4px;
  background: #ffebec;
  color: #4d191e;
  font-weight: bold;
}

.reaction {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 0 6px;
}

.reaction-summary {
  position: relative;
  display: inline-flex;
  align-items: center;
  box-sizing: border-box;
  border: 1px solid #cbcace;
  border-radius: 16px;
  width: 50px;
  height: 24px;
  margin: 6px 8px 0 0;
  cursor: pointer;
}
.reaction-summary:hover {
  background: rgba(50, 49, 53, 0.05);
}
.reaction-summary.hidden {
  display: none;
}
.reaction-summary > .reaction-icon {
  width: 16px;
  height: 24px;
  line-height: 24px;
  font-size: 14px;
  margin-left: auto;
  margin-right: 6px;
}
.reaction-summary > .reaction-icon > img {
  width: 16px;
  height: 16px;
  margin-top: 4px;
}
.reaction-summary .reaction-counter {
  height: 24px;
  line-height: 24px;
  margin-right: auto;
  font-size: 12px;
  font-weight: bold;
}
.reaction-summary .reaction-tooltip {
  display: block;
  position: absolute;
  top: 32px;
  left: -39px;
  z-index: 1;
  box-sizing: border-box;
  width: 128px;
  height: 68px;
  padding: 8px;
  border-radius: 2px;
  background: #323135;
  color: #fafafa;
}
.reaction-summary .reaction-tooltip.hidden {
  display: none;
}
.reaction-summary .reaction-tooltip::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 56px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px;
  border-color: transparent transparent #323135 transparent;
}
.reaction-summary.gave {
  background: #e6f0fe;
  border-color: #1f76f9;
}
.reaction-summary.gave:hover {
  background: rgba(31, 118, 249, 0.1);
}
.reaction-summary.gave .reaction-counter {
  color: #1f76f9;
}

.reaction-controls {
  position: relative;
  height: 24px;
  margin-top: 6px;
  margin-right: 8px;
}
.reaction-controls .reaction-panel {
  position: absolute;
  top: 24px;
  left: 0;
  z-index: 1;
  display: inline-flex;
  background: #ffffff;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.1), 0px 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  padding: 4px;
}
.reaction-controls .reaction-panel.hidden {
  display: none;
}
.reaction-controls .reaction-panel > .reaction-icon {
  font-size: 20px;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 4px;
  cursor: pointer;
}
.reaction-controls .reaction-panel > .reaction-icon > img {
  width: 20px;
  height: 20px;
  margin-top: 6px;
}
.reaction-controls .reaction-panel > .reaction-icon + .reaction-icon {
  margin-left: 4px;
}
.reaction-controls .reaction-panel > .reaction-icon:hover {
  background: #f2f2f3;
}
.reaction-controls .reaction-panel > .reaction-icon.gave {
  background: #e6f0fe;
}
.reaction-controls .reaction-panel > .reaction-icon.gave:hover {
  background: rgba(31, 118, 249, 0.15);
}

.reaction-button {
  display: inline-flex;
  width: 24px;
  height: 24px;
  line-height: 24px;
  background-image: url(/assets/img/reaction-button.png);
  background-size: 16px 16px;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  border-radius: 4px;
  user-select: none;
}
.reaction-button.pushed, .reaction-button:hover {
  background-color: rgba(50, 49, 53, 0.05);
}

.placeholder-message {
  padding: 32px 16px;
  border-radius: 4px;
  background: hsla(216, 85%, 20%, 0.05);
  color: hsla(216, 10%, 20%, 0.6);
}
.placeholder-message.center {
  text-align: center;
}

ul.sortable > li {
  cursor: grab;
}
ul.sortable > li.over {
  background-color: #e6f0fe;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  background: rgba(50, 49, 53, 0.5);
  z-index: 2;
}
.modal.show {
  opacity: 1;
  transition: opacity 0.3s;
  pointer-events: auto;
}

.input-pg-url-wrapper {
  position: relative;
}
.input-pg-url-wrapper > .open-playground {
  display: block;
  padding: 2px 12px;
  background: #fff;
  border: 1px solid #cbcace;
  border-radius: 2px;
  cursor: pointer;
  font-size: 12px;
  position: absolute;
  top: 6px;
  right: 5px;
}
.input-pg-url-wrapper > .open-playground:hover {
  background: #fafafa;
}

.header-band-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 64px;
  box-sizing: border-box;
  width: 100%;
  background-color: rgba(205, 225, 254, 0.7);
  color: #082a5e;
  font-size: 11px;
}
@media (min-width: 641px) {
  .header-band-layout {
    height: 32px;
  }
  .header-band-layout + .container > .root-layout {
    margin-top: 128px;
  }
  .header-band-layout + .container > .hero {
    margin-top: 128px;
  }
  .header-band-layout + .hero-section {
    margin-top: 96px;
  }
  .header-band-layout + .all-courses-section {
    margin-top: 96px;
  }
}
@media (max-width: 640px) {
  .header-band-layout {
    height: 64px;
  }
  .header-band-layout + .container > .root-layout {
    margin-top: 160px;
  }
  .header-band-layout + .container > .hero {
    margin-top: 160px;
  }
  .header-band-layout + .hero-section {
    margin-top: 128px;
  }
  .header-band-layout + .all-courses-section {
    margin-top: 128px;
  }
}
.header-band-layout > .header-band-contents {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.header-band-layout > .header-band-contents a {
  margin: 0 8px;
  color: #082a5e;
}

.fade-out {
  opacity: 0;
}

.global-header {
  width: 100%;
  height: 64px;
  background: #fff;
  box-shadow: 0px 2px 4px rgba(50, 49, 53, 0.05);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2; /* to display box-shadow */
}
.global-header .container {
  display: flex;
  justify-content: space-between;
}
.global-header .global-logo {
  flex: 0 0 auto;
  margin: 0;
  width: 150px;
  height: 64px;
  font-weight: normal;
  color: #323135;
  font-size: 0;
}
.global-header .global-logo > a {
  display: inline-block;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  background-image: url(/assets/img/topbar_logo.png?v=20240902);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.global-header .global-logo > a:hover {
  opacity: 0.8;
}

.global-links {
  margin-left: 16px;
}
.global-links ul {
  display: flex;
  height: 100%;
}
.global-links ul li {
  height: 100%;
}
.global-links ul li a {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  line-height: 64px;
  padding: 0 16px;
  font-weight: bold;
  color: #323135;
  text-decoration: none;
}
.global-links ul li a:hover {
  background: rgba(50, 49, 53, 0.05);
}

.header-menus-layout {
  margin-left: auto;
}
.header-menus-layout.has-notification {
  flex: 0;
}
.header-menus-layout.has-notification .menu-notification .dropdown-toggle {
  position: relative;
}
.header-menus-layout.has-notification .menu-notification .dropdown-toggle::after {
  content: attr(data-notification-count);
  position: absolute;
  top: 11px;
  left: 36px;
  display: inline-block;
  padding: 2px 6px;
  border: 2px solid #fff;
  border-radius: 13px;
  background: #e83040;
  font-size: 10px;
  font-weight: bold;
  color: #fff;
}
.header-menus-layout > .header-menus {
  list-style: none;
  display: flex;
  align-items: center;
  height: 100%;
}
.header-menus-layout > .header-menus > li {
  height: 100%;
}
.header-menus-layout > .header-menus > li.login {
  height: auto;
}
.header-menus-layout > .header-menus > li:hover {
  background: rgba(50, 49, 53, 0.05);
}
.header-menus-layout > .header-menus > li .dropdown-toggle {
  display: flex;
  align-items: center;
  height: 100%;
}
.header-menus-layout > .header-menus > li.menu-user {
  flex: 0;
  cursor: pointer;
}
.header-menus-layout > .header-menus > li.menu-user .dropdown-toggle {
  padding: 0 8px;
}
.header-menus-layout > .header-menus > li.menu-user .dropdown-toggle img {
  width: 34px;
  height: 34px;
}
.header-menus-layout > .header-menus > li.menu-user .dropdown-toggle .username {
  margin: 0 auto 0 8px;
  min-width: 36px;
  max-width: 96px;
  font-size: 13px;
  font-weight: bold;
}
.header-menus-layout > .header-menus > li.menu-user .dropdown-menu {
  min-width: 164px;
}
.header-menus-layout > .header-menus > li.menu-user i.fa-caret-down {
  display: inline-block;
  width: 16px;
  margin-left: 8px;
  text-align: center;
}
.header-menus-layout > .header-menus > li.menu-notification {
  margin-right: 16px;
  width: 64px;
}
.header-menus-layout > .header-menus > li.menu-notification .dropdown-toggle {
  font-size: 20px;
  color: #cbcace;
}
.header-menus-layout > .header-menus > li.menu-notification .dropdown-toggle > i {
  margin: 0 auto;
}
.header-menus-layout > .header-menus > li.menu-notification .dropdown-menu {
  max-height: 320px;
  overflow-y: scroll;
}
.header-menus-layout > .header-menus > li.menu-notification .dropdown-menu ul.empty-list {
  min-height: 240px;
}
.header-menus-layout > .header-menus > li.menu-notification .dropdown-menu ul .notification-loading {
  padding: 12px;
  text-align: center;
  color: #cbcace;
}
.header-menus-layout > .header-menus > li.menu-notification .exercise-title {
  font-size: 14px;
}
.header-menus-layout > .header-menus > li.menu-notification .notification-body {
  box-sizing: border-box;
  margin: 8px 0;
  max-height: 34px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: rgba(50, 49, 53, 0.5);
  font-size: 14px;
}
.header-menus-layout > .header-menus > li.menu-notification .notification-created-at {
  font-size: 11px;
}

.global-footer {
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  background-color: hsla(216, 85%, 20%, 0.05);
  color: hsla(216, 10%, 20%, 0.6);
}
@media (min-width: 641px) {
  .global-footer {
    padding-bottom: 32px;
    padding-top: 64px;
  }
}
@media (max-width: 640px) {
  .global-footer {
    padding-bottom: 16px;
    padding-top: 32px;
  }
}
.global-footer-body {
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
  position: relative;
}
@media (min-width: 1025px) {
  .global-footer-body {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (min-width: 641px) and (max-width: 1024px) {
  .global-footer-body {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
@media (max-width: 640px) {
  .global-footer-body {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (min-width: 641px) {
  .global-footer-content {
    display: flex;
  }
}
@media (max-width: 640px) {
  .global-footer-content {
    text-align: center;
  }
}
.global-footer-logo {
  width: 206px;
}
@media (min-width: 641px) {
  .global-footer-logo {
    margin-right: auto;
  }
}
@media (max-width: 640px) {
  .global-footer-logo {
    margin-left: auto;
    margin-right: auto;
  }
}
.global-footer-logo img {
  display: block;
  width: 100%;
}
@media (min-width: 641px) {
  .global-footer-menu-groups {
    display: flex;
    margin-left: 32px;
  }
}
@media (max-width: 640px) {
  .global-footer-menu-groups {
    display: inline-block;
    margin-top: 32px;
  }
}
.global-footer-menu-group {
  border-left: hsla(216, 10%, 20%, 0.07) solid 4px;
  padding-left: 16px;
  text-align: left;
  line-height: 1.6;
}
@media (min-width: 641px) {
  .global-footer-menu-group {
    display: inline-block;
    padding-bottom: 4px;
    padding-top: 4px;
  }
}
.global-footer-menu-group li + li {
  margin-top: 8px;
}
.global-footer-menu-group a {
  color: inherit;
  text-decoration: none;
}
@media (min-width: 641px) {
  .global-footer-menu-group + .global-footer-menu-group {
    margin-left: 64px;
  }
}
@media (max-width: 640px) {
  .global-footer-menu-group + .global-footer-menu-group {
    margin-top: 32px;
  }
}
.global-footer-copyright {
  color: hsla(216, 10%, 20%, 0.4);
  font-size: 0.8rem;
  text-align: center;
}
@media (min-width: 641px) {
  .global-footer-copyright {
    margin-top: 64px;
  }
}
@media (max-width: 640px) {
  .global-footer-copyright {
    margin-top: 32px;
  }
}
.global-footer-copyright small {
  font-size: 0.8rem;
}
.global-footer-company {
  margin-top: 8px;
  text-align: center;
}
.global-footer-company img {
  display: inline-block;
}

.class-header {
  align-items: center;
  background-color: #e6f0fe;
  border-radius: 8px;
  color: #082a5e;
  display: flex;
  min-height: 128px;
  overflow: hidden;
  padding-bottom: 32px;
  padding-top: 32px;
  position: relative;
}
.class-header.class-header-256free {
  background-color: hsl(216, 100%, 90%);
}
.class-header.class-header-css {
  background-color: hsl(205, 100%, 94%);
}
.class-header.class-header-js {
  background-color: hsl(54, 100%, 94%);
}
.class-header::after {
  border: rgba(8, 42, 94, 0.05) solid 1px;
  border-radius: 8px;
  bottom: 0;
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  position: absolute;
  right: 0;
  top: 0;
}
.class-header-atmos {
  background: linear-gradient(to right, transparent, #e6f0fe);
  bottom: 0;
  left: 0;
  padding: 16px;
  position: absolute;
  right: 0;
  top: 0;
}
.class-header-atmos::before {
  background: url(/assets/img/class-card/sphere.svg) no-repeat center;
  background-size: contain;
  bottom: -112px;
  content: "";
  height: 256px;
  pointer-events: none;
  position: absolute;
  right: -24px;
  width: 256px;
}
.class-header-atmos::after {
  background: url(/assets/img/class-card/stars.svg) no-repeat center;
  background-size: contain;
  bottom: 8px;
  content: "";
  left: 8px;
  pointer-events: none;
  position: absolute;
  right: 8px;
  top: 8px;
}
.class-header-body {
  flex: 1;
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
  position: relative;
}
@media (min-width: 1025px) {
  .class-header-body {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (min-width: 641px) and (max-width: 1024px) {
  .class-header-body {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
@media (max-width: 640px) {
  .class-header-body {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.class-header-title {
  font-size: 1.5rem;
  font-weight: bold;
}
.class-header-subtitle {
  font-size: 0.9rem;
  margin-top: 2px;
}
.class-header-lead {
  margin-top: 8px;
}
.class-header-lead p {
  margin: 0;
}
.class-header-button {
  margin-top: 16px;
}

.class-header-button {
  align-items: center;
  border: currentColor solid 1px;
  border-radius: 3px;
  color: currentColor;
  display: inline-flex;
  font-size: 0.9rem;
  padding: 4px 8px;
  text-decoration: none;
}
.class-header-button:hover {
  background-color: rgba(8, 42, 94, 0.05);
}
.class-header-button-icon {
  height: 16px;
  margin-right: 4px;
  overflow: hidden;
  position: relative;
  width: 16px;
}
.class-header-button-icon svg {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.class-header-button-title {
  font-weight: bold;
}

.class-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.class-card a {
  color: inherit;
  display: block;
  text-decoration: none;
}
.class-card-main {
  background-color: #e6f0fe;
  overflow: hidden;
  padding-top: min(56.25%, 160px);
  position: relative;
  transition: opacity 0.2s;
}
.class-card-main.class-card-main-256free {
  background-color: hsl(216, 100%, 90%);
}
.class-card-main.class-card-main-css {
  background-color: hsl(205, 100%, 94%);
}
.class-card-main.class-card-main-js {
  background-color: hsl(54, 100%, 94%);
}
.class-card-main::after {
  border: rgba(8, 42, 94, 0.05) solid 1px;
  border-radius: 12px 12px 0 0;
  bottom: 0;
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  position: absolute;
  right: 0;
  top: 0;
}
.class-card:hover .class-card-main {
  opacity: 0.8;
}
.class-card-atmos {
  background: linear-gradient(to right, transparent, #e6f0fe);
  bottom: 0;
  left: 0;
  padding: 16px;
  position: absolute;
  right: 0;
  top: 0;
}
.class-card-atmos::before {
  background: url(/assets/img/class-card/sphere.svg) no-repeat center;
  background-size: contain;
  bottom: -100px;
  content: "";
  height: 183px;
  pointer-events: none;
  position: absolute;
  right: -50px;
  width: 183px;
}
.class-card-atmos::after {
  background: url(/assets/img/class-card/stars.svg) no-repeat center;
  background-size: contain;
  bottom: 8px;
  content: "";
  left: 8px;
  pointer-events: none;
  position: absolute;
  right: 8px;
  top: 8px;
}
.class-card-header {
  font-weight: bold;
}
.class-card-chip {
  background-color: #082a5e;
  border-radius: 4px;
  color: hsl(216, 10%, 95%);
  display: inline-block;
  padding: 2px 8px;
}
.class-card-title {
  color: #082a5e;
  margin-left: 4px;
  margin-top: 8px;
}
.class-card-footer {
  display: flex;
  padding: 10px 12px;
}
.class-card-term {
  color: hsla(216, 10%, 20%, 0.6);
}
.class-card-price {
  font-weight: bold;
  margin-left: auto;
}
.class-card-price-currency-unit {
  font-size: 0.8em;
}
.class-card.class-card-simple .class-card-atmos {
  align-items: center;
  display: flex;
}
.class-card.class-card-simple .class-card-header {
  color: #082a5e;
}

.quiz-card {
  display: block;
  color: inherit;
  text-decoration: none;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.quiz-card-main {
  background-color: #e6f0fe;
  overflow: hidden;
  padding-top: min(56.25%, 128px);
  position: relative;
  transition: opacity 0.2s;
}
.quiz-card-main.quiz-card-main-256free {
  background-color: hsl(216, 100%, 90%);
}
.quiz-card-main.quiz-card-main-css {
  background-color: hsl(205, 100%, 94%);
}
.quiz-card-main.quiz-card-main-js {
  background-color: hsl(54, 100%, 94%);
}
.quiz-card-main::after {
  border: rgba(8, 42, 94, 0.05) solid 1px;
  border-radius: 12px 12px 0 0;
  bottom: 0;
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  position: absolute;
  right: 0;
  top: 0;
}
.quiz-card:hover .quiz-card-main {
  opacity: 0.8;
}
.quiz-card-atmos {
  position: relative;
  background: linear-gradient(to right, transparent, #e6f0fe);
  bottom: 0;
  left: 0;
  padding: 16px;
  position: absolute;
  right: 0;
  top: 0;
}
.quiz-card-atmos::before {
  background: url(/assets/img/class-card/sphere.svg) no-repeat center;
  background-size: contain;
  bottom: -100px;
  content: "";
  height: 183px;
  pointer-events: none;
  position: absolute;
  right: -50px;
  width: 183px;
}
.quiz-card-atmos::after {
  background-size: contain;
  bottom: 8px;
  content: "";
  left: 8px;
  pointer-events: none;
  position: absolute;
  right: 8px;
  top: 8px;
}
.quiz-card-header {
  display: flex;
  align-items: center;
  font-weight: bold;
  width: 100%;
  height: 100%;
}
.quiz-card-header-done {
  background-image: url(/assets/img/quiz-card/quiz-card-done.svg);
  background-position: right center;
  background-repeat: no-repeat;
}
.quiz-card-chip {
  background-color: #082a5e;
  border-radius: 4px;
  color: hsl(216, 10%, 95%);
  display: inline-block;
  padding: 2px 8px;
}
.quiz-card-title {
  color: #082a5e;
  margin-left: 4px;
  margin-top: 8px;
}
.quiz-card-footer {
  display: flex;
  padding: 10px 12px;
  justify-content: flex-end;
  align-items: center;
}
.quiz-card-footer-left {
  font-size: 13px;
  margin-right: 12px;
}
.quiz-card-footer-progress-bar {
  width: 64px;
  height: 8px;
  border-radius: 8px;
  background: #f2f2f3;
}
.quiz-card-footer-progress-bar-inner {
  height: 100%;
  border-radius: 8px;
  background: #1f76f9;
}
.quiz-card-placeholder {
  background-color: transparent;
  border-width: 0px;
  box-shadow: none;
}
.quiz-card.quiz-card-simple .quiz-card-atmos {
  align-items: center;
  display: flex;
}
.quiz-card.quiz-card-simple .quiz-card-header {
  color: #082a5e;
}

@media screen and (max-width: 1296px) {
  .container {
    width: 100%;
  }
}
@media screen and (max-width: 1096px) {
  .prerequisites .package-info-box {
    width: 100%;
  }
  .home-classes {
    display: block;
    margin-top: 0;
  }
}
@media screen and (max-width: 1008px) {
  .container.narrow {
    width: 100%;
  }
}
@media screen and (max-width: 915px) {
  .all-courses > main {
    width: calc(100% - 64px);
    margin-left: auto;
    margin-right: auto;
  }
  .courses-section {
    flex-direction: column;
    margin: 0;
  }
  .courses-section + .courses-section {
    margin-top: 32px;
  }
  .courses-section > .class-title-card {
    width: 100%;
    max-width: 392px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
  }
  .courses-section > .class-title-card > a {
    flex: 1;
  }
  .course-faq-row {
    flex-direction: column;
  }
  .course-faq-row .course-faq-question {
    border-right: none;
    border-bottom: 1px dashed #f2f2f3;
  }
  .tweet-section-invitation .tweet-section-layout img {
    width: 80px;
    height: 80px;
  }
  .tweet-section-invitation .tweet-section-layout .tweet-section-body {
    margin-left: 28px;
  }
  .tweet-section-invitation .tweet-section-layout .tweet-section-body .tweet-bubble br {
    display: inline;
  }
  .home-quizzes {
    display: block;
    margin-top: 0;
  }
}
@media screen and (min-width: 800px) {
  .two-col-layout > *:last-child.stickyReady {
    display: flex;
    align-items: flex-start;
  }
  .two-col-layout > *:last-child.stickyReady > div {
    width: 320px;
  }
  .two-col-layout > *:last-child.stickyTop > div {
    position: fixed;
  }
  .two-col-layout > *:last-child.stickyBottom {
    flex-direction: column-reverse;
  }
}
/* 800px */
@media screen and (max-width: 799px) {
  .two-col-layout {
    display: block;
  }
  .two-col-layout > *:first-child {
    width: auto;
  }
  .two-col-layout > *:last-child {
    width: auto;
    margin-top: 64px;
    margin-left: 0;
  }
  .single-col-layout {
    width: 100%;
  }
  .single-col-layout > main {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero {
    display: block;
    width: auto;
    height: auto;
  }
  .global-footer .footer-links {
    display: block;
    text-align: center;
  }
  .global-footer .footer-links ul {
    margin: 16px 0 0;
    justify-content: center;
  }
}
@media screen and (max-width: 637px) {
  .global-header .global-links {
    display: none;
  }
  .home-classes > .class-title-card {
    flex: 1 100%;
  }
}
@media screen and (max-width: 540px) {
  .tweet-section-declaration .tweet-section-layout img {
    width: 80px;
    height: 80px;
  }
  .tweet-section-declaration .tweet-section-layout .tweet-section-body {
    margin-left: 28px;
  }
  .tweet-section-declaration .tweet-section-layout .tweet-section-body .tweet-bubble br {
    display: inline;
  }
}
/* 480px - Cover iPhone SE */
@media screen and (max-width: 479px) {
  .global-header .container.logged-in {
    padding-right: 0;
  }
  .global-header .container .menu-user .username {
    display: none;
  }
  .breadcrumb ul {
    overflow: hidden;
  }
  .breadcrumb ul li {
    max-width: 92px;
  }
  .breadcrumb ul li:last-child {
    max-width: 50vw;
  }
  .global-footer .footer-links {
    display: block;
    text-align: center;
  }
  .global-footer .footer-links ul {
    margin: 16px 0 0;
    justify-content: center;
  }
  .curriculum-exercise-list.compact .common-row-component > a {
    padding: 0;
    flex-direction: column;
  }
  .curriculum-exercise-list.compact .common-row-component > a .exercise-title-with-index {
    margin-right: 0;
    padding: 16px 16px 12px;
  }
  .curriculum-exercise-list.compact .common-row-component > a > .status-data {
    min-width: auto;
    max-width: initial;
    border-top: 1px solid #f2f2f3;
  }
  .curriculum-exercise-list.compact .common-row-component > a > .status-data .student-exercise-status {
    display: none;
  }
  .curriculum-exercise-list.compact .common-row-component > a > .status-data .last-updated {
    margin-left: auto;
    padding: 8px 16px;
  }
  .class-members .common-row-component a.go-to-profile {
    padding: 0;
    flex-direction: column;
    align-items: flex-start;
  }
  .class-members .common-row-component a.go-to-profile > .icon-username {
    margin-right: 0;
    padding: 16px;
  }
  .class-members .common-row-component a.go-to-profile > .icon-username::after {
    top: 36px;
    left: 36px;
  }
  .class-members .common-row-component a.go-to-profile > .member-progress {
    width: 100%;
    max-width: initial;
    margin-left: 0;
    padding: 16px;
    border-top: 1px solid #f2f2f3;
  }
  .class-members .common-row-component.online .icon-username::after {
    top: 36px;
    left: 36px;
  }
  .exercise-board {
    margin-bottom: 32px;
  }
  .exercise-board .exercise-question-layout {
    margin-left: -16px;
    margin-right: -16px;
  }
  .exercise-board .exercise-question-layout > .user-icon {
    display: none;
  }
  .exercise-board .challenge-this-exercise {
    margin-left: -16px;
    margin-right: -16px;
  }
  .exercise-board .divider-message.top-of-exercise-comments {
    margin-left: 0;
  }
  .exercise-board .exercise-comments-placeholder {
    margin-left: 0;
  }
  .exercise-board .system-comment {
    margin-left: 0;
  }
  .exercise-board .placeholder-message {
    margin-left: 0;
  }
  .exercise-board .teaching-note-cheat-sheet {
    margin-left: 0;
  }
  .exercise-board .next-exercise {
    margin-left: 0;
  }
  .exercise-board .exercise-comment-form-layout > .user-icon {
    display: none;
  }
  .topic-board > .topic-layout {
    margin-left: -16px;
    margin-right: -16px;
  }
  .topic-board > .topic-layout .topic-user-icon-wrapper {
    display: none;
  }
  .topic-board > .topic-layout > article {
    margin-left: 0;
  }
  .comments-container article {
    position: relative;
    align-items: stretch;
    flex-direction: column;
  }
  .comments-container article .comment-user-icon-wrapper {
    display: inline;
    position: absolute;
    top: 8px;
    left: 8px;
  }
  .comments-container article .comment-user-icon-wrapper .user-icon {
    width: 24px;
    height: 24px;
  }
  .comments-container article .comment-user-icon-wrapper .topic-staff-label {
    display: none;
  }
  .common-comment-box-layout header {
    padding-left: 36px;
    line-height: 40px;
    height: 40px;
  }
  .common-comment-box-layout footer {
    padding-left: 8px;
    padding-right: 8px;
  }
  .common-comment-form-layout > .user-icon {
    display: none;
  }
  .common-rich-textarea-layout .common-rich-textarea-panel .file-attach-btn > span {
    display: none;
  }
  /* 画面幅が狭いため、パネルを常に画面左端から表示させたい */
}
/* Be sure to import here */
.markdown {
  line-height: 1.6;
}
.markdown h1, .markdown h2, .markdown h3, .markdown h4, .markdown h5, .markdown h6 {
  margin: 0 0 16px;
}
.markdown h1 {
  font-size: 2rem;
}
.markdown h1.rich {
  font-size: 14px;
  background-repeat: no-repeat;
  background-position: right bottom;
  display: flex;
  align-items: center;
  min-height: 51px;
  border-bottom: 2px solid rgb(8, 42, 94);
}
.markdown h1.rich.img01 {
  padding-right: 60px;
  background-image: url(/assets/img/markdown/rich-heading-img01.svg);
}
.markdown h1.rich.img02 {
  padding-right: 60px;
  background-image: url(/assets/img/markdown/rich-heading-img02.svg);
}
.markdown h1.rich.img03 {
  padding-right: 60px;
  background-image: url(/assets/img/markdown/rich-heading-img03.svg);
}
.markdown h1.rich.img04 {
  padding-right: 90px;
  background-image: url(/assets/img/markdown/rich-heading-img04.svg);
}
.markdown h2 {
  font-size: 1.5rem;
}
.markdown h3 {
  font-size: 1.25rem;
}
.markdown a {
  color: #1f76f9;
  text-decoration: underline;
}
.markdown a:hover {
  text-decoration: none;
  background: rgba(31, 118, 249, 0.1);
}
.markdown img {
  max-width: 100%;
  max-height: 512px;
}
.markdown p {
  margin: 0 0 16px;
}
.markdown ul {
  list-style-type: disc;
}
.markdown ol,
.markdown ul {
  margin-bottom: 16px;
  padding-left: 24px;
}
.markdown ol li + li,
.markdown ul li + li {
  margin-top: 4px;
}
.markdown ol li.task-list,
.markdown ul li.task-list {
  margin-left: -24px;
  list-style: none;
}
.markdown ol li.task-list label.checkbox,
.markdown ul li.task-list label.checkbox {
  align-items: flex-start;
}
.markdown ol li.task-list label.checkbox > input[type=checkbox],
.markdown ul li.task-list label.checkbox > input[type=checkbox] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
}
.markdown ol li.task-list label.checkbox > input:checked + .checkbox-text::before,
.markdown ul li.task-list label.checkbox > input:checked + .checkbox-text::before {
  top: 2px;
  left: 3.5px;
  font-size: 10px;
}
.markdown ol ol,
.markdown ol ul,
.markdown ul ol,
.markdown ul ul {
  margin-top: 4px;
  margin-bottom: 0;
}
.markdown blockquote {
  margin: 0;
  padding-left: 8px;
  border-left: 3px solid #cbcace;
  color: #98969c;
}
.markdown pre, .markdown code {
  font-family: Menlo, Monaco, "Ubuntu Mono", Consolas, source-code-pro, "Hiragino Sans", Meiryo, "Courier New", Arial, "Helvetica Neue", Helvetica monospace;
  background-color: #f2f2f3;
  color: #646369;
}
.markdown pre {
  margin: 0 0 16px;
  padding: 0;
  border-radius: 2px;
  overflow: auto;
}
.markdown pre code {
  margin: 0;
  padding: 16px 2px 16px 16px;
  display: block;
}
.markdown .pre {
  position: relative;
}
.markdown .pre .copy {
  display: flex;
  align-items: flex-start;
  position: absolute;
  top: 8px;
  right: 8px;
}
.markdown .pre .copy .message {
  display: none;
}
.markdown .pre .copy button {
  color: #646369;
  background-color: #f2f2f3;
  border: 1px solid #cbcace;
  border-radius: 7px;
  padding: 6px 8px;
  font-size: 16px;
  cursor: pointer;
  width: 32px;
  text-align: center;
}
.markdown .pre .copy button i {
  display: inline-block;
}
.markdown .pre .copy button i:nth-child(2) {
  display: none;
}
.markdown .pre .copy.copied .message {
  display: inline-block;
  background-color: rgb(9, 9, 9);
  color: hsl(216, 10%, 95%);
  padding: 4px 6px;
  font-size: 12px;
  border-radius: 4px;
  margin-right: 4px;
}
.markdown .pre .copy.copied button {
  color: #29a329;
  border-color: #29a329;
}
.markdown .pre .copy.copied button i {
  font-size: 14px;
}
.markdown .pre .copy.copied button i:nth-child(1) {
  display: none;
}
.markdown .pre .copy.copied button i:nth-child(2) {
  display: inline;
}
.markdown code {
  margin: 0 0.2em;
  padding: 0.2em 0.4em;
  border-radius: 3px;
  font-size: 85%;
}
.markdown > *:last-child {
  margin-bottom: 0;
}
.markdown > *:last-child li:last-child {
  margin-bottom: 0;
}

html {
  height: 100%;
}

body {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.site-top-for-guest {
  flex: 1;
  background: #1060d8;
  position: relative;
}
.site-top-for-guest > .site-top-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 219px;
  height: 144px;
}
.site-top-for-guest > .site-top-center > .site-top-brand {
  margin-bottom: 32px;
}
.site-top-for-guest > .site-top-center > .site-top-brand > img {
  width: 219px;
  height: 65px;
}

.page-id-index-index {
  /*&.guest {
      .global-footer {
          @include fixed-center-global-footer();

          .footer-links {
              color: #fff;

              a {
                  color: #fff;
              }
          }
      }
  }*/
}

.site-top-for-guest-bg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50%;
  background-color: #1060d8;
  background-image: url(/assets/img/site-top-hero.png);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center bottom;
  opacity: 0.3;
}

.agree-to-terms-section-layout {
  box-sizing: border-box;
  margin: 64px auto;
  width: 360px;
  padding: 32px;
  border: 1px solid rgba(0, 0, 0, 0.02);
  border-radius: 2px;
  background: #fff;
}
.agree-to-terms-section-layout > .logo {
  text-align: center;
}
.agree-to-terms-section-layout > .logo > img {
  border-radius: 50%;
}
.agree-to-terms-section-layout > .agree-to-terms-layout {
  margin: 48px 0 0;
}
.agree-to-terms-section-layout > .agree-to-terms-layout .login-notice {
  font-size: 13px;
}
.agree-to-terms-section-layout > .agree-to-terms-layout .field {
  display: flex;
  padding: 16px;
  background: #f2f2f3;
}
.agree-to-terms-section-layout > .agree-to-terms-layout .field label {
  margin: 0 auto;
  align-items: flex-start;
}
.agree-to-terms-section-layout > .agree-to-terms-layout .logout-link {
  margin-top: 16px;
  text-align: center;
}

.page-id-index-agree_to_terms .global-footer .footer-links {
  justify-content: center;
}

.home-classes {
  display: flex;
  flex-wrap: wrap;
  margin: -16px 0 0 -16px;
}
.home-classes > .class-title-card {
  flex: 1 calc(50% - 16px);
  margin: 16px 0 0 16px;
}
.home-classes > .placeholder-message {
  flex: 1;
  margin: 16px 0 0 16px;
}

.home-quizzes {
  display: flex;
  flex-wrap: wrap;
  margin: -16px 0 0 -16px;
}
.home-quizzes > .quiz-card {
  flex: 1 calc(50% - 16px);
  margin: 16px 0 0 16px;
}

.hero {
  box-sizing: border-box;
  margin: 96px 0 32px;
  width: 100%;
}

.hero + .container > .root-layout {
  margin-top: 32px;
}

.course-detail > section + section {
  margin-top: 32px;
}

.package-info-box {
  display: flex;
  box-sizing: border-box;
  padding: 16px;
  position: relative;
}
.package-info-box .premium-label {
  position: absolute;
  top: 72px;
  left: 16px;
}
.package-info-box .package-icon {
  flex: 0 0 64px;
  height: 64px;
  margin-right: 16px;
  text-align: center;
  position: relative;
}
.package-info-box .package-icon img {
  max-width: 100%;
}
.package-info-box .package-detail {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.package-info-box .package-detail h3 {
  font-size: 14px;
  font-weight: bold;
  margin: 0 0 8px;
}
.package-info-box .package-detail h3 a {
  color: #1f76f9;
  text-decoration: underline;
}
.package-info-box .package-detail .package-description {
  margin: 0;
  color: #323135;
}
.package-info-box .package-detail .package-completed-rate {
  width: 64px;
  height: 4px;
  margin-top: 4px;
  border-radius: 8px;
  background: #f2f2f3;
}
.package-info-box .package-detail .package-completed-rate > .package-completed-rate-inner {
  height: 100%;
  border-radius: 8px;
  background: #29a329;
}

.premium-label {
  box-sizing: border-box;
  display: inline-block;
  line-height: 16px;
  height: 16px;
  width: 64px;
  padding: 0 4px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  background: #f99f06;
}

.prerequisites {
  display: flex;
  flex-wrap: wrap;
}
.prerequisites .package-info-box {
  width: calc(50% - 16px);
}

.course-faq-row {
  display: flex;
}
.course-faq-row + .course-faq-row {
  margin-top: 8px;
}
.course-faq-row .course-faq-question {
  flex: 1;
  padding: 24px 32px;
  border-right: 1px dashed #f2f2f3;
  font-weight: bold;
  font-size: 14px;
}
.course-faq-row .course-faq-question::before {
  content: "Q. ";
}
.course-faq-row .course-faq-answer {
  flex: 1;
  padding: 24px 32px;
  border-left: 1px dashed #f2f2f3;
}
.course-faq-row .course-faq-answer::before {
  content: "A. ";
}
.course-faq-row .course-faq-answer a {
  color: #1f76f9;
}

main .simple-section-layout .payment-maintenance-announcement {
  padding: 24px 32px;
  margin-bottom: 16px;
  color: rgb(8, 42, 94);
  background: rgba(205, 225, 254, 0.7);
  border-radius: 2px;
}
main .simple-section-layout .payment-maintenance-announcement p {
  font-size: 14px;
  line-height: 21px;
  padding: 0;
  margin: 0;
}

.class-waiting-open-body.is-payment-not-completed p {
  margin-bottom: 8px;
}
.class-waiting-open-body.is-payment-not-completed form {
  margin-bottom: 16px;
}

.class-can-be-applied {
  background: #fff;
}
.class-can-be-applied > header {
  display: flex;
  justify-content: space-between;
  padding: 8px 16px;
  border-bottom: 1px solid #f2f2f3;
}
.class-can-be-applied > header > h1 {
  font-size: 14px;
  font-weight: bold;
  padding-right: 6px;
}
.class-can-be-applied > header > .class-is-full {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.class-can-be-applied > header > .class-is-full > span {
  color: #e83040;
  background-color: #ffebec;
  font-size: 11px;
  line-height: 11px;
  padding: 3px 8px 3px;
  border-radius: 8px;
  font-weight: bold;
  white-space: nowrap;
}
.class-can-be-applied > .class-can-be-applied-body {
  padding: 16px;
}
.class-can-be-applied > .class-can-be-applied-body > .class-can-be-applied-flex {
  display: flex;
  justify-content: space-between;
}
.class-can-be-applied > .class-can-be-applied-body > .class-can-be-applied-flex > .class-can-be-applied-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.class-can-be-applied > .class-can-be-applied-body > .class-can-be-applied-flex > .class-can-be-applied-info .capacity {
  display: flex;
  align-items: center;
}
.class-can-be-applied > .class-can-be-applied-body > .class-can-be-applied-flex > .class-can-be-applied-info .capacity > .capacity-value {
  color: #1f76f9;
}
.class-can-be-applied > .class-can-be-applied-body > .class-can-be-applied-flex > .class-can-be-applied-info .capacity > .num-of-waiting-list {
  display: flex;
  align-items: center;
  margin-left: 8px;
  font-size: 11px;
}
.class-can-be-applied > .class-can-be-applied-body > .class-can-be-applied-flex > .class-can-be-applied-info .price {
  font-size: 12px;
  color: #1f76f9;
}
.class-can-be-applied > .class-can-be-applied-body > .class-can-be-applied-flex > .class-can-be-applied-info .price .price-value {
  font-size: 14px;
}
.class-can-be-applied > .class-can-be-applied-body > .class-can-be-applied-flex > .class-can-be-applied-info .price .price-value .currency-unit {
  font-size: 0.8em;
}
.class-can-be-applied .subscription-of-remaining-seats-notice {
  margin-top: 8px;
  font-size: 11px;
  color: hsla(216, 10%, 20%, 0.6);
}
.class-can-be-applied.disabled .btn {
  color: #323135;
  opacity: 0.3;
}
.class-can-be-applied.not-satisfy-requirements {
  opacity: 0.3;
  position: relative;
}
.class-can-be-applied.not-satisfy-requirements::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
}

.quiz-status-info {
  background: #fff;
}
.quiz-status-info > header {
  display: flex;
  justify-content: space-between;
  padding: 8px 16px;
  border-bottom: 1px solid #f2f2f3;
}
.quiz-status-info > header > h1 {
  font-size: 14px;
  font-weight: bold;
  padding-right: 6px;
}
.quiz-status-info > .quiz-status-info-body {
  padding: 16px;
}
.quiz-status-info > .quiz-status-info-body > .quiz-status-info-flex {
  display: flex;
  justify-content: space-between;
}
.quiz-status-info > .quiz-status-info-body > .quiz-status-info-flex > .quiz-status-info-progress {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 4px;
}
.quiz-status-info > .quiz-status-info-body > .quiz-status-info-flex > .quiz-status-info-progress .progress-count {
  margin-bottom: 2px;
}
.quiz-status-info > .quiz-status-info-body > .quiz-status-info-flex > .quiz-status-info-progress .progress-bar {
  width: 136px;
  height: 8px;
  margin-top: 4px;
  margin-right: 16px;
  border-radius: 8px;
  background: #f2f2f3;
}
.quiz-status-info > .quiz-status-info-body > .quiz-status-info-flex > .quiz-status-info-progress .progress-bar > .progress-bar-inner {
  height: 100%;
  border-radius: 8px;
  background: #29a329;
}

.class-can-be-applied-list li + li {
  margin-top: 8px;
}

.class-detail-table {
  padding: 24px 32px;
  font-size: 14px;
}
.class-detail-table > .class-detail-table-row {
  display: flex;
  align-items: center;
  padding: 0 0 12px;
}
.class-detail-table > .class-detail-table-row > .name {
  flex-shrink: 0;
  width: 20%;
  color: #98969c;
  font-weight: bold;
}
.class-detail-table > .class-detail-table-row > .value {
  flex-shrink: 0;
  margin: 0;
  width: 80%;
}
.class-detail-table > .class-detail-table-row + .class-detail-table-row {
  padding: 12px 0;
  border-top: 1px solid #f2f2f3;
}
.class-detail-table > .class-detail-table-row:last-child {
  padding-bottom: 0;
}

.class-detail-cautions-layout {
  padding: 24px 32px;
}
.class-detail-cautions-layout .class-detail-cautions {
  margin-left: 28px;
  list-style-type: disc;
}
.class-detail-cautions-layout .class-detail-cautions > li + li {
  margin-top: 8px;
}

.class-detail-payment {
  padding: 0 32px 24px 40px;
}
.class-detail-payment ul li + li {
  margin-top: 8px;
}
.class-detail-payment .re-entering-holder-name {
  display: none;
  margin-top: 16px;
}
.class-detail-payment .re-entering-holder-name.show {
  display: block;
}
.class-detail-payment .re-entering-holder-name p {
  margin: 0;
  font-weight: bold;
  color: #e83040;
}

.class-detail-over-payment-limit {
  padding: 16px;
  border-bottom: 1px solid #f2f2f3;
}
.class-detail-over-payment-limit label {
  opacity: 0.3;
  font-weight: bold;
  cursor: auto;
}
.class-detail-over-payment-limit .class-detail-over-payment-limit-note {
  margin: 8px 0 0 24px;
  font-size: 13px;
}

.class-detail-apply-free {
  padding: 24px 32px 0;
}
.class-detail-apply-free p {
  margin: 0;
}

.class-detail-apply-form {
  padding: 16px;
  text-align: center;
}

.class-detail-apply-cancel {
  text-align: right;
}

.apply-done-message {
  margin: 16px 0;
}
.apply-done-message > p {
  margin: 0;
}

.apply-done-go-home {
  text-align: center;
}

.class-cancel-form {
  margin: 32px 0;
  text-align: center;
}

.tweet-button {
  display: inline-block;
  background-color: #1da1f2;
  margin-top: 16px;
  padding: 6px 16px;
  border-radius: 3px;
  color: #fff;
  font-weight: bold;
  font-size: 13px;
  text-decoration: none;
}
.tweet-button::before {
  font-family: "Font Awesome 5 Brands", FontAwesome;
  font-weight: 900;
  content: "\f099";
  margin-right: 8px;
}

.tweet-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 64px auto 0;
}
.tweet-section .tweet-section-layout {
  display: flex;
  align-items: center;
}
.tweet-section .tweet-section-layout .tweet-section-body {
  margin-left: 44px;
}
.tweet-section .tweet-section-layout .tweet-section-body .tweet-bubble {
  box-sizing: border-box;
  background-color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 12px;
  position: relative;
}
.tweet-section .tweet-section-layout .tweet-section-body .tweet-bubble br {
  display: none;
}
.tweet-section .tweet-section-layout .tweet-section-body .tweet-bubble::before {
  content: "";
  border-style: solid;
  border-top-width: 4px;
  border-right-width: 8px;
  border-bottom-width: 4px;
  border-left-width: 8px;
  border-top-color: transparent;
  border-right-color: #fff;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: 17px;
  left: -16px;
}
.tweet-section .tweet-section-layout .tweet-section-body .tweet-button-layout {
  text-align: center;
}

.dashboard-for-student > .root-layout {
  margin-top: 0;
}
.dashboard-for-student .dashboard-for-student-tabs {
  margin-top: 4px;
}
.dashboard-for-student .class-notice-message {
  padding: 24px 32px;
  border-radius: 2px;
  background: hsla(216, 85%, 20%, 0.05);
}
.dashboard-for-student .class-notice-message > header {
  margin-bottom: 16px;
}
.dashboard-for-student .class-notice-message > header h1, .dashboard-for-student .class-notice-message > header h2, .dashboard-for-student .class-notice-message > header h3, .dashboard-for-student .class-notice-message > header h4, .dashboard-for-student .class-notice-message > header h5, .dashboard-for-student .class-notice-message > header h6 {
  display: flex;
  align-items: center;
}
.dashboard-for-student .class-notice-message > header h1 > i, .dashboard-for-student .class-notice-message > header h2 > i, .dashboard-for-student .class-notice-message > header h3 > i, .dashboard-for-student .class-notice-message > header h4 > i, .dashboard-for-student .class-notice-message > header h5 > i, .dashboard-for-student .class-notice-message > header h6 > i {
  flex-shrink: 1;
  margin-right: 8px;
}
.dashboard-for-student .dropout-notice-message {
  display: flex;
  align-items: center;
  padding: 24px 32px;
  border-radius: 2px;
  background: hsla(216, 85%, 20%, 0.05);
}
.dashboard-for-student .dropout-notice-message > .icon {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-image: url(/assets/img/dropout-icon.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.dashboard-for-student .dropout-notice-message > .main {
  flex: 1;
  margin-left: 32px;
}
.dashboard-for-student .dropout-notice-message > .main > header {
  margin-bottom: 8px;
}
.dashboard-for-student .dropout-notice-message + .dashboard-for-student-tabs {
  margin-top: 16px;
  opacity: 0.3;
}
.dashboard-for-student .dropout-notice-message + .dashboard-for-student-tabs a {
  cursor: default;
}
.dashboard-for-student .exercise-list-header {
  margin: 24px 0 0 0;
  padding: 8px 0;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
  border-bottom: 1px solid hsla(216, 10%, 20%, 0.2);
}
.dashboard-for-student .exercise-list-header + .curriculum-exercise-list {
  margin-top: 8px;
}

.curriculum-data {
  align-items: flex-end;
}

.teacher-dashboard-info-layout {
  margin-bottom: 32px;
}

.dashboard-class-curriculum-layout {
  margin: 64px 0 128px;
}

.curriculum-exercise-list.compact .common-row-component > a {
  display: flex;
}
.curriculum-exercise-list.compact .common-row-component > a .exercise-title-with-index {
  flex: 1;
  margin-right: 12px;
}
.curriculum-exercise-list.compact .common-row-component > a .status-data {
  flex: 0;
  min-width: 196px;
  max-width: 196px;
  margin-left: 0;
}
.curriculum-exercise-list.compact .common-row-component > a .status-data-quiz {
  flex: 0;
  min-width: 76px;
  max-width: 76px;
}
.curriculum-exercise-list.compact .common-row-component > a .status-data-quiz .student-exercise-status {
  margin-right: 0;
}
.curriculum-exercise-list.compact .common-row-component > a .status-data-quiz-with-difficulty {
  flex: 0;
  min-width: 124px;
  max-width: 124px;
}
.curriculum-exercise-list.compact .common-row-component > a .status-data-quiz-with-difficulty .difficulty-icon {
  width: 32px;
  height: 32px;
}
.curriculum-exercise-list.with-detail .row-main-header {
  display: flex;
}
.curriculum-exercise-list.with-detail .row-main-header > .icon-username {
  margin-left: auto;
}
.curriculum-exercise-list.with-detail .latest-comment {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 8px;
  opacity: 0.5;
}
.curriculum-exercise-list.with-detail .exercise-list-footer {
  display: flex;
  padding: 8px 16px;
  border-top: 1px solid #f2f2f3;
}
.curriculum-exercise-list.with-detail .exercise-list-footer .status-data {
  margin-left: auto;
}
.curriculum-exercise-list .common-row-component.done .username {
  opacity: 0.5;
}
.curriculum-exercise-list > li + li.placeholder-message {
  display: none;
}

.dashboard-for-teacher .curriculum-exercise-list .member-progress {
  max-width: 312px;
  margin-left: auto;
  padding-left: 16px;
}
.dashboard-for-teacher .curriculum-exercise-list .member-progress .class-members-tile .member-icon {
  padding: 0;
}
.dashboard-for-teacher .curriculum-exercise-list .member-progress .class-members-tile .member-icon .user-icon {
  opacity: 0.3;
}
.dashboard-for-teacher .curriculum-exercise-list .member-progress .class-members-tile .member-icon.submitted .user-icon, .dashboard-for-teacher .curriculum-exercise-list .member-progress .class-members-tile .member-icon.done .user-icon {
  opacity: 1;
}
.dashboard-for-teacher .curriculum-exercise-list .member-progress .class-members-tile .member-icon.done {
  position: relative;
}
.dashboard-for-teacher .curriculum-exercise-list .member-progress .class-members-tile .member-icon.done::after {
  font-family: "Font Awesome 5 Free", FontAwesome;
  font-weight: 900;
  content: "\f00c";
  display: block;
  position: absolute;
  top: -11.5px;
  width: 24px;
  height: 24px;
  line-height: 24px;
  border-radius: 50%;
  background: rgba(41, 163, 41, 0.5);
  color: #fff;
  text-align: center;
}
.dashboard-for-teacher .exercise-board {
  margin-bottom: 0;
}
.dashboard-for-teacher .exercise-board .exercise-form-layout {
  opacity: 0.5;
}
.dashboard-for-teacher .exercise-board .exercise-form-layout .exercise-body {
  padding: 8px;
  border: 1px solid #cbcace;
}
.dashboard-for-teacher .post-news-btn-layout {
  text-align: center;
  margin-bottom: 16px;
}
.dashboard-for-teacher .dashboard-actions {
  display: flex;
  margin-bottom: 8px;
  justify-content: space-between;
}
.dashboard-for-teacher .dashboard-actions .checkbox-box {
  padding: 0 16px;
}

.reviewers-list {
  margin-bottom: 8px;
}
.reviewers-list .icon-username {
  display: none;
}
.reviewers-list .icon-username.is-reviewer {
  display: flex;
}
.reviewers-list .icon-username .dropdown-menu {
  width: 120px;
}

.reviwer-modal-contents {
  width: 640px;
  margin: 128px auto;
  background: #fff;
  border-radius: 2px;
}
.reviwer-modal-contents > header {
  padding: 8px 16px;
  line-height: 32px;
  font-size: 14px;
  font-weight: bold;
}
.reviwer-modal-contents > .list-add-to-reviewers {
  box-sizing: border-box;
  max-height: 516px;
  overflow-y: scroll;
  padding: 16px;
  background: #f2f2f3;
}
.reviwer-modal-contents > .list-add-to-reviewers > li {
  display: flex;
  cursor: pointer;
}
.reviwer-modal-contents > .list-add-to-reviewers > li.is-reviewer {
  display: none;
}
.reviwer-modal-contents > .list-add-to-reviewers > li.selected > .toggle-select-wrapper > .toggle-select {
  background-color: #e6f0fe;
  border-color: #1f76f9;
}
.reviwer-modal-contents > .list-add-to-reviewers > li.selected > .toggle-select-wrapper > .toggle-select::after {
  font-family: "Font Awesome 5 Free", FontAwesome;
  font-weight: 900;
  content: "\f00c";
  line-height: 24px;
  font-size: 12px;
  color: #1f76f9;
}
.reviwer-modal-contents > .list-add-to-reviewers > li.selected > .icon-username {
  background-color: #e6f0fe;
}
.reviwer-modal-contents > .list-add-to-reviewers > li > .toggle-select-wrapper {
  flex: 0 0 32px;
  margin-right: 16px;
}
.reviwer-modal-contents > .list-add-to-reviewers > li > .toggle-select-wrapper > .toggle-select {
  box-sizing: border-box;
  width: 24px;
  height: 24px;
  margin-top: 20px;
  border: 1px solid #98969c;
  border-radius: 50%;
  text-align: center;
}
.reviwer-modal-contents > .list-add-to-reviewers > li > .icon-username {
  flex: 1 0 auto;
}
.reviwer-modal-contents > .list-add-to-reviewers > li + li {
  margin-top: 8px;
}
.reviwer-modal-contents > footer {
  padding: 16px;
  text-align: right;
}
.reviwer-modal-contents > footer > button + button {
  margin-left: 8px;
}

.status-data {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.status-data .student-exercise-status {
  margin-right: 16px;
}
.status-data .comments-count {
  margin-right: 16px;
  opacity: 0.5;
}
.status-data .last-updated {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}
.status-data .last-updated img {
  margin-right: 8px;
}
.status-data .last-updated .unread-mark {
  position: absolute;
  top: 0;
  left: 14px;
}
.status-data .last-updated time {
  font-size: 12px;
  color: hsl(216, 10%, 20%);
  opacity: 0.5;
}

.student-exercise-status {
  display: inline-block;
  width: 76px;
  height: 28px;
  line-height: 28px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 88px;
  background: #f2f2f3;
  text-align: center;
  color: #646369;
}
.student-exercise-status.tiny {
  width: 36px;
  height: 16px;
  line-height: 16px;
  font-size: 10px;
}
.student-exercise-status.small {
  width: 58px;
  height: 16px;
  line-height: 16px;
  font-size: 10px;
}
.student-exercise-status.long {
  width: 92px;
}
.student-exercise-status.doing {
  opacity: 0;
}
.student-exercise-status.submitted {
  background: #e6f0fe;
  color: #082a5e;
}
.student-exercise-status.done {
  background: #e9fbe9;
  color: #29a329;
}

.curriculum-exercise-status {
  display: inline-block;
  width: 76px;
  height: 28px;
  line-height: 28px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 88px;
  background: #f2f2f3;
  text-align: center;
  color: #646369;
}
.curriculum-exercise-status.tiny {
  width: 36px;
  height: 16px;
  line-height: 16px;
  font-size: 10px;
}
.curriculum-exercise-status.small {
  width: 58px;
  height: 16px;
  line-height: 16px;
  font-size: 10px;
}
.curriculum-exercise-status.long {
  width: 92px;
}
.curriculum-exercise-status.start {
  background: #e6f0fe;
  color: #082a5e;
}
.curriculum-exercise-status.end {
  background: #e9fbe9;
  color: #29a329;
}

.class-members .common-row-component a.go-to-profile {
  display: flex;
  align-items: center;
  padding: 16px;
}
.class-members .common-row-component a.go-to-profile .icon-username {
  margin-right: 16px;
}
.class-members .common-row-component a.go-to-profile .member-progress {
  box-sizing: border-box;
  max-width: 312px;
  margin-left: auto;
}
.class-members .common-row-component.with-help-me a.go-to-profile {
  padding: 16px 16px 8px;
}
.class-members .common-row-component .icon-username {
  position: relative;
}
.class-members .common-row-component .icon-username .username {
  max-width: 144px;
}
.class-members .common-row-component .icon-username .username.myself {
  font-weight: bold;
}
.class-members .common-row-component .icon-username::after {
  box-sizing: border-box;
  display: block;
  width: 12px;
  height: 12px;
  border: 2px solid #fff;
  border-radius: 50%;
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  background-color: #cbcace;
  left: 22px;
}
.class-members .common-row-component.online .icon-username::after {
  box-sizing: border-box;
  display: block;
  width: 12px;
  height: 12px;
  border: 2px solid #fff;
  border-radius: 50%;
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  background-color: #29a329;
  left: 22px;
}
.class-members .common-row-component .help-me-info {
  background: #ffc2c7;
}
.class-members .common-row-component .help-me-info:hover {
  background: #ffdbde;
}
.class-members .common-row-component .help-me-info > a {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 8px 16px;
  color: #4d191e;
}
.class-members .common-row-component .help-me-info > a > .help-me-badge {
  margin-right: 16px;
}
.class-members .common-row-component .help-me-info > a .exercise-index {
  border: 1px solid #fff;
}
.class-members .common-row-component .help-me-info .unread-mark {
  display: none;
}

.members .members-header-layout {
  margin-bottom: 16px;
}
.class-news-list > .news-row > article > a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  color: #323135;
  text-decoration: none;
}
.class-news-list > .news-row > article > a > header {
  padding: 16px 16px 8px;
}
.class-news-list > .news-row > article > a > header > .news-title {
  font-weight: normal;
}
.class-news-list > .news-row > article > a > header > .news-title.unread {
  font-weight: bold;
}
.class-news-list > .news-row > article > a > .news-row-body {
  padding: 0 16px 16px;
  opacity: 0.5;
}
.class-news-list > .news-row > article > a > footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 8px 16px;
  border-top: 1px solid #f2f2f3;
}
.class-news-list > .news-row > article > a > footer .user-icon {
  margin-right: 4px;
}
.class-news-list > .news-row > article > a > footer time {
  font-size: 12px;
  color: hsl(216, 10%, 20%);
  opacity: 0.5;
}

.schedule-info-layout {
  margin: 16px 0;
}

.topic-category-label {
  display: inline-block;
  padding: 0 8px;
  font-size: 11px;
  line-height: 21px;
  text-align: center;
  border-radius: 90px;
  background: #e0e0e0;
  color: #333;
}
.topic-category-label.news {
  background: #ffe6bd;
  color: #5e3f08;
}
.topic-category-label.question {
  background: #cbf6e8;
  color: #194d3c;
}
.topic-category-label.progress {
  background: #1f76f9;
  color: hsl(216, 10%, 95%);
}

.class-topic-list > .topic-row > article > a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  color: #323135;
  text-decoration: none;
}
.class-topic-list > .topic-row > article > a > header {
  display: flex;
  justify-content: space-between;
  padding: 16px 16px 8px;
}
.class-topic-list > .topic-row > article > a > header > .topic-title {
  font-weight: normal;
}
.class-topic-list > .topic-row > article > a > header > .topic-title.unread {
  font-weight: bold;
}
.class-topic-list > .topic-row > article > a > .topic-row-body {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
  -webkit-box-orient: vertical;
  padding: 0 16px;
  opacity: 0.5;
}
.class-topic-list > .topic-row > article > a > .topic-row-info {
  padding: 0 16px 16px;
}
.class-topic-list > .topic-row > article > a > .topic-row-info .exercise-index {
  width: 20px;
  height: 20px;
  line-height: 20px;
}
.class-topic-list > .topic-row > article > a > .topic-row-info .exercise-title {
  font-size: 11px;
  color: #646369;
}
.class-topic-list > .topic-row > article > a > footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 8px 16px;
  justify-content: space-between;
  border-top: 1px solid #f2f2f3;
  margin-top: 16px;
}
.class-topic-list > .topic-row > article > a > footer .user-icon {
  margin-right: 4px;
}
.class-topic-list > .topic-row > article > a > footer time {
  font-size: 12px;
  color: hsl(216, 10%, 20%);
  opacity: 0.5;
}

.class-schedule-list > .schedule-row > a {
  display: flex;
  align-items: center;
}
.class-schedule-list > .schedule-row > a > .schedule-title {
  margin: 0 16px;
}
.class-schedule-list > .schedule-row > a > .user-icon {
  margin: 0 8px 0 auto;
}

.exercise-board {
  margin: 0 auto 96px;
}
.exercise-board > .exercise-question-layout {
  display: flex;
}
.exercise-board > .exercise-question-layout > .user-icon {
  margin-right: 16px;
}
.exercise-board > .exercise-question-layout > .exercise-question {
  flex: 1;
  min-width: 0;
}
.exercise-board > .exercise-question-layout > .exercise-question > header {
  display: flex;
  justify-content: space-between;
}
.exercise-board > .exercise-question-layout > .exercise-question > header > h1 {
  font-size: 14px;
}
.exercise-board > .exercise-question-layout > .exercise-question > .exercise-body {
  font-size: 14px;
}
.exercise-board .challenge-this-exercise {
  margin-left: 64px;
  padding: 16px 0;
  text-align: center;
  background: #fff;
}
.exercise-board .challenge-this-exercise #challenge,
.exercise-board .challenge-this-exercise #open_playground {
  min-width: 33.33%;
  transition: opacity 0.3s;
}
.exercise-board .divider-message {
  position: relative;
  display: flex;
  margin: 32px 0;
  height: 64px;
}
.exercise-board .divider-message.hidden {
  display: none;
}
.exercise-board .divider-message.top-of-exercise-comments {
  margin: 16px 0 0 64px;
}
.exercise-board .divider-message.below-the-comment-form {
  margin: 0;
}
.exercise-board .divider-message > .divider-text {
  display: flex;
  align-items: center;
  margin: 0 auto;
  padding: 0 16px;
  color: hsla(216, 10%, 20%, 0.6);
  background-color: hsl(216, 25%, 95%);
}
.exercise-board .divider-message > .section-divider {
  position: absolute;
  top: 32px;
  border-top: 1px solid hsla(216, 10%, 20%, 0.2);
  width: 100%;
  z-index: -1;
}
.exercise-board .exercise-comments-placeholder {
  margin: 16px 0 0 64px;
  padding: 32px;
  background-color: hsla(216, 85%, 20%, 0.05);
  border-radius: 4px;
  color: hsla(216, 10%, 20%, 0.6);
  text-align: center;
}
.exercise-board .exercise-comments-placeholder.hidden {
  display: none;
}
.exercise-board .exercise-comments-placeholder > p {
  margin: 0;
}
.exercise-board .exercise-comments-placeholder > p + p {
  margin-top: 8px;
}
.exercise-board .exercise-comments-placeholder > img {
  width: 100%;
  max-width: 320px;
  margin-top: 32px;
}
.exercise-board .system-comment {
  margin-left: 64px;
  margin-bottom: 16px;
  padding: 16px 16px 8px;
  border-radius: 4px;
  background: rgba(203, 202, 206, 0.5);
}
.exercise-board .system-comment footer {
  text-align: right;
}
.exercise-board .system-comment footer time {
  font-size: 12px;
  color: hsl(216, 10%, 20%);
  opacity: 0.5;
}
.exercise-board .system-comment.system-comment-exercise-start {
  display: none;
}
.exercise-board .system-comment.system-comment-exercise-pass {
  display: none;
  background: rgba(161, 232, 161, 0.5);
  color: #194d19;
}
.exercise-board .system-comment.system-comment-exercise-pass > p::before {
  font-family: "Font Awesome 5 Free", FontAwesome;
  font-weight: 900;
  content: "\f00c";
  display: inline-block;
  margin-right: 16px;
  color: #29a329;
}
.exercise-board .system-comment.system-comment-exercise-pass footer time {
  color: #194d19;
}
.exercise-board .placeholder-message {
  margin-left: 64px;
}
.exercise-board .pass-button {
  margin-bottom: 32px;
  text-align: center;
}
.exercise-board .exercise-comment-form-layout {
  display: flex;
  margin-top: 16px;
}
.exercise-board .exercise-comment-form-layout .user-icon {
  margin-right: 16px;
}
.exercise-board .exercise-comment-form-layout .blank-wrapper {
  flex: 1;
  min-width: 0;
}
.exercise-board .exercise-comment-form-layout.hidden {
  display: none;
}
.exercise-board .exercise-bottom-navigation > .row {
  display: flex;
  justify-content: space-between;
}
.exercise-board .exercise-bottom-navigation > .row > .nav-label {
  flex: 1 0 50%;
  color: hsla(216, 10%, 20%, 0.6);
}
.exercise-board .exercise-bottom-navigation > .row > .nav-label.pre::before {
  font-family: "Font Awesome 5 Free", FontAwesome;
  font-weight: 900;
  content: "\f053";
  display: inline-block;
  width: 16px;
  margin-right: 4px;
  text-align: center;
}
.exercise-board .exercise-bottom-navigation > .row > .nav-label.next {
  text-align: right;
}
.exercise-board .exercise-bottom-navigation > .row > .nav-label.next:after {
  font-family: "Font Awesome 5 Free", FontAwesome;
  font-weight: 900;
  content: "\f054";
  display: inline-block;
  width: 16px;
  margin-left: 4px;
  text-align: center;
}
.exercise-board .exercise-bottom-navigation > .row > .common-row-component {
  flex: 1 0 calc(50% - 32px);
  margin-top: 8px;
}
.exercise-board .exercise-bottom-navigation > .row > .common-row-component > a {
  display: flex;
  align-items: center;
}
.exercise-board .exercise-bottom-navigation > .row > .common-row-component + .common-row-component {
  margin-left: 32px;
}
.exercise-board .exercise-bottom-navigation > .row > .common-row-component.placeholder {
  visibility: hidden;
}

.answers-of-classmates {
  display: flex;
  flex-direction: column;
}
.answers-of-classmates > header {
  order: 1;
}
.answers-of-classmates .exercise-members-progress:nth-child(2) {
  order: 2;
}
.answers-of-classmates .exercise-members-progress:nth-child(3) {
  order: 4;
}
.answers-of-classmates .exercise-members-progress:nth-child(3).is-empty + .placeholder-message {
  display: none;
}
.answers-of-classmates .placeholder-message {
  order: 3;
  margin-bottom: 8px;
}

/* Classmates on sidebar */
.exercise-members-progress .common-row-component {
  padding: 0;
}
.exercise-members-progress .common-row-component > a {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 0;
}
.exercise-members-progress .common-row-component.disabled {
  opacity: 0.3;
}
.exercise-members-progress .common-row-component header {
  padding: 16px;
  display: flex;
  align-items: center;
}
.exercise-members-progress .common-row-component header .icon-username {
  flex: 0;
  width: 192px;
}
.exercise-members-progress .common-row-component header .username {
  display: inline-block;
  max-width: 144px;
}
.exercise-members-progress .common-row-component header .username.current {
  font-weight: bold;
}
.exercise-members-progress .common-row-component header .student-exercise-status {
  margin-left: auto;
}
.exercise-members-progress .common-row-component footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 8px 16px;
  border-top: 1px solid #f2f2f3;
}
.exercise-members-progress .common-row-component footer .user-icon {
  margin-right: 4px;
}
.exercise-members-progress .common-row-component footer time {
  font-size: 12px;
  color: hsl(216, 10%, 20%);
  opacity: 0.5;
}
.exercise-members-progress .common-row-component footer .help-me-badge {
  margin-right: auto;
}
.exercise-members-progress .common-row-component .icon-username {
  position: relative;
}
.exercise-members-progress .common-row-component .icon-username::after {
  box-sizing: border-box;
  display: block;
  width: 12px;
  height: 12px;
  border: 2px solid #fff;
  border-radius: 50%;
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  background-color: #cbcace;
  left: 22px;
}
.exercise-members-progress .common-row-component.online .icon-username::after {
  box-sizing: border-box;
  display: block;
  width: 12px;
  height: 12px;
  border: 2px solid #fff;
  border-radius: 50%;
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  background-color: #29a329;
  left: 22px;
}
.exercise-members-progress + .placeholder-message {
  margin-top: 8px;
}

.exercise-help-me {
  margin-left: 64px;
}
.exercise-help-me.hidden {
  display: none;
}

.exercise-comment-form-layout.hidden + .exercise-help-me {
  display: none;
}

.exercise-help-me-modal > .common-card-component {
  width: 544px;
  margin: 128px auto;
  background: #fff;
}
.exercise-help-me-modal > .common-card-component.with-header header {
  border-bottom-color: rgba(152, 150, 156, 0.5);
}
.exercise-help-me-modal > .common-card-component ul {
  list-style-type: disc;
  margin: 16px 0 16px 20px;
}
.exercise-help-me-modal > .common-card-component .exercise-help-me-buttons-layout {
  display: flex;
  align-items: flex-end;
}
.exercise-help-me-modal > .common-card-component .exercise-help-me-buttons-layout .btn {
  margin-left: auto;
}
.exercise-help-me-modal > .common-card-component .exercise-help-me-buttons-layout .btn + .btn {
  margin-left: 8px;
}

aside section {
  margin-bottom: 32px;
}
aside section .payment-maintenance-announcement {
  color: rgb(8, 42, 94);
  background: rgba(205, 225, 254, 0.7);
  margin-top: 16px;
  padding: 16px;
  border-radius: 2px;
}
aside section .payment-maintenance-announcement h1 {
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 6px;
}
aside section .payment-maintenance-announcement p {
  font-size: 14px;
  line-height: 21px;
  padding: 0;
  margin: 0;
}

.schedule-widget > header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.schedule-widget > header > .remaining-time {
  font-weight: normal;
  font-size: 10px;
}
.schedule-widget > header > .remaining-time.within-period.deadline-approaching {
  color: #e83040;
}
.schedule-widget .description a {
  color: #1f76f9;
  text-decoration: underline;
}
.schedule-widget .schedule-widget-day-box {
  position: relative;
  padding: 0 0 24px 40px;
}
.schedule-widget .schedule-widget-day-box::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #fff;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  background-color: hsl(216, 10%, 80%);
}
.schedule-widget .schedule-widget-day-box.current::before {
  background-color: #1f76f9;
}
.schedule-widget .schedule-widget-day-box.all-submitted::before {
  font-family: "Font Awesome 5 Free", FontAwesome;
  font-weight: 900;
  content: "\f058";
  display: block;
  width: 24px;
  height: 24px;
  top: 2px;
  left: 2px;
  line-height: 24px;
  font-size: 24px;
  color: #1f76f9;
  background-color: #fff;
}
.schedule-widget .schedule-widget-day-box.all-published::before {
  color: #29a329;
}
.schedule-widget .schedule-widget-day-box > .schedule-widget-day-number {
  font-weight: bold;
  line-height: 28px;
}
.schedule-widget .schedule-widget-day-box.dropped-out::before {
  background-color: #e83040;
}
.schedule-widget .schedule-widget-day-box.dropped-out > .schedule-widget-day-number {
  color: #e83040;
}
.schedule-widget .schedule-widget-day-box.dropped-out .exercise-index:not(.done) {
  background: #ffebec;
  color: #e83040;
}
.schedule-widget .schedule-widget-day-box > .schedule-widget-exercises {
  margin-top: 4px;
  display: flex;
}
.schedule-widget .schedule-widget-day-box > .schedule-widget-exercises > .exercise-index + .exercise-index {
  margin-left: 8px;
}
.schedule-widget .schedule-widget-day-box::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 13px;
  display: block;
  width: 2px;
  height: 100%;
  background-color: hsla(216, 10%, 20%, 0.2);
}
.schedule-widget .schedule-widget-day-box.all-published::after {
  background-color: #29a329;
}
.schedule-widget .schedule-widget-day-box:first-child::after {
  top: 10px;
}
.schedule-widget .schedule-widget-day-box:last-child {
  padding-bottom: 0;
}
.schedule-widget .schedule-widget-day-box:last-child::after {
  height: 10px;
}
.schedule-widget.dropped-out .schedule-widget-day-box.current::before {
  background-color: hsl(216, 10%, 80%);
}

.review-date-times li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 8px 8px 10px;
  font-size: 14px;
}
.review-date-times li i.is-today {
  opacity: 0;
  margin-right: auto;
}
.review-date-times li.today {
  background: rgba(50, 49, 53, 0.05);
}
.review-date-times li.today i.is-today {
  opacity: 1;
}
.review-date-times li .review-date {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 92px;
}
.review-date-times li .review-times {
  display: flex;
  width: 132px;
}
.review-date-times li .review-time.review-time-1 {
  margin-left: auto;
}
.review-date-times li .review-time::before {
  display: inline-block;
  width: 1.25em;
  text-align: center;
  margin-right: 4px;
  font-family: "Font Awesome 5 Free", FontAwesome;
  font-weight: 900;
  content: "\f017";
}
.review-date-times li .review-time.passed::before {
  font-family: "Font Awesome 5 Free", FontAwesome;
  font-weight: 900;
  content: "\f252";
}
.review-date-times li .review-time.done {
  opacity: 0.3;
}
.review-date-times li .review-time.done::before {
  font-family: "Font Awesome 5 Free", FontAwesome;
  font-weight: 900;
  content: "\f00c";
}
.review-date-times li .review-time + .review-time {
  margin-left: auto;
}

.profile-section .with-right-float-icon img {
  right: 16px;
}
.profile-section .go-to-edit {
  float: right;
  margin: 8px 64px 0 0;
}
.profile-section p {
  margin-bottom: 16px;
}
.profile-section p.username {
  font-weight: bold;
}
.profile-section p:last-child {
  margin-bottom: 0;
}
.profile-section + .profile-section {
  margin-top: 8px;
}

.next-exercise {
  margin-top: 16px;
  margin-left: 64px;
  background: hsla(216, 85%, 20%, 0.05);
  border-radius: 4px;
}
.next-exercise .next-exercise-wrapper {
  display: flex;
  align-items: center;
  padding: 16px;
}
.next-exercise .next-exercise-wrapper .icon-username {
  margin-right: 16px;
}
.next-exercise .next-exercise-wrapper .member-progress {
  box-sizing: border-box;
  max-width: 312px;
  margin-left: auto;
}
.next-exercise footer {
  display: flex;
  justify-content: flex-end;
  /*border-top: 1px solid $color-gray-light-more;*/
  padding: 16px;
  text-align: right;
}
.next-exercise footer .btn + .btn {
  margin-left: 8px;
}

.teaching-note-cheat-sheet {
  margin-top: 32px;
  margin-left: 64px;
}
.teaching-note-cheat-sheet pre {
  margin: 0;
  line-height: 1.4;
  overflow-x: scroll;
}

.manage-exercise-status {
  margin-left: 64px;
  display: none;
}

.teaching-note-layout {
  margin-bottom: 32px;
}

.classmate-profile .profile-section {
  margin-bottom: 40px;
}

.classmate-exercises .placeholder-message {
  margin-bottom: 8px;
}
.classmate-exercises .curriculum-exercise-list .disabled {
  opacity: 0.3;
}
.classmate-exercises .curriculum-exercise-list .disabled a {
  cursor: default;
}
.classmate-exercises .curriculum-exercise-list .disabled a:hover {
  background: inherit;
}
.classmate-exercises .curriculum-exercise-list .disabled .unread {
  font-weight: normal;
}
.classmate-exercises .curriculum-exercise-list .disabled .unread-mark {
  display: none;
}

/* topic */
.post-topic-layout {
  margin-bottom: 8px;
  text-align: right;
}

.topic-staff-label {
  padding: 2px 6px;
  border-radius: 2px;
  background: hsla(216, 10%, 20%, 0.6);
  color: #fff;
  font-weight: bold;
  font-size: 11px;
  text-align: center;
}

.topic-board > .topic-layout {
  display: flex;
  align-items: flex-start;
}
.topic-board > .topic-layout > .topic-user-icon-wrapper {
  display: flex;
  flex-direction: column;
}
.topic-board > .topic-layout > .topic-user-icon-wrapper .user-icon {
  vertical-align: bottom;
}
.topic-board > .topic-layout > .topic-user-icon-wrapper > .topic-staff-label {
  margin-top: 6px;
}
.topic-board > .topic-layout > article {
  flex: 1;
  min-width: 0;
  margin-left: 16px;
}
.topic-board > .topic-layout > article > header {
  display: flex;
  align-items: center;
}
.topic-board > .topic-layout > article > header .exercise-title-with-index {
  margin-top: 8px;
}
.topic-board > .topic-layout > article > header .exercise-title-with-index > .exercise-index {
  width: 20px;
  height: 20px;
  line-height: 20px;
}
.topic-board > .topic-layout > article > header .exercise-title-with-index > .exercise-title {
  font-size: 11px;
  color: #646369;
}
.topic-board > .topic-layout > article > header > .menu-button {
  margin-left: auto;
  font-weight: normal;
}
.topic-board > .topic-layout > article > header > .menu-button .dropdown-menu {
  width: 200px;
  text-align: left;
}
.topic-board > .topic-layout > article .topic-not-accepted-form {
  margin: 0;
  padding: 32px;
  text-align: center;
  background: #f2f2f3;
  color: #323135;
}
.topic-board > .topic-layout > article .topic-not-accepted-form p {
  margin: 0 0 32px;
  text-align: left;
}
.topic-board > .topic-layout > article > footer {
  box-sizing: border-box;
  min-height: 36px;
  padding-right: 16px;
  padding-left: 16px;
  border-radius: 0 0 2px 2px;
  border-top: 1px solid #f2f2f3;
  font-size: 12px;
  background: hsl(216, 20%, 97%);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topic-board > .topic-layout > article > footer time {
  font-size: 12px;
  color: hsl(216, 10%, 20%);
  opacity: 0.5;
}
.topic-board > .topic-layout > article > footer time > a {
  text-decoration: none;
  color: inherit;
}
.topic-board > .topic-layout > article > footer time > a:hover {
  text-decoration: underline;
  color: #1f76f9;
}

.topic-sidebar .disabled {
  opacity: 0.3;
}

#topic_entry_form .comment-controls .btn {
  margin-left: 8px;
  min-width: 74px;
}
#topic_entry_form .comment-controls .field.checkbox {
  flex-direction: column;
  justify-content: center;
  margin-bottom: 0;
}
#topic_entry_form .comment-controls input[type=datetime-local] {
  margin-left: 8px;
}

.statuses-of-progress-reports .common-row-component header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.statuses-of-progress-reports .common-row-component .member-progress {
  margin-top: 8px;
}

.destroy-schedule-form {
  margin-top: 32px;
  text-align: center;
}

.billing-history-table .date {
  width: 120px;
}
.billing-history-table .canceled .amount {
  text-decoration: line-through;
}
.billing-history-table td {
  padding-top: 16px;
  padding-bottom: 16px;
}
.billing-history-table a {
  color: #1f76f9;
  text-decoration: underline;
}

.notification-settings-sections {
  max-width: 600px;
}
.notification-settings-sections .notification-settings-list > li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}
.notification-settings-sections .notification-settings-list > li:hover {
  background: rgba(198.9, 202.98, 209.1, 0.1);
}
.notification-settings-sections .notification-settings-list > li + li {
  border-top: 1px solid hsla(216, 10%, 20%, 0.07);
}
.notification-settings-sections .notification-settings-list > li > .states {
  display: flex;
}
.notification-settings-sections .notification-settings-list > li > .states > button {
  font-size: 18px;
}
.notification-settings-sections .notification-settings-list > li > .states > button:hover {
  opacity: 0.8;
}
.notification-settings-sections .notification-settings-list > li > .states > button > i {
  opacity: 0.3;
}
.notification-settings-sections .notification-settings-list > li > .states > button > i.on {
  opacity: 1;
  color: #1f76f9;
}
.notification-settings-sections .notification-settings-list > li > .states > button + button {
  margin-left: 8px;
}

.registered-cards-list > li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}
.registered-cards-list > li + li {
  border-top: 1px solid hsla(216, 10%, 20%, 0.07);
}
.registered-cards-list > li.deleted {
  opacity: 0.3;
}
.registered-cards-list > li .confirm-wrapper {
  margin-left: 16px;
  margin-right: auto;
  font-size: 13px;
}
.registered-cards-list > li .confirm-card-num {
  color: #1f76f9;
  cursor: pointer;
}
.registered-cards-list > li .confirm-card-num.hidden {
  display: none;
}

/* unsubscribe */
.unsubscribe-done {
  padding-top: 48px;
}
.unsubscribe-done-message {
  text-align: center;
}
.unsubscribe-done-message img {
  width: 156px;
  height: 100px;
}
.unsubscribe-done-message p {
  margin-top: 32px;
}

/* terms */
.term-section {
  margin-bottom: 16px;
}
.term-section:last-child {
  margin-bottom: 0;
}
.term-section header {
  margin-bottom: 4px;
}
.term-section p {
  margin-bottom: 4px;
}
.term-section ol {
  margin: 0;
  padding: 0 0 0 24px;
}
.term-section ol ol {
  margin-top: 4px;
  margin-bottom: 4px;
}
.term-section ol li {
  margin-bottom: 4px;
}
.term-section a {
  color: #1f76f9;
}

.law-table th {
  text-align: left;
}
.law-table a {
  color: #1f76f9;
}
.law-table tbody th {
  width: 14em;
  vertical-align: top;
}

.sorry-maintenance-section {
  max-width: 536px;
  margin: 128px auto 64px;
  color: hsl(216, 10%, 20%);
  text-align: center;
}
.sorry-maintenance-section > header > h2 {
  font-size: 19px;
  color: #082a5e;
}
.sorry-maintenance-section > p {
  margin: 16px 16px 0;
  font-size: 11px;
}
.sorry-maintenance-section > .sorry-maintenance-highlight {
  display: inline-block;
  border-radius: 3px;
  background-color: #cde1fe;
  color: #082a5e;
  font-size: 13px;
  padding: 4px 8px;
}
.sorry-maintenance-section > .sorry-maintenance-highlight > a {
  margin: 0 4px;
  color: #082a5e;
  font-weight: bold;
}
.sorry-maintenance-section > .sorry-maintenance-highlight > br {
  display: none;
}
@media (max-width: 640px) {
  .sorry-maintenance-section > .sorry-maintenance-highlight > br {
    display: inline;
  }
}
.sorry-maintenance-section > .sorry-maintenance-img {
  margin-top: 40px;
  max-width: 274px;
}

.sorry-page-html {
  min-height: 100%;
}
.sorry-page-html > body {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.sorry-page-html > body > main {
  flex: 1;
  display: flex;
  align-items: center;
}

/* Temporary */
#tab_news {
  opacity: 0;
  width: 0;
}

/*# sourceMappingURL=styles.css.map */
