/* cmsms stylesheet: IAB-LCCI2-roy-footer modified: 05/30/26 18:47:51 */
.footer {
  background-color: var(--color-semi-light-grey);
  display: flex;
  flex-direction: column;
  font-size: 14px;
  padding: 20px;

  .footer-primary {
    min-width: 1280px;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    padding: 10px 0px;

    ul {
 flex-direction: column;
  flex-wrap: wrap;
  display: flex;
   width: 800px;
height: 220px;
      list-style: none;
      padding-left: 0;
      min-width: 33.33%;
     
      li {
        margin-bottom: 5px;
      }
a{ color: #424242; }
    }

    .contact-information {
      padding: 0 10px;
      min-width: 33.33%;
      width: 33.33%;

      .footer-logo {
        display: flex;
        flex-direction: row;
        align-items: center;
        margin-bottom: 20px;

        img {
          margin-right: 10px;
        }
      }

      > p {
        line-height: 1;
      }

    }
  }

  .footer-secondary {
    padding: 20px;
    border-top: 1px solid var(--color-light-grey);
    text-align: center;
  }
}
/* cmsms stylesheet: IAB-LCCI2-roy-header modified: 05/30/26 18:47:51 */
.header {
   position: fixed;  z-index: 100;
height:220px;
width: 1280px;
background: white;
> .header-logos{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;

  > .logo-lcci {
    padding: 10px 20px;
    height: 70px;
    width: auto;
  }

  > .logo-online-accounting-courses {
    padding: 10px;
    height: 70px;
    width: auto;

  }

  > .login-online {
    padding: 12px 20px;
    width: 80px;
  }
}
}

.banner {
  img {
    width: 100%;
  }
}
/* cmsms stylesheet: IAB-LCCI2-roy-nav modified: 05/30/26 18:47:51 */
.nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  list-style: none;
  padding-left: 0;
  max-width: 100%;
  padding: 20px 10px 0 10px;
  margin: 0;

  li {
    position: relative;
    cursor: pointer;
    margin-bottom: 0;

    img {
      display: block;

      &.active {
        display: none;
      }
    }

    .nav-submenu-list {
      position: absolute;
      top: 100%;
      left: 0;
      list-style: none;
      padding-left: 0;
      white-space: nowrap;
      display: none;

      li {
        background-color: var(--color-nav-background);
        border-top: 1px solid var(--color-red);
        margin-bottom: 0;

        a {
          display: block;
          min-width: max-content;
          padding: 5px 20px;
          color: var(--color-dark-black);
        }

        &:first-child {
          border-top: none;
        }

        &:hover {
          background-color: var(--color-red);
          color: var(--color-white);
        }
      }
    }

    &:hover {
      img {
        display: none;

        &.active {
          display: block;
        }
      }

      .nav-submenu-list {
        display: block;
      }
    }
  }
}

.quick-buttons-container {
  padding: 20px 50px 0 50px;

  .quick-button {
    display: flex;
    flex-direction: row;
    padding-left: 0;
    margin: 0;

    li {
      cursor: pointer;
      background-repeat: no-repeat;
      color: var(--color-white);
      font-size: 15px;
      line-height: 1.2;
      padding: 5px;
      margin-right: 10px;
      width: 125px;
      height: 73px;
      margin-bottom: 0;

      &:hover {
        opacity: 0.7;
      }
    }
  }
}

.revision-courses-container {
  padding: 20px 50px 0 50px;

  .quick-button {
    display: flex;
    flex-direction: row;
    padding-left: 0;
    margin: 0;

    > li {
      cursor: pointer;
      background-repeat: no-repeat;
      color: var(--color-white);
      font-size: 20px;
      line-height: 1.2;
      padding: 10px;
      margin-right: 10px;
      width: 280px;
      height: 120px;
      margin-bottom: 0;

      &:hover {
        opacity: 0.7;
      }
    }
  }
}
/* cmsms stylesheet: IAB-LCCI2-roy-st-perth modified: 05/30/26 18:47:51 */
:root {
  --color-dark-red: #a12b2f;
  --color-red: #ee1c25;
  --color-light-red: #fff1f2;
  --color-blue: #26abda;
  --color-light-blue: #f4fbfe;
  --color-green: #3ab54a;
  --color-light-green: #f5fbf6;
  --color-orange: #f78f3d;
  --color-light-orange: #fef4ec;
  --color-purple: #9400e1;
  --color-light-purple: #f5e6fc;
  --color-yellow: #ffdd00;
  --color-black: #000000;
  --color-light-grey: #e0e0e0;
  --color-semi-light-grey: #f5f5f5;
  --color-grey: #757575;
  --color-white: #ffffff;
  --color-nav-background: #fcff00;
}

body {
  background-color: #f0f0f0;
  font-family: Arial, sans-serif;
  color: #424242;
  font-size: 16px;
  line-height: 1.6;
  background-image: url("../images/bg.jpg");
  background-repeat: repeat;
  padding: 0;
  margin: 0;
}

.main {
  max-width: 1280px;
  min-width: 1280px;
  margin: 0 auto;
  padding: 0;
  border-left: 1px solid var(--color-dark-red);
  border-right: 1px solid var(--color-dark-red);
}

.past-paper-and-answers-container {
  padding: 20px 50px 0 50px;
  display: flex;
  flex-direction: row;
  justify-content: center;

  img {
    max-width: 430px;
    margin: 0 10px;
    cursor: pointer;

    &:hover {
      opacity: 0.7;
    }
  }
}

/* basic */
h1 {
  color: var(--color-orange);
}

h2 {
  font-size: 22px;
  line-height: 2;
  color: var(--color-orange);
  margin: 0;
}

h3 {
  font-size: 18px;
  line-height: 2;
  color: var(--color-orange);
  margin: 0;
}

p {
  margin-top: 0;
  margin-bottom: 20px;

  &.large {
    font-size: 20px;
  }
}
 

.highlighted-text-red {
  color: var(--color-red);
}

.highlighted-text-blue {
  color: var(--color-blue);
}

.highlighted-text-green {
  color: var(--color-green);
}

.highlighted-text-yellow {
  color: var(--color-yellow);
}

a {
  color: var(--color-orange);
  text-decoration: none;
}

.center-aligned {
  text-align: center;
}

.top-banner {
  img {
    width: 100%;
  }
}

img {
  &.with-border {
    border: 1px solid var(--color-light-grey);
  }
}
nav ul, nav ol {
  list-style: none;
    list-style-image: none;
  list-style-image: none;
  margin: 0;
  padding: 0;
  line-height: 1.4;
}
#main-menu .middle-menu-tab{
white-space: nowrap;
width: 380px;
}
#main-menu .middle-menu-tab td:first-child{
padding-right: 5px;
width: 55px;
}

#main-menu .middle-menu-tab td{
padding: 5px;
font-size: 15px;
line-height: 1.3;
vertical-align: middle;
border-top: 1px solid red;
padding: 5px;

}
#main-menu {
display: flex;
padding-left: 0px;
}

#main-menu > li {
display: block;
border-radius: 10px;
position: relative;
margin: 3px 4px;
width: 107px;
height: 91px;
 
}
 
#main-menu > li > p{
margin: 2px 5px;
font-size: 13px;
line-height: 20px;
text-align:center;
}
 
 
#main-menu > li:first-child {
 margin-left: 8px;
}

#main-menu > li > div{
 margin: 15px 0px;
  font-size: 15px;
  line-height: 1.3;
}

#main-menu > li > a, 
#main-menu > li.sectionheader > span {
	color: #fff;
	text-decoration: none;
	font-size: 15px;
	cursor: pointer;
	padding: 8px 0;
	display: block;
	position: relative;
}
 
#main-menu > li.current > a,
#main-menu > li.current.sectionheader > span,
 #main-menu > li:hover > a, 
#main-menu > li.sectionheader:hover > span {
	color: #424242;
font-size:15px;
}

#main-menu > li > ul,
#main-menu > li > ul > li > ul  {
	position: absolute;
	left: -999em;
}
#main-menu > li > ul > li{
margin: 0px;
}
#main-menu > li:hover > ul,
#main-menu > li.active > ul,
#main-menu > li > ul > li:hover > ul, #main-menu > li > ul > li.active > ul {
	position: relative;
	visibility: visible;
left:0px;
top:-10px;
}
#main-menu > li:hover > ul, #main-menu > li:hover > ul > li > table{
margin: 0px !important;
 
}
#main-menu ul li table, #main-menu  ul  li td{
background:yellow;
border: none;

}

#main-menu > li > ul, #main-menu > li > ul > li > ul {
    display: block;
    width: fit-content;
    background: #fcff00;
  }

#main-menu > li > ul > li > a,
#main-menu > li > ul > li.sectionheader > span,
#main-menu > li > ul > li > ul > li > a, #main-menu > li > ul > li > ul > li.sectionheader > span {
	text-decoration: none;
	color: ;
	text-transform: uppercase;
	display: block;
	padding: 4px 0;
}

#main-menu > li > ul > li:hover > a,
#main-menu > li > ul > li.sectionheader:hover > span,
#main-menu > li > ul > li > ul > li:hover > a,
#main-menu > li > ul > li > ul > li.sectionheader:hover > span {
	color: #999;
}


/* content */
.body-content {
  padding: 225px 0px 0px 0px;
  position: relative;
  .section-container {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;

    .content-wrapper {
      position: relative;
      padding-left: 20px;
      margin-bottom: 30px;
    }

    &.center-aligned {
      text-align: center;
    }
 
  }
}
.main_content{padding-top:10px;}
.teacher-recommend {
  position: absolute;
  right: 0;
  bottom: 0;
}

.heading-with-number {
  font-size: 22px;
  display: inline-flex;
  margin-bottom: 10px;

  .heading-number {
    border-radius: 50%;
    background-color: var(--color-orange);
    color: var(--color-white);
    line-height: 1;
    font-size: 22px;
    font-weight: bold;
    width: 40px;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
  }

  h2 {
    color: var(--color-orange);
  }

  &.theme-red {
    .heading-number {
      background-color: var(--color-red);
    }

    h2 {
      color: var(--color-red);
    }
  }

  &.theme-blue {
    .heading-number {
      background-color: var(--color-blue);
    }

    h2 {
      color: var(--color-blue);
    }
  }

  &.theme-green {
    .heading-number {
      background-color: var(--color-green);
    }

    h2 {
      color: var(--color-green);
    }
  }
}

.vertical-split {
  display: flex;
  flex-direction: row;

  .vertical-split-left {
    width: 47%;
    max-width: 60%;
    padding: 20px 20px 20px 0;
    justify-content: flex-start;

    .friendly-reminder-card {
      background-color: var(--color-white);
      border: 2px solid var(--color-red);
      display: flex;
      border-radius: 20px;

      .card-content {
        padding: 20px 30px;
        line-height: 30px;
        color: var(--color-red);

        h3 {
          margin-bottom: 0;
          color: var(--color-red);
        }
      }
    }
  }

  .vertical-split-right {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 40%;
    max-width: 40%;
    justify-content: flex-start;
    padding: 20px 0 20px 20px;

    img {
      width: 100%;
      border-radius: 20px;
      overflow: hidden;
      margin-bottom: 20px;
    }

    .vertical-split-certificate {
      border-radius: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 10px;
      text-align: center;
      background-color: var(--color-semi-light-grey);

      .certificate-name {
        padding: 10px;
        font-weight: bold;
        line-height: 1.4;
      }

      img {
        border-radius: 0;
        margin-bottom: 0;
      }
    }
  }

  &.half-half {
    .vertical-split-left,
    .vertical-split-right {
      width: 50%;
      max-width: 50%;
    }
  }
}

.color-card-message-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding-left: 0;
  list-style: none;

  li {
    padding: 0 30px;
  }
}

.color-card-message {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  width: 280px;
  height: 140px;
  cursor: pointer;

  .copy {
    font-weight: bold;
    color: var(--color-white);
    text-align: center;
    padding: 0 10px;
    line-height: 1.4;

    h2 {
      color: var(--color-white);
      font-size: 20px;
      line-height: 1.3;
    }
  }

  .icon-image {
    position: absolute;
    top: -50px;

    left: 50%;
    transform: translateX(-50%);

    img {
      background-color: var(--color-white);
      border: 2px solid var(--color-orange);
      width: 70px;
      margin-bottom: 0;
    }
  }

  .finger-image {
    position: absolute;
    bottom: -30px;
    right: -40px;

    img {
      width: 70px;
      margin-bottom: 0;
    }
  }

  &:hover {
    opacity: 0.7;
  }
}

.god-messages {
  text-align: center;
  span {
    font-size: 26px;
  }
}

.backdrop-with-text {
  display: flex;
  justify-content: center;
  margin: 20px;

  .placeholder {
    position: relative;
    background-repeat: no-repeat;
    width: 840px;
    height: 280px;

    .backdrop-content {
      position: absolute;
      top: 0;
      bottom: 0;
      right: 0;
      display: flex;
      align-items: center;
      height: 100%;
      width: 50%;
      padding: 0 30px;

      > ul {
        margin-bottom: 0;

        li {
          margin-bottom: 10px;
        }
      }
    }
  }

  &.version-2 {
    .placeholder {
      width: 1260px;
      height: 360px;
      background-size: contain;

      .backdrop-content {
        left: 0;
        color: var(--color-white);
        font-size: 20px;
        width: 60%;
      }
    }
  }
}

.title-box {
  margin-bottom: 20px;
}

/* table */
table {
  background-color: var(--color-white);
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;

  &.no-margin-bottom {
    margin-bottom: 0;
  }

  th,
  td {
    border: 1px solid var(--color-light-grey);
    padding: 10px;
  }

  table {
    margin-bottom: 0;
  }
}

/* highlighted message box */
.highlight-box {
  background-color: var(--color-yellow);
  text-align: center;
  padding: 20px 10px;
  font-size: 18px;
  font-weight: bold;
  color: var(--color-red);
  margin-bottom: 20px;
}

.certificates {
  display: flex;
  flex-direction: row;
  justify-content: center;
  background-color: var(--color-semi-light-grey);
  list-style: none;
  padding: 20px;
  border-radius: 20px;

  li {
    margin: 20px;
    border: 1px solid var(--color-light-grey);
    background-color: var(--color-white);
    min-width: 20%;
    max-width: 20%;
    padding: 1px;

    img {
      min-width: 100%;
      width: 100%;
      margin-bottom: 0;
    }

    .certificate-name {
      padding: 10px;
      font-weight: bold;
      line-height: 1.4;
      text-align: center;
    }
  }

  &.four-column {
    li {
      max-width: 20%;
    }
  }
}

.image-card {
  border: 1px solid var(--color-light-grey);
  background-color: var(--color-white);
  text-align: center;
  margin-bottom: 20px;

  img {
    padding: 30px;
    width: 100%;
  }

  &.no-padding {
    img {
      padding: 0;
    }
  }
}

.courses-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  padding-left: 0;

  li {
    padding: 10px 20px;
    margin: 5px;
    background-color: var(--color-white);
    border: 1px solid var(--color-orange);
    border-radius: 10px;

    &.courses-list-title {
      min-width: 200px;
      font-weight: bold;
      border: 1px solid transparent;
      color: var(--color-white);
      text-align: center;
    }
  }
}

.call-to-action {
  display: flex;

  button,input[type=button],input[type=submit] {
    background-color: var(--color-orange);
    padding: 10px 40px;
    font-size: 16pt;
    color: var(--color-white);
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    border: none;
  }
}

ul,
ol {
  margin-top: 0;
  margin-bottom: 30px;
  padding-left: 30px;

  li {
    margin-bottom: 10px;
  }
}

ol.lowercase {
  margin-top: 0;
  padding-left: 30px;
  list-style-type: lower-alpha;
}

.form-card {
  border: 2px solid var(--color-orange);
  background-color: var(--color-white);
  padding: 40px;
  text-align: left;

  input,
  select {
    font-size: 16px;
    min-height: 50px;
    border-radius: 10px;
    border: 1px solid var(--color-light-grey);
    margin-bottom: 10px;
    min-width: 300px;
    width: 100%;
  }

  .form-row {
    margin-bottom: 10px;
  }
}

.label-red {
  padding: 5px 10px;
  border-radius: 5px;
  border: 1px solid var(--color-red);
  color: var(--color-red);
  line-height: 30px;
  margin-right: 5px;
}

.label-blue {
  padding: 5px 10px;
  border-radius: 5px;
  border: 1px solid var(--color-blue);
  color: var(--color-blue);
  line-height: 30px;
  margin-right: 5px;
}

.label-green {
  padding: 5px 10px;
  border-radius: 5px;
  border: 1px solid var(--color-green);
  color: var(--color-green);
  line-height: 30px;
  margin-right: 5px;
}

.card {
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  height: 100%;

  .card-content {
    padding: 20px 30px;
    line-height: 30px;

    h3 {
      margin-bottom: 0;
    }

    h2 {
      text-align: center;
    }
  }

  &.theme-red {
    border: 2px solid var(--color-red);

    .card-content {
      color: var(--color-red);

      h2,
      h3 {
        color: var(--color-red);
      }
    }
  }

  &.theme-blue {
    border: 2px solid var(--color-blue);

    .card-content {
      color: var(--color-blue);

      h2,
      h3 {
        color: var(--color-blue);
      }
    }
  }
}

.container-with-header-bar {
  margin-bottom: 40px;
  margin-left: 30px;
margin-right:30px;
  .text-book-container-title {
    text-align: center;
    color: var(--color-white);
    background-color: var(--color-grey);
    margin-top: 0;
    margin-bottom: 0;
    padding: 15px 20px 10px 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }

  .text-book-contents {
    padding: 40px;
    border: 2px solid var(--color-grey);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }

  &.theme-orange {
    .text-book-container-title {
      background-color: var(--color-orange);
    }

    .text-book-contents {
      border: 2px solid var(--color-orange);
    }
  }

  &.theme-blue {
    .text-book-container-title {
      background-color: var(--color-blue);
    }

    .text-book-contents {
      border: 2px solid var(--color-blue);
    }
  }

  &.theme-green {
    .text-book-container-title {
      background-color: var(--color-green);
    }

    .text-book-contents {
      border: 2px solid var(--color-green);
    }
  }
}

.information-card {
  position: relative;
  padding: 40px;
  text-align: center;
  background-color: var(--color-semi-light-grey);
  border-radius: 20px;
  margin-bottom: 20px;

  .information-card-title {
    font-size: 30px;
    color: var(--color-black);

    span {
      font-size: 60px;
    }
  }

  img {
    margin-bottom: 0;
  }

  .contact-methods {
    padding: 20px;
    background-color: var(--color-white);
    border-radius: 20px;

    a,
    p {
      font-size: 14pt;
    }
  }

  a,
  p {
    font-size: 24px;
    margin-bottom: 10px;
  }

  &.theme-red {
    background-color: var(--color-light-red);

    .information-card-title {
      color: var(--color-red);
    }
  }

  &.theme-blue {
    background-color: var(--color-light-blue);

    .information-card-title {
      color: var(--color-blue);
    }
  }

  &.theme-orange {
    background-color: var(--color-light-orange);

    .information-card-title {
      color: var(--color-orange);
    }
  }

  &.theme-green {
    background-color: var(--color-light-green);

    .information-card-title {
      color: var(--color-green);
    }
  }

  &.theme-purple {
    background-color: var(--color-light-purple);

    .information-card-title {
      color: var(--color-purple);
    }
  }
}

#topBtn {
  display: none; /* Hidden by default */
  position: relative; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  height: 0px;
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  font-size: 18px; /* Increase font size */
  padding-left: 1300px;
}
#topBtn p {
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: red; /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 5px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
  text-align:center;
width:50px;
margin: 0px;
}
.page_top_table{
width:auto;
margin: 10px 0px 10px 20px;
}
.page_top_table, .page_top_table td{
 border:none;
background: transparent;
}
.page_top_table div>p{
margin:6px 5px;line-height:21px;
}
.page_top_block-button {
background-repeat: no-repeat;
height: 79px; 
color: #fff; 
text-align: left; 
background-size: 100% !important; 
width: 135px;
}
.page_top_table_3btns {
border: 0px;
width: auto;
background: transparent;
margin-left:30px;
}
.page_top_table_3btns td{
border: 0px;
}
