/*font to verdana*/
a
    {font-family: verdana, sans-serif;}
.campl-primary-cta
    {font-family: verdana, sans-serif;}
    
/*Remove 'Quicklinks' and Cambridge University search box from header*/
.campl-quicklinks{
    display: none;
}

.campl-site-search{
    display: none;
}

/*CSCP homepage 'focus on' buttons tidy up and hover effect*/
.campl-focus-teaser {
    max-height: 75px;
    transition: all 0.25s ease;
    }
.campl-focus-teaser:hover {    
    transform: translate(-2px, -2px);
    background: #21787f;
}

/*Generic green/teal button*/
.green-button{
    background: #1e7680;
    border-radius: 5px;
    color: #ffffff;
    font-size: 14px;
    line-height: 40px;
    box-shadow: 2px 2px 2px 0px rgba(0,0,0,0.3);
    padding: 5px 10px 5px 10px;
    transition: background-color .25s ease-in-out, box-shadow .25s ease-in-out;
}
.green-button:visited, .green-button:focus{
    color: #ffffff;
}
.green-button:hover{
    color: #ffffff;
    text-decoration:none;
    background:#21828D;
}
.green-button:active{
     color: #ffffff;
    box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.3);
}
/* the colour of this button matches Book 1 */
.red-button{
    background: #a51137;
    display: inline-block;
    text-align: center;
    border-radius: 5px;
    color: #ffffff;
    font-size: 14px;
    line-height: 40px;
    box-shadow: 2px 2px 2px 0px rgba(0,0,0,0.3);
    padding: 5px 10px 5px 10px;
    transition: background-color .25s ease-in-out, box-shadow .25s ease-in-out;
}
.red-button:visited, .redB1-button:focus{
    color: #ffffff;
}
.red-button:hover{
    color: #ffffff;
    text-decoration:none;
    background:#6c112a;
}
.red-button:active{
     color: #ffffff;
    box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.3);
}

/*Top navigation bar - fix glitch where hovering over a 1st line button makes a 2nd line one jump over to the right */
.js .campl-local-navigation li {
	height: 40px;
}

/*Drop-down menus with secondary links on mobile e.g. 'Menu > Latin > WJEC certificates'*/
@media only screen and (max-width: 767px){
/*.js .campl-local-navigation .menu-mlid-472872*/
.js .campl-local-navigation .campl-sub{
	display: block;
	background-color: #106470;
	padding-left: 7px;
	margin-bottom: 0px;
  }
.campl-fwd-btn{
    right: 5px;
  }
}

/*FAQ accordion*/
.faq-tab {
  position: relative;
  margin-bottom: 1px;
  width: 100%;
  color: #fff;
  overflow: hidden;
}
.faq-tab input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.faq-tab label {
  position: relative;
  display: block;
  background: #1e7680;
  font-size: 10pt;
  font-family: verdana, sans-serif;
  padding: 15px 40px 15px 15px;
  margin: 0px;
  cursor: pointer;
}
.faq-tab-content {
  max-height: 0;
  overflow: hidden;
  color: #000000;
  font-family: verdana, sans-serif;
  font-size: 12px;
  background: #ffffff;
  line-height: 18px;
  -webkit-transition: max-height 0.35s;
  -o-transition: max-height 0.35s;
  transition: max-height 0.35s;
}
.faq-tab-content p {
  margin: 1em;
}
.faq-tab-content li {
    margin-left: 30px;
}
/* :checked */
.faq-tab input:checked ~ .faq-tab-content {
  max-height: 100vh;
}
/* Icon */
.faq-tab label::after {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: 3em;
  height: 3em;
  line-height: 3;
  text-align: center;
  -webkit-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.faq-tab input[type="checkbox"] + label::after {
  content: "\2BC8";
  margin-top: 5px;
}

.faq-tab input[type="checkbox"]:checked + label::after {
  transform: rotate(90deg);
}

.teacherguidebutton {
    width: 100px;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-right: 4px;
    border-radius: 0px;
}