
article h3 {
    margin:0.5em 0em;
}


.not-a-container {

}

.tab-bg {
    background-position-y:200px;
    background-image:url('/css/white.png');
    background-repeat:repeat-x;
}

.resources-section {
    background-color: white;
    width: 100%;
    padding: 30px;
}

/*CSS*/

.green1{color:green; font-size:16px;}
.green2{color:green; font-size:32px;}

.sausage{color:purple; font-size:24px;font-weight:bold;text-align:center; border:2px solid blue;}

.example{color:purple; font-size:18px;font-weight:bold;}

.equation{color:red; font-size:32px}

.studentResults div {
}

.studentResultsItem {
    margin: 1em 0 0.5em 0;
    display: flex;
    flex-direction: row;
    border-radius: 0.25em
}

.studentIcon {
    color:pink
}

.studentActions {
    margin: auto;
    align-items: flex-end;
    padding-right: 1em;
}


    .studentActions button {
        /*outline: 0;*/
        width: 100%;
        border: 0;
        padding: 3px;
        border: 1px solid white;
        border-radius: 0.5em;
        color: #FFFFFF;
        font-size: 1em;
        cursor: pointer;
    }

.searchIcon {
    padding: 1em
}

.searchIcon i {
    font-size: 3em;
    margin: auto;
    color: white
}

.searchContent {
    padding: 0.25em;
    display: flex;
    flex-direction: row;
    width: 100%
}

.searchResults div {
}

.searchResultsItem {
    margin: 1em 0 0.5em 0;
    display: flex;
    flex-direction: row;

    border-radius: 0.25em
}

.searchHeading h3{
    font-size: 2em;
    color: white
}
.searchHeading div {

        font-size:1em;
        opacity:0.8;

    }

.searchActions {
    margin:auto;
    align-items:flex-end;
    padding-right:1em;
}


.searchActions button {
    /*outline: 0;*/
    width: 100%;
    border: 0;
    padding: 15px;
    border: 1px solid white;
    border-radius:0.5em;
    color: #FFFFFF;
    font-size: 1em;
    cursor: pointer;
   
}

.taskActions button {
    /*outline: 0;*/
    width: 100%;
    border: 0;
    padding: 0.3px;
    border: 1px solid white;
    border-radius: 0.5em;
    color: #FFFFFF;
    font-size: 0.7em;
    cursor: pointer;
}


.searchResults a {
    padding: 0.3em 0;
    text-decoration: none;
    display: block;
    font-weight: bold;
    color: firebrick
}

ul.taggles {
    margin: 0;
    padding: 0;
    display: inline
}

.taggles li {
    display: inline-block;
    margin: 0
}

    .taggles li a {
        text-decoration: none
    }


.taggles span {
    font-size: 0.7em;
    border-radius: 0.35em;
    padding: 0.35em 0.7em;
    text-decoration: none;
}

    .taggles span:hover {
        opacity: 0.7;
    }





.beta-taglet {
    background-color: black;
    color: white;
    text-transform: uppercase;
    font-size: 0.4em;
    border-radius: 0.3em;
    padding: 0.3em;

}



.crumbs-head {
    padding-top: 0;
    color: #808080;
}
.crumbs{margin-top:-20px;font-size:0.7em;color:#606060}
.crumbs a{text-decoration:none; color:#606060}

ul.breadcrumb{
    list-style-type:none;
    padding:0;
    margin:0;
}

ul.breadcrumb li{
    display:inline;

}

    .selected{background-color:green}
    ul.debug{list-style-type:none;}
    .debug li{display:inline;border:1px solid pink}
    .debug li.label{border:0}
        
    ul.nav{list-style-type:none;}
    .nav li{display:inline;}        
        
    .tag{  

        display: inline-flex;
        border-radius: 3px;

        background-color:transparent;
        /*text-transform:uppercase;*/
        font-size:11px;
        color:white;
        width:100%;
    }
.tog {
    display: inline-flex;
    border-radius: 3px;
    background-color: transparent;
    /*text-transform:uppercase;*/

    color: white;
    width: 100%;
}

.pulse {
    color: white;
    background-color: rgba(22,85,117, 1);
    cursor: pointer;
    box-shadow: 0 0 0 rgba(22,85,117, 0.4);
    animation: pulse 2.1s infinite;
}
    .pulse:hover {
        background-color: #4ba3c3;
        animation: none;
    }

    .pulse a:hover {
        background-color: #4ba3c3;
        animation: none;
    }


@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(22,85,117, 0.4);
    }
    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(22,85,117, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(22,85,117, 0);
    }
}
@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(22,85,117, 0.4);
        box-shadow: 0 0 0 0 rgba(22,85,117, 0.4);
    }
    70% {
        -moz-box-shadow: 0 0 0 10px rgba(22,85,117, 0);
        box-shadow: 0 0 0 10px rgba(22,85,117, 0);
    }
    100% {
        -moz-box-shadow: 0 0 0 0 rgba(22,85,117, 0);
        box-shadow: 0 0 0 0 rgba(22,85,117, 0);
    }
}

.pulse2 {
    color: white;
    background-color: #ffffff20;
    cursor: pointer;
    box-shadow: 0 0 0 rgba(255,255,255, 0.4);
    animation: pulse2 3s infinite;
}
    .pulse2:hover {
        animation: none;
        /*background-color: rgb(255,140,0);*/
    }

    .pulse2 a:hover {
        /*background-color: rgb(255,140,0);*/
    }


@-webkit-keyframes pulse2 {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255,255,255, 0.4);
  }
  70% {
      -webkit-box-shadow: 0 0 0 10px rgba(255,255,255, 0);
  }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255,255,255, 0);
    }
}
@keyframes pulse2 {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(255,255,255, 0.4);
        box-shadow: 0 0 0 0 rgba(255,255,255, 0.4);
    }
    70% {
        -moz-box-shadow: 0 0 0 10px rgba(255,255,255, 0);
        box-shadow: 0 0 0 10px rgba(255,255,255, 0);
    }
    100% {
        -moz-box-shadow: 0 0 0 0 rgba(255,255,255, 0);
        box-shadow: 0 0 0 0 rgba(255,255,255, 0);
    }
}


.pulse3 {
    color: white;
    background-color: rgb(255,140,0,0.9);
    cursor: pointer;
    box-shadow: 0 0 0 rgba(255,255,255, 0.4);
    animation: pulse2 3s infinite;
}

    .pulse3:hover {
        animation: none;
        background-color: rgb(255,140,0);
    }

    .pulse3 a:hover {
        background-color: rgb(255,140,0);
    }


@-webkit-keyframes pulse3 {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255,255,255, 0.4);
    }

    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(255,255,255, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255,255,255, 0);
    }
}

@keyframes pulse3 {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(255,255,255, 0.4);
        box-shadow: 0 0 0 0 rgba(255,255,255, 0.4);
    }

    70% {
        -moz-box-shadow: 0 0 0 10px rgba(255,255,255, 0);
        box-shadow: 0 0 0 10px rgba(255,255,255, 0);
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(255,255,255, 0);
        box-shadow: 0 0 0 0 rgba(255,255,255, 0);
    }
}


div.resources-grid{
    /*display:flex;*/
    width:100%;

}

.resources-grid .item {
    justify-content: space-between;
    width: 100%;
    margin: 0;
    padding: 0;
}


mjx-container.MathJax{font-size:200%;}


.header-taglet {
    color: white;
    text-transform: uppercase;
    font-size: 14px;
    border-radius: 3px;
    padding: 3px 5px;

}

    .header-taglet:hover {
        cursor:pointer;
    }


.header-taglet.Free {
    background: #222;
    margin-left: auto
}

.header-taglet.Pro {
    background: #222;
    margin-left: auto
}
  

  .resource-taglet{color:white;text-transform:uppercase;font-size:0.8em;border-radius:2px;padding:5.5px 7px;background:pink}
  .resource-taglet.Free{background:green; margin-left:auto}
  .resource-taglet.Members{background:orange; margin-left:auto}
  .resource-taglet.Pro{background:red; margin-left:auto}
  
  ul.resources li a{background-color:#185676;  display: flex; align-items: center;justify-content: flex-start;}
  ul.resources li a i{ font-size:28px; }
  
  ul.resources{margin:0;padding:0}
  ul.resources li{list-style-type:none;margin:0.3em 0;}

.labelled{
    padding: 1.5em 0 0;
    font-size: 75%;
    line-height: 1;
    color: #222;
    text-align: left;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em;
      
  }

.labelled-divider {
    padding: 0;
    border-top: 1px solid #d3d3d345;
    font-size: 75%;
    line-height: 1;
    color: transparent;
    text-align: left;
    white-space: nowrap;
    vertical-align: baseline;
}

ul.resources-compact li a {
    font-size: 1em;
    background-color: #175676;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
  ul.resources-compact li a i{ font-size:22px; }
  
  ul.resources-compact{margin:0;padding:0}
  ul.resources-compact li{list-style-type:none;margin:3px 0;}
 /* ul.resources-compact li.labelled{height:24px;color:black;background-color:white;font-size:110%;text-transform:uppercase;margin:10px 0 5px 0}
  */
ul.resources-topics li a {
    width: 100%;
    color: #606060;
    font-size: 1.2em;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    letter-spacing: -0.05em;
    padding: 2px 24px;
}

ul.resources-topics li b {
    width: 100%;
    color: #606060;
    font-size: 1.2em;
    font-weight:normal;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    letter-spacing: -0.05em;
    padding: 2px 24px;
}

ul.resources-topics li a.no-link:hover {
    background-color: transparent;
}

ul.resources-topics li a:hover {
    
    background-color:aliceblue;
}
  ul.resources-topics li a i{ font-size:16px; }
  
  ul.resources-topics{margin:0;padding:0;width:90%}
  ul.resources-topics li{list-style-type:none;margin:3px 0;}
  /*ul.resources-topics li.labelled{height:24px;color:black;background-color:white;font-size:110%;text-transform:uppercase;margin:10px 0 5px 0}
    */
  .resources-inline li a{font-size:1em;  display: flex; }
.resources-inline-ca li a {
    font-size: 1em;
    display: flex;
}
  .resources-inline li.item a i{ text-align:center;padding:0.5em 0 0 0}
.resources-inline-ca li.item a i {
    font-size: 32px;
    color: silver;
    text-align: center;
    padding: 0.5em
}

.resources-inline-ca li.item a:hover {
    font-size: 14px;
    color: white;
    text-transform: none;
    text-decoration: none;
    text-align: center;
}

.resources-inline-ca li.item:hover {
    border: 1px solid white;
    background-color:#00000040;
}


  .resources-inline li.item a{ border:1px solid transparent;font-size:14px; color:white; text-transform:none; text-decoration:none;text-align:center;}
.resources-inline li.item a:hover {

    font-size: 14px;
    color: white;
    text-transform: none;
    text-decoration: none;
    text-align: center;
}

.resources-inline li.item:hover {
    /*background-color: #00000020;*/
}

  .resources-inline{margin:0;padding:0; display:flex; flex-wrap : wrap;}
    .resources-inline li.item {
        /*background: #175676;
        opacity: 0.9;*/
        border-radius: 0.5em;
        list-style-type: none;
        margin: 0;
        
    }
  .resources-inline li.item:hover{opacity:0.9}
    .resources-inline div.item-label {
        padding: 0.25em 1em 1em 1em;
        
    }
  
  .resource-description{
      margin: 0 0.7em;
    font-size: 80%;
      font-weight:normal;
      text-transform: none;
  }
  










/*=======================================
  TAB BODY
========================================*/





.tabs.resources {
    width:100%;
    border-bottom:6px solid transparent;    
    
 }


nav.tabs-nav.resources{
    
    border-bottom:3px solid #4ba3c4;
    
}

h2.resources {
    color: silver;
    border-bottom: 1px solid silver;
    text-transform: uppercase;
    font-size: 1em;
    margin-top: 1em;
}

/*=======================================
  TAB NAVIGATION
========================================*/
.tabs-nav.resources ul {
  margin: 0;
  padding: 0; }
.tabs-nav.resources li {
    border-radius:6px 6px 0 0 ;
  padding: 0.7% 1.8%;
  display: inline-block;
  /* For normal, healthy browsers */
  /*white-space: nowrap;*/
  *display: inline;
  zoom: 1;
  font-size: 10px;
  font-size: 1rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing:-1px;
  color: white;
  cursor: pointer;
  margin-left: 1px;
  margin-bottom: 0;
  border-right: 1px solid transparent;
  border-bottom: 1px solid transparent;
  background-color:  silver;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }
  * html .tabs-nav.resources li {
    /* for IE6 */
    display: inline; }
  * + html .tabs-nav.resources li {
    /* for IE7 */
    display: inline; }
  .tabs-nav li:hover {
    color: #fff;
    background-color: #4ba3c4;
    border-bottom: 1px solid #4ba3c4;}
  .tabs-nav.resources li:first-child {
    margin-left: 0;
    border-left: 0; }
  .tabs-nav.resources li:last-child {
    border-right: 0;
    border-left: 0; }
@media (max-width: 800px) {
  .tabs-nav.resources li {
    width: 33.34%;
    padding: 0; } }

/*=======================================
  TAB CONTENT
========================================*/
.tab-container.resources {
  width: 100%;
  background-color: #fff; }

.tabs-nav.resources .active, li.active {
    color: white;
    background-color: #175676;
    border-radius: 6px 6px 0 0;
    border-bottom: 1px solid #175676;
}

.section--header--resources {
    padding: 0;
    color:white;
    background-image: url(https://classanalytics.com.au/media/kiomato3/section-header-portal.png);
    height:160px;
    background-size:2561px 50%;
    background-position:center bottom;
    background-repeat:no-repeat;
    margin-top:0;
}
        