:root {
  --darkblue: #0D223F;
  --darkerblue: #0a1b32;
  --lightblue: #56BDD0;
  --red: #A91D3F;
  --yellow: #FFDE00;
  --lightgrey: #efefef;

}

body::-webkit-scrollbar {
  width: 11px;
}
body {
  scrollbar-width: thin;
  scrollbar-color: var(--darkblue) var(--lightgrey);
}
body::-webkit-scrollbar-track {
  background: var(--lightgrey);
}
body::-webkit-scrollbar-thumb {
  background-color: var(--darkblue);
  border-radius: 6px;
  border: 3px solid var(--darkblue);
}

.picker::-webkit-scrollbar {
  width: 11px;
}
.picker {
  scrollbar-width: thin;
  scrollbar-color: var(--darkblue) var(--lightgrey);
}
.picker::-webkit-scrollbar-track {
  background: var(--lightgrey);
}
.picker::-webkit-scrollbar-thumb {
  background-color: var(--darkblue);
  border-radius: 6px;
  border: 3px solid var(--darkblue);
}
.completed td{background: rgba(178,34,34,0.5);}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
*{ -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }
a{-webkit-transition:all 1s ease;
         -moz-transition:all 1s ease;
               -o-transition:all 1s ease;
                     transition:all 1s ease; text-decoration: none; color: #92002C;}
a:hover{color: #01244C;}
a img{-webkit-transition:all 1s ease;
         -moz-transition:all 1s ease;
               -o-transition:all 1s ease;
                     transition:all 1s ease;}	
.smoothie{-webkit-transition:all 0.4s ease;
         -moz-transition:all 0.4s ease;
               -o-transition:all 0.4s ease;
                     transition:all 0.4s ease;}
html,body {
	margin:0;
	padding:0;
	
}
p{margin: 0 0 10px;}

body{font-family:'Karla', sans-serif;}
html{background: #f6f6f6;}
h1,h2,h3,h4,h5,h6{font-family:'Karla', sans-serif;font-weight: 700;text-transform: uppercase;letter-spacing: 2px;}
.container{width:96%; max-width: 1340px; height: auto; overflow: visible; margin: 20px auto; background: #fff;}


.header {width: 100%; max-width: 100vw; background:#fff; border:none; position: relative; border-bottom: 3px solid var(--darkblue); z-index: 499;}
.innerheader{display: flex; justify-content: space-between; flex-wrap: wrap; align-items: center; width: 100%; position: relative;padding: 40px 0;}

.backbtn{display: none; position: absolute; bottom: -55px; right: 10px; color: #0C1A30; font-size: 30px; z-index: 100;}
.backbtn:hover{color: #92002C;}
.logo{width:160px; padding: 10px; position: absolute; top: 0px; right: 20px;}

.toggler{display: none;}

.nav{margin: 0; padding: 0 20px;  }
.nav li{list-style-type: none; padding: 0;}
.nav li a{color: var(--darkblue); margin: 0 20px 0 0; font-size: 16px; font-weight: 700; text-transform: uppercase; font-family:'Karla', sans-serif; letter-spacing: 2px;}
.nav li a:hover{color: var(--red);}
.nav li a.current{color: var(--red);}
.nav li a.current:hover{color: var(--red);}
.toggler{display: none;}
.footer {border-top: 5px solid var(--darkblue); width: 100%; }
.innerfooter{width: 100%; height: auto; margin: 0 auto; padding: 10px 20px; overflow: hidden; color: var(_-darkblue);font-size: 16px; text-align: center; text-transform: uppercase; display: flex; justify-content: space-between; flex-wrap: wrap;}


.logo{order: 2;}
.navigation{order: 1; }
.ham{display: none; order: 3;}


.content{width: 100%; height: auto; overflow: hidden; margin: 0 auto; color: var(--darkblue); min-height: 100vh; position: relative; background: var(--lightgrey);}
.flexcontent{display: flex; justify-content: space-between; flex-wrap: wrap;}
.textcontent{width: 100%; height: auto; padding: 30px 0; margin-bottom: 20px;}
.textcontent h3{font-weight: 900; margin-top: 0;}

.error {background: firebrick; display: block; color: #fff; padding: 10px;}
.errorfield{border: 1px solid firebrick;}


/* ==========================================================================
   HOME
   ========================================================================== */
[data-accordion-element-content] {
  height: auto;
  overflow: hidden;
  transition: height 0.5s;
}


.card {
  width: 100%; max-width: 800px;
  margin: 50px auto;
  border-radius: 2px;
  background: white;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}

article {
  position: relative;
  
  transition: all 0.3s;
  background: #E8EAF6;
}
article.selected {
  transform: scale(1.1);
  box-shadow: 0 0 5px rgba(2, 2, 2, 0.4);
  z-index: 2;
}

.acchead {
  position: relative;
  background: var(--darkblue);
  padding: 20px 75px 20px 30px;
  font-size: 16px;font-weight: 700;text-transform: uppercase;letter-spacing: 1px;
  line-height: 30px;
  color: #fff;
  overflow: hidden;
  transition: background 0.3s;
}
.acchead:hover, .selected .acchead {
  cursor: pointer;
  background: var(--red);
}
.acchead:before, .acchead:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -1px;
  margin-right: 30px;
  width: 20px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s;
}
.acchead:before {
  transform: rotate(0deg);
  -webkit-animation: close-line-one-in 0.8s forwards;
          animation: close-line-one-in 0.8s forwards;
}
.selected .acchead:before {
  -webkit-animation: close-line-one-out 0.8s forwards;
          animation: close-line-one-out 0.8s forwards;
}
.acchead:after {
  transform: rotate(90deg);
  -webkit-animation: close-line-two-in 0.8s forwards;
          animation: close-line-two-in 0.8s forwards;
}
.selected .acchead:after {
  -webkit-animation: close-line-two-out 0.8s forwards;
          animation: close-line-two-out 0.8s forwards;
}

.acccontent {
  opacity: 0;
  transform: translateY(20px);
  transition: all ease-out 0.4s 0.1s;
  background: var(--lightgrey);
  
}
.accinner{   padding: 25px 30px 40px;font-size: 14px;font-weight: 500;text-transform: uppercase;letter-spacing: 1px;
  line-height: 24px;
  color: #000;}
.selected .acccontent {
  transform: translateY(0);
  opacity: 1;
}
.collapsed .acccontent {
  display: none;
}


@-webkit-keyframes close-line-one-out{0%,50%{transform:translateX(0)}75%{transform:translateX(50px)}76%{transform:translateX(50px) translateY(50px)}100%{transform:rotate(45deg)}}@keyframes close-line-one-out{0%,50%{transform:translateX(0)}75%{transform:translateX(50px)}76%{transform:translateX(50px) translateY(50px)}100%{transform:rotate(45deg)}}@-webkit-keyframes close-line-one-in{0%,20%{transform:rotate(45deg)}60%{transform:translateX(50px) translateY(50px) rotate(45deg)}61%{transform:translateX(50px)}100%{transform:rotate(0deg)}}@keyframes close-line-one-in{0%,20%{transform:rotate(45deg)}60%{transform:translateX(50px) translateY(50px) rotate(45deg)}61%{transform:translateX(50px)}100%{transform:rotate(0deg)}}@-webkit-keyframes close-line-two-out{0%,50%{transform:rotate(90deg)}75%{transform:translateY(-50px) rotate(90deg)}76%{transform:translateY(-50px) translateX(50px) rotate(90deg)}100%{transform:rotate(135deg)}}@keyframes close-line-two-out{0%,50%{transform:rotate(90deg)}75%{transform:translateY(-50px) rotate(90deg)}76%{transform:translateY(-50px) translateX(50px) rotate(90deg)}100%{transform:rotate(135deg)}}@-webkit-keyframes close-line-two-in{0%{transform:rotate(135deg)}50%{transform:translateY(-50px) translateX(50px) rotate(135deg)}51%{transform:translateY(-50px) rotate(90deg)}100%{transform:rotate(90deg)}}@keyframes close-line-two-in{0%{transform:rotate(135deg)}50%{transform:translateY(-50px) translateX(50px) rotate(135deg)}51%{transform:translateY(-50px) rotate(90deg)}100%{transform:rotate(90deg)}}
/* ==========================================================================
   PROFILE  BADGES
   ========================================================================== */


.profileform{width: 30%; padding: 20px; text-align: left; outline: 0px solid #0C1A30;}

.profiletable{width: 68%; padding: 20px; text-align: left;}
.viewertable{text-align: left;}
.showbadges{width: 68%; padding-top: 0;}
.badges{width: 100%; display: flex; justify-content: space-between; flex-wrap: wrap;}
.eachbadge{margin:0 10px 15px 0; background: #fff; padding: 10px 10px 30px;  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);overflow: hidden; position: relative; width: 120px; vertical-align: top;}
.eachbadge img{width: 100px; }
.eachbadge p{text-align: center; font-weight: 600; font-size: 10px;}
.unpub{position: absolute; bottom: 0; left: 0; padding: 5px; background: #01244C; color: #fff; font-weight: 900; border: none;}
.unpub:hover{background: #00AEED;}
.btype{position: absolute; bottom: 0px; left: 0px; color: #fff; padding: 3px 5px; font-size: 10px;}
.club{background: #01244C; }
.region{background: #148312; }
.sponsor{background: #f00; }



.editer{padding: 10px 15px; background: #92002C; text-align: center; font-weight: 700; height: auto;display: block; width: 100%; color: #fff; margin-top: 10px;}
.editer:hover{ background: #103B7A; color: #fff;}

.redpostertitle{border: 1px solid #92002C !important;}
.greenpostertitle{border: 1px solid green !important;}

.thumbfilter{margin: 0 0 20px;}
.thumbbutton{width:100%; margin-bottom: 20px;}

.thumbfilter input{padding: 10px;}
.thumbbutton button{width: auto; border: 1px solid #d9d9d9; background: #0C1A30; color: #fff; padding: 5px 10px; transition: 0.4s; text-transform: uppercase; font-weight: 900; font-size: 14px; outline: 0px;}
.thumbbutton button:hover{background: #92002C; color: #fff;}
.thumbbutton button:active{background: #92002C;}

.gaap{opacity: 0;}
/* ==========================================================================
   POSTER
   ========================================================================== */
.section{width: 100%; max-width: 1300px; padding: 20px;}
.postersection{text-align: center; width: 100%; background: #fff; padding: 20px; border-top: 3px solid #0C1A30; display: flex; justify-content: space-between; flex-wrap: wrap;}
.posterhead{width: 100%; display: flex; justify-content: space-between; flex-wrap: wrap;}



.hpostertitle{display: block; margin: 10px auto; border: 0;}
.postertable{width: 100%; margin: 0 auto; background: #fff; padding: 20px;}

.chooselogo{width: 100%; height: auto; max-height: 400px; overflow: auto;}

img, iframe {
max-width: 100%;
height: auto;
display: block;
}
.imagepreview img{width: 100%;}

.draggable{position: relative;}
.draggableimage{position: relative;}
.linedrag{position: absolute; top:0; left: -30px; width:30px; height:100%; background: rgba(255,222,0,0.3) url(../img/moveyellow.png) center center no-repeat; opacity: 0; cursor:move;}
.draggable:hover{background: rgba(255,222,0,0.3);box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);}
.draggableimage:hover{outline: 1px solid black;}
.draggable:hover .linedrag{opacity: 1;}
.draggableimage:hover .linedrag{opacity: 1;}
.draggable:focus{outline: 1px solid black;}
.draggableimage:focus{outline: 1px solid black;}
.resizeholder:hover{background:url(../img/resize.png) bottom right no-repeat; z-index: 10000}
.ui-icon, .ui-widget-content .ui-icon {
    background-image: url(../img/resize.png) bottom right no-repeat; z-index: 10000
}



.ui-icon {
    width: 16px;
    height: 16px;
}

.ui-resizable-se {
    cursor: se-resize;
    width: 12px;
    height: 12px;
    right: 1px;
    bottom: 1px;
}

.ui-resizable-handle {
    position: absolute;
    font-size: 0.1px;
    display: block;
    -ms-touch-action: none;
    touch-action: none;
}
.linefont{position: absolute; top:0; right: -40px; width: 40px; height:100%; background: rgba(255,255,255,0.3); display: flex; justify-content: space-between; flex-wrap: wrap;}
.fontchanger{width:20px; height: 100%; display: block;}
.fontplus{background: url(../img/plus.png) center center no-repeat;}
.fontplus:hover{background: rgba(255,255,255,0.6) url(../img/plus.png) center center no-repeat;}
.fontminus{background: url(../img/minus.png) center center no-repeat;}
.fontminus:hover{background: rgba(255,255,255,0.6) url(../img/minus.png) center center no-repeat;}
.nonclick{filter: grayscale(1); opacity: 0.5; pointer-events: none;}
/* ==========================================================================
   FORMS
   ========================================================================== */
.loneformer{width: 100%; max-width: 600px; margin: 20px auto; background: #fff; padding:40px;}
.theform{width:100%; margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; padding: 20px; margin-bottom: 20px; text-align: center}
.pform{text-align: left;}
.formholder{height: 0px; overflow: hidden;}
.halfinput{width:  50%;}
.fullinput{width: 100%; position: relative;}
.textinput{width: 100%; border-top: 1px solid #d9d9d9; border-left: 1px solid #d9d9d9; border-right: 1px solid #d9d9d9; padding: 15px; background: #fff;}
textarea.textinput{height: 200px;}
.textinput:focus{background-color: #d9d9d9;}

 
.fulllabel{width:100%; font-size: 14px; text-transform: capitalize; font-weight: 900; padding: 5px 0; color: #0C1A30;}
.labelinput{margin-bottom: 10px;}
.submitbutton{width: 100%; border: 1px solid #d9d9d9; background: #0C1A30; color: #fff; padding: 15px; transition: 0.4s; text-transform: uppercase; font-weight: bold; font-size: 18px; display: block; font-family: 'Karla', sans-serif;}
.submitbutton:hover{background: #92002C;}
.submitbutton:active{background: #92002C;}

.downloadbutton{width: auto; border: 0px solid #d9d9d9; background: #0C1A30; color: #fff; padding: 15px; transition: 0.4s; text-transform: uppercase; font-weight: 900; font-size: 14px;}
.downloadbutton:hover{background: #92002C; color: #fff;}
.downloadbutton:active{background: #92002C;}

.generatebutton{width: auto; border: 0px solid #d9d9d9; background:#92002C ; color: #fff; padding: 15px; transition: 0.4s; text-transform: uppercase; font-weight: bold; font-size: 16px;font-family: 'Karla', sans-serif;  }
.generatebutton:hover{background: #0C1A30; color: #fff;}
.generatebutton:active{background: #0C1A30;}
.login-help {
  width: 100%;
  text-align: center;
    font-size: 12px}

.printform{width: 60%; padding: 20px; text-align: left; outline: 10px solid #0C1A30;}

.printimage{width: 40%; padding: 20px; position: relative;}
.printimageline{position: absolute; bottom: -10px; left: 0px; height: 10px; width: 100%; background: #0C1A30;}
.printimage img{width: 100%;}
.printtable{width: 100%; padding: 20px;}
.incompletetd{background: rgba(171,25,53,0.5) !important}


/* ==========================================================================
   MODAL
   ========================================================================== */

.modall {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 0vh;
  background-color: transparent;
  overflow: hidden;
  transition: background-color 0.25s ease;
  z-index: 1200001;
}
.modall.open {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  transition: background-color 0.25s;
}
.modall.open > .content-wrapper {
  transform: scale(1);
}
.modall .content-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  
  justify-content: space-between;
  width: auto;
  max-width: 80%;
  margin: 0;
  padding: 40px;
  background:#f7f7f7;
  border-radius: 0.3125rem;
  box-shadow: 0 0 2.5rem rgba(0, 0, 0, 0.5);
  transform: scale(0);
  transition: transform 0.25s;
  transition-delay: 0.15s;
    max-height: 90vh;
    overflow: auto;
}
.modalimage{width: 20%; background: #fff; padding: 20px;}
.modalimage img{width: 100%; height: 100%; object-fit: contain;}

.modalbody{width: 80%; padding: 40px;}

.modall .content-wrapper .close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background-color: transparent;
  font-size: 1.5rem;
  transition: 0.25s linear;
    cursor: pointer;
}
.modall .content-wrapper .close:before, .modall .content-wrapper .close:after {
  position: absolute;
  content: '';
  width: 1.25rem;
  height: 0.125rem;
  background-color: black;
}
.modall .content-wrapper .close:before {
  transform: rotate(-45deg);
}
.modall .content-wrapper .close:after {
  transform: rotate(45deg);
}
.modall .content-wrapper .close:hover {
  transform: rotate(360deg);
}
.modall .content-wrapper .close:hover:before, .modall .content-wrapper .close:hover:after {
  background-color: tomato;
}
.modall .content-wrapper .modall-header {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  padding: 0 0 1.25rem;
}
.modall .content-wrapper .modall-header h2 {
  font-size: 1.5rem;
  font-weight: bold;
    color: var(--main);
}
.modall .content-wrapper .modall-content {
  position: relative;
  display: flex; flex-wrap: wrap;width: 100%;padding: 0;
}
.modall .content-wrapper .modall-content p {
  font-size: 0.875rem;
  line-height: 1.75;
    width: 100%;
}
.modall .content-wrapper .modall-footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin: 0;
  padding: 1.875rem 0 0;
}
.modall .content-wrapper .modal-footer .action {
  position: relative;
  margin-right: 0.625rem;
  padding: 0.625rem 1.25rem;
  border: none;
  background-color: slategray;
  border-radius: 0.25rem;
  color: white;
  font-size: 1rem;
  font-weight: 600;
    text-transform: uppercase;
  overflow: hidden;
  z-index: 1;
}
.modall .content-wrapper .modal-footer .action:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  transition: width 0.25s;
  z-index: 0;
}
.modall .content-wrapper .modal-footer .action:first-child {
  background-color: var(--main);
}
.modall .content-wrapper .modal-footer .action:last-child {
  background-color: var(--grey);
}
.modall .content-wrapper .modal-footer .action:hover:before {
  width: 100%;
}
/* ==========================================================================
   JOB BOARD MASONRY
   ========================================================================== */
 
.masonry {display: flex; justify-content: flex-start; flex-wrap: wrap; width: 100%; outline: 0px solid red; list-style-type: none; padding: 0 20px; margin: 0;}

.item {list-style-type: none; position: relative;
    display: inline-block;
    background: #fff;
    padding: 0 0 40px 0;
    margin: 0 0 20px;
    width: calc(33.333333% - 15px);
    border: 5px solid #0C1A30;
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}
.item:hover{box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);}
/*.item:nth-of-type(4N+2){margin-left:20px; margin-right: 10px;}
.item:nth-of-type(4N+3){margin-left:10px; margin-right: 20px;}*/
.item{margin-bottom: 20px;}
.item:nth-of-type(3N+2){margin: 0 20px 20px; outline: 0px solid red}
.itemheader{padding: 20px; border-bottom: 5px solid #0C1A30;}
.itemcontent{padding: 0;}
.itemreadmore{padding: 0 20px 20px;}
.itemimage{border-bottom: 0px solid #0C1A30; border-top: 0px solid #0C1A30; width: 100%; height: 300px; opacity: 0.6; filter: sepia(100%); transition: all 0.3s cubic-bezier(.25,.8,.25,1);}
.itemimage img{object-fit: cover; width: 100%; height: 100%; object-position: top center;}
.item:hover .itemimage{filter: sepia(0); opacity: 1;}
.ihead{font-family:  'Karla', sans-serif; margin: 0; color: #0C1A30;}
.ipara{font-weight: 400; margin: 10px 0 0; color: #0C1A30}
.itemfooter{background: #fff;  border-top: 5px solid #0C1A30; padding: 10px 20px; color: #0C1A30; position: absolute; bottom: 0; left: 0; width: 100%; font-size: 12px;font-family:  'Karla', sans-serif;}
.itemfooter i{margin-right: 10px;}
.jobread{border:1px solid #0C1A30; color: #0C1A30; padding: 4px 8px; display: block;}
.jobread:hover{background: #0C1A30; color: #fff; }



.controls{display: flex; flex-wrap: wrap; align-items: center; outline: 0px solid red; border-bottom: 10px solid #0C1A30; padding: 20px; margin-bottom: 20px; }
.sorter{margin-right: 20px; margin-bottom: 20px;}
 input.sortinput {
  border:solid 5px #0C1A30;
  border-radius: 0px;
  padding:8px 14px;
font-family:'Karla', 'Source Sans Pro', sans-serif; font-size: 18px;
     max-width: 90%;
}
input.sortinput:focus {
  outline:none;
  border-color:#92002C;
}
.sort {
  padding:13px 30px;
  border-radius: 2px;
  border:none;
  display:inline-block;
  color:#fff;
  text-decoration: none;
  background-color: #0C1A30;text-align: center; 
    font-weight: bold; font-size: 18px; font-family:'Karla', 'Source Sans Pro', sans-serif;
  
}
.sort:hover {
  text-decoration: none;
  background-color:#92002C;
}
.sort:focus {
  outline:none;
}
.sort:after {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid transparent;
  content:"";
  position: relative;
  top:-10px;
  right:-5px;
}
.sort.asc:after {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #fff;
  content:"";
  position: relative;
  top:13px;
  right:-5px;
}
.sort.desc:after {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #fff;
  content:"";
  position: relative;
  top:-10px;
  right:-5px;
}

.filterer {
    cursor: pointer;
  padding:10px 30px;
  border-radius: 2px;
  border:none;
  display:inline-block;
  color:#fff;
  text-decoration: none;
  background-color: #0C1A30;text-align: center; 
    font-weight: bold; font-size: 18px; font-family:'Karla', 'Source Sans Pro', sans-serif;
  
}
.filterer:hover {
  text-decoration: none;
  background-color:#92002C;
    color: #fff;
}

.filtereractive{background: #92002C; color: #fff;}
/*/////////////// POSTER FORM STYLES ////////////////////*/
.field-group{
  display: flex; 
  margin: 0 0 12px 0;
}
.field-group .label{background: #efefef;
  flex: 1; 
  text-align: right; 
  margin: 0 8px 0 0;
  padding: 10px 9px 9px;
    text-transform: uppercase;
    font-weight: 800;
    outline: 2px solid #f5f5f5; font-family: 'Karla', sans-serif; 

}
.label{position: relative; overflow: hidden;}
.checker{position: absolute; left: -4px; top:-4px; width:52px; height: 52px; opacity: 0.3 }
.checkersc{position: absolute; left: -4px; top:-4px; width:52px; height: 52px; opacity: 0.3 }
.checkno{background: url(../img/cross.png) no-repeat; background-size: cover;}
.checkyes{background: url(../img/tick.png) no-repeat; background-size: cover;}
.field-group .field{outline: 0px solid red;
  flex: 4;
}
/*
.field-group:last-child{
  display: flex;
  justify-content: flex-end;
}
.field-group:last-child .field{
  max-width: 75%;
}*/
input, select, textarea{
  padding: 10px; 
  font-size: 1rem; 
  border: solid 1px #eee;
  background: #fff; 
  box-sizing: border-box;
font-family: 'Source Sans Pro', sans-serif; font-family: 'Karla', sans-serif;  
}
textarea {
  width: 100%;  
}
input, select{
  width: 50%;
}
input[type="radio"],
input[type="checkbox"],
input[type="submit"]{
  width: 100%;
}

/*/////////////// RWD STYLES //////////////////// https://codepen.io/torbencolding/pen/emKMZx */
@media (max-width: 720px) {
.field-group .label{
     text-align: left; 
     margin: 0;
  }
  input, select{
    width: 60%;
  }
}
@media (max-width: 480px) {
  input,
  select{width: 100%;}
  input[type="radio"],
  input[type="checkbox"],
  input[type="submit"]{
  width: auto;
  }
.field-group{
  display: flex;
  flex-direction: column;
  margin: 0 0 6px 0;
  }
.field-group .label{
  padding: 0 0 5px 0;
  margin: 10px 0 0 0;
  }
}

.gradient-pattern {
    display: none;
    pointer-events: none;
    position: absolute; top: 0; left: 0;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  width: 100%;
  height: 100%;
    z-index: 10;
  border: none;
  font: normal 100%/normal Arial, Helvetica, sans-serif;
  color: rgba(255,255,255,1);
  -o-text-overflow: clip;
  text-overflow: clip;
  background: -webkit-linear-gradient(90deg, #0C1A30 2px, rgba(0,0,0,0) 2px), -webkit-linear-gradient(0deg, #0C1A30 2px, rgba(0,0,0,0) 2px), -webkit-linear-gradient(90deg, rgba(12,26,48,0.298039) 1px, rgba(0,0,0,0) 1px), -webkit-linear-gradient(0deg, rgba(12,26,48,0.298039) 1px, rgba(0,0,0,0) 1px);
  background: -moz-linear-gradient(0deg, #0C1A30 2px, rgba(0,0,0,0) 2px), -moz-linear-gradient(90deg, #0C1A30 2px, rgba(0,0,0,0) 2px), -moz-linear-gradient(0deg, rgba(12,26,48,0.298039) 1px, rgba(0,0,0,0) 1px), -moz-linear-gradient(90deg, rgba(12,26,48,0.298039) 1px, rgba(0,0,0,0) 1px);
  background: linear-gradient(0deg, #0C1A30 2px, rgba(0,0,0,0) 2px), linear-gradient(90deg, #0C1A30 2px, rgba(0,0,0,0) 2px), linear-gradient(0deg, rgba(12,26,48,0.298039) 1px, rgba(0,0,0,0) 1px), linear-gradient(90deg, rgba(12,26,48,0.298039) 1px, rgba(0,0,0,0) 1px);
  background-position: -2px -2px, -2px -2px, -1px -1px, -1px -1px;
  -webkit-background-origin: padding-box;
  background-origin: padding-box;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-background-size: 100px 100px, 100px 100px, 20px 20px, 20px 20px;
  background-size: 100px 100px, 100px 100px, 20px 20px, 20px 20px;
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch .gtoggler {display:none;}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

.gtoggler:checked + .slider {
  background-color: #92002C;
}

.gtoggler:focus + .slider {
  box-shadow: 0 0 1px #92002C;
}

.gtoggler:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}
.togglegrid{color: #0C1A30; margin: 0 0 10px; font-size: 14px; text-transform: uppercase; }
.thelogo{z-index: 100000 !important;}
/* ==========================================================================
   MEDIA QUERIES
   ========================================================================== */


@media only screen and (min-width: 1300px) {
    .togglee{display: flex !important;}
}
@media screen and (max-width: 1300px) {
    .toggler{display: block; outline: none;}
    .togglee{display: none;}
    .navigation{width: 100%; text-align: right; position: relative; bottom: 0; right: 0; display: block;}
    .nav{ }
    .nav li{display: block; text-align: left; padding: 10px;}
    .nav li a{}
    .ham{display: block;}
    .logo{order: 2;}
    .ham{order: 1;}
    .navigation{order: 3;}
    
    
}
@media screen and (max-width: 1000px) {
.homeoptions{width: 100%; overflow: hidden; text-align: center; margin-bottom: 20px;}
    .eachhomeoption{width: 100%;}
.theformer{width: 100%;}
    .profileform{width: 100%; margin-bottom: 20px; }
.profiletable{width: 100%;}
.showbadges{width: 100%;}
.halfinput{width:  100%;}
    .pform{text-align: left;}
    .article {width: 50%;padding: 45px;}
    .item {width: calc(50% - 15px);}
    .masonry {display: flex; justify-content: space-between; }
    .item{margin-bottom: 20px;}
    .item:nth-of-type(3N+2){margin: 0 0 20px; outline: 0px solid red}
    .search{width: 100%; margin-bottom: 20px;}
.masonry {display: flex; justify-content: space-between;}
    .item{margin: 0 0 30px 0 !important;}
    .printimage{width: 100%;}
    .printform{width: 100%;}
    
    
}
@media screen and (max-width: 500px) {
    .radiob{font-size: 10px; }
    .tab a { font-size: 12px; line-height: 2em; display: block; padding: 10px 5px; outline: none; color: #fff; }
    .submit{font-size: 12px;}
    .article {width: 100%;padding: 45px;}
    .item {width: 100%;}
    .filterer {padding:10px;}
}
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html,
button,
input,
select,
textarea {
    color: #222;
}

html {
    font-size: 1em;
    line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between images, videos, audio and canvas and the bottom of
 * their containers: h5bp.com/i/440
 */

audio,
canvas,
img,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

/* ==========================================================================
   Browse Happy prompt
   ========================================================================== */

.browsehappy {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}














/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Image replacement
 */

.ir {
    background-color: transparent;
    border: 0;
    overflow: hidden;
    /* IE 6/7 fallback */
    *text-indent: -9999px;
}

.ir:before {
    content: "";
    display: block;
    width: 0;
    height: 150%;
}

/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */

.hidden {
    display: none !important;
    visibility: hidden;
}

/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

/*
 * Hide visually and from screenreaders, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

/*
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */

.clearfix {
    *zoom: 1;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */



@media print,
       (-o-min-device-pixel-ratio: 5/4),
       (-webkit-min-device-pixel-ratio: 1.25),
       (min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid required HTTP connection: h5bp.com/r
   ========================================================================== */

@media print {
    * {
        background: transparent !important;
        color: #000 !important; /* Black prints faster: h5bp.com/s */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links for images, or javascript/internal links
     */

    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group; /* h5bp.com/t */
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    @page {
        margin: 0.5cm;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}
/*
.resources{width: 100%; text-align: left; padding-top: 0px;}
.eachresource{width: 100%; height: 120px; background:#01244C; margin-bottom: 25px; position: relative; overflow: hidden; text-align: left}
.eachresourcelink{width: 100%; height: 100%; position: absolute; padding: 10px; font-weight: 700; color: #D7AF18; color: #fff;}

.eachresourcebg{position: absolute; top: 0px; left: 0px; width:auto; z-index: 5;}
.eachresourcelogo{position: absolute; top: 5px; right: 5px;  z-index: 6;}
.eachresourcecover{position: absolute; top: 0px; left: 0px; width:100%; height: 100%; background: rgba(1,36,76,0.7); z-index: 7;}
.eachresourcetitle{position: relative; z-index: 10; margin: 0;}
.eachresourcetype{position: relative; z-index: 10; margin: 0;}
.eachresource:hover .eachresourcecover{background: rgba(1,36,76,0.9);}
.eachresource:hover .eachresourcelink{color: #D7AF18; }


.middlediv{margin: 0 10px;}

.fullcontent{width: 100%; height: auto; margin: 20px auto; text-align: center}
.resourcesection{width: 45%; display: inline-block; vertical-align: top; margin-right:2%;}

.displayimage{width: 150px; height: 75px; display: inline-block; margin-right: 10px; margin-bottom: 10px; overflow: hidden;}
.thelogoimage{width: 300px; height: 150px; display: inline-block; margin-right: 10px; margin-bottom: 10px; overflow: hidden;}
.imagebank{text-align: left; height: auto; width: 100%;}
.displayimage img{width: 100%;}

.bankholder{width: 100%; text-align: left;}
.bankholder h2{margin-bottom: 10px;}

.successmessage{width: 100%; height: auto; padding: 20px 10px; background: #fff url(../img/weelion.jpg) bottom right no-repeat;  color: #283794; margin: 10px auto; font-weight: 800;}
.successmessage h4{color: #283794;}

.eachpdf{width: 100%; height: auto; position: relative; background: #1C2437 url(../img/weelion.jpg) bottom right no-repeat;  text-align: left; padding: 10px; }
.eachpdf a{color: #fff;}
.eachpdf a:hover{color:#D7AF18} 
.pdfinfo{position: relative; font-size: 16px; color: #fff; text-align: left; width: 100%;}
.clicktodownload{position: relative; font-size: 16px; color: #fff; font-weight: 800; width: 100%; text-align: right;}

.noselect select{visibility: hidden;}

.completed td{background: rgba(178,34,34,0.5);} 

.viewer {

  border: 0px;
  color: #fff;
  text-shadow: 0 1px rgba(0,0,0,0.1); 
  background-color: #103B7A;

  font-size: 11px;
    width: 100%;
  font-weight: 700;
    height: 36px;
  padding: 0 8px;
    margin-top: 10px;
}

.viewer:hover {

  border: 0px;
  text-shadow: 0 1px rgba(0,0,0,0.3);
  background-color: #01244C;
  
}




.login-help {
  width: 100%;
  text-align: center;
  font-size: 12p