*, *:before, *:after {
    box-sizing: border-box;
}

body {
    background: #ededed;
    font-family: 'Roboto', sans-serif;
    overflow-y: scroll;
}

header {
    padding: 25px;
    text-align: left;
    max-width: 700px;
    box-sizing: border-box;
    margin: auto;
	position: relative;
}

header img {
    height: 50px;
    width: 50px;
    background-color: white;
    border-radius: 0 12px;
}

header span {
    font-size: 24px;
    margin-left: 16px;
    font-weight: bold;
    color: #003A75;
}

header .version {
	font-size: 14px;
	position: absolute;
	bottom: 25px;
	right: 0;
}

.pageWrapper {
	max-width: 700px;
    margin: 0 auto 3rem auto;
    padding: 2rem;
    position: relative;
    background-color: white;
    box-shadow: 0 1px 1px rgba(0,0,0,0.15),0 2px 2px rgba(0,0,0,0.15),0 4px 4px rgba(0,0,0,0.15),0 8px 8px rgba(0,0,0,0.15);
    border-bottom: 2px solid #003B75;
}

.errorMsgs {
    margin: 2rem;
}

.errorMsgs li {
    background-color: #f6a7a3;
    border-left: 0.2rem solid #90110e;
    padding: 1rem;
    margin: 0.2rem 0;
    border-radius: 0.2rem;
    font-weight: 600;
}

.centre {
    text-align: center;
}


div.loading{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(16, 16, 16, 0.5);
	z-index: 9999;
  }
  
  @-webkit-keyframes uil-ring-anim {
	0% {
	  -ms-transform: rotate(0deg);
	  -moz-transform: rotate(0deg);
	  -webkit-transform: rotate(0deg);
	  -o-transform: rotate(0deg);
	  transform: rotate(0deg);
	}
	100% {
	  -ms-transform: rotate(360deg);
	  -moz-transform: rotate(360deg);
	  -webkit-transform: rotate(360deg);
	  -o-transform: rotate(360deg);
	  transform: rotate(360deg);
	}
  }
  @-webkit-keyframes uil-ring-anim {
	0% {
	  -ms-transform: rotate(0deg);
	  -moz-transform: rotate(0deg);
	  -webkit-transform: rotate(0deg);
	  -o-transform: rotate(0deg);
	  transform: rotate(0deg);
	}
	100% {
	  -ms-transform: rotate(360deg);
	  -moz-transform: rotate(360deg);
	  -webkit-transform: rotate(360deg);
	  -o-transform: rotate(360deg);
	  transform: rotate(360deg);
	}
  }
  @-moz-keyframes uil-ring-anim {
	0% {
	  -ms-transform: rotate(0deg);
	  -moz-transform: rotate(0deg);
	  -webkit-transform: rotate(0deg);
	  -o-transform: rotate(0deg);
	  transform: rotate(0deg);
	}
	100% {
	  -ms-transform: rotate(360deg);
	  -moz-transform: rotate(360deg);
	  -webkit-transform: rotate(360deg);
	  -o-transform: rotate(360deg);
	  transform: rotate(360deg);
	}
  }
  @-ms-keyframes uil-ring-anim {
	0% {
	  -ms-transform: rotate(0deg);
	  -moz-transform: rotate(0deg);
	  -webkit-transform: rotate(0deg);
	  -o-transform: rotate(0deg);
	  transform: rotate(0deg);
	}
	100% {
	  -ms-transform: rotate(360deg);
	  -moz-transform: rotate(360deg);
	  -webkit-transform: rotate(360deg);
	  -o-transform: rotate(360deg);
	  transform: rotate(360deg);
	}
  }
  @-moz-keyframes uil-ring-anim {
	0% {
	  -ms-transform: rotate(0deg);
	  -moz-transform: rotate(0deg);
	  -webkit-transform: rotate(0deg);
	  -o-transform: rotate(0deg);
	  transform: rotate(0deg);
	}
	100% {
	  -ms-transform: rotate(360deg);
	  -moz-transform: rotate(360deg);
	  -webkit-transform: rotate(360deg);
	  -o-transform: rotate(360deg);
	  transform: rotate(360deg);
	}
  }
  @-webkit-keyframes uil-ring-anim {
	0% {
	  -ms-transform: rotate(0deg);
	  -moz-transform: rotate(0deg);
	  -webkit-transform: rotate(0deg);
	  -o-transform: rotate(0deg);
	  transform: rotate(0deg);
	}
	100% {
	  -ms-transform: rotate(360deg);
	  -moz-transform: rotate(360deg);
	  -webkit-transform: rotate(360deg);
	  -o-transform: rotate(360deg);
	  transform: rotate(360deg);
	}
  }
  @-o-keyframes uil-ring-anim {
	0% {
	  -ms-transform: rotate(0deg);
	  -moz-transform: rotate(0deg);
	  -webkit-transform: rotate(0deg);
	  -o-transform: rotate(0deg);
	  transform: rotate(0deg);
	}
	100% {
	  -ms-transform: rotate(360deg);
	  -moz-transform: rotate(360deg);
	  -webkit-transform: rotate(360deg);
	  -o-transform: rotate(360deg);
	  transform: rotate(360deg);
	}
  }
  @keyframes uil-ring-anim {
	0% {
	  -ms-transform: rotate(0deg);
	  -moz-transform: rotate(0deg);
	  -webkit-transform: rotate(0deg);
	  -o-transform: rotate(0deg);
	  transform: rotate(0deg);
	}
	100% {
	  -ms-transform: rotate(360deg);
	  -moz-transform: rotate(360deg);
	  -webkit-transform: rotate(360deg);
	  -o-transform: rotate(360deg);
	  transform: rotate(360deg);
	}
  }
  .spinningRing {
	margin: auto;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 200px;
	height: 200px;
  }
  .spinningRing > div {
	position: absolute;
	display: block;
	width: 160px;
	height: 160px;
	top: 20px;
	left: 20px;
	border-radius: 80px;
	box-shadow: 0 6px 0 0 #ffffff;
	-ms-animation: uil-ring-anim 1s linear infinite;
	-moz-animation: uil-ring-anim 1s linear infinite;
	-webkit-animation: uil-ring-anim 1s linear infinite;
	-o-animation: uil-ring-anim 1s linear infinite;
	animation: uil-ring-anim 1s linear infinite;
  }


.disabled {
	cursor: not-allowed !important;
}

.centreContainer {
	text-align: center;
}


.button:hover, .smlButton {
    background-color: #003B75;
    
}
.button, .smlButton {
	display: inline-block;
    background-color: rgb(79, 147, 206);
    border: none;
    font-size: 1.1rem;
    color: white;
    padding: 0.75rem 3rem;
    cursor: pointer;
    transition: background-color 0.28s ease, color 0.28s ease, box-shadow 0.28s ease;
}

.smlButton {
    padding:0.6rem 1rem;
}





.tblStyle {
    border-collapse: collapse;
    font-size: 0.9rem;
    font-family: sans-serif;
    width: 100%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.tblStyleSub {
    box-shadow: none;
}

.tblStyle thead tr {
    background-color: #003B75;
    color: #ffffff;
    text-align: center;
}


.tblStyle th,
.tblStyle td {
	padding: 8px;
    width: 50%;
    text-align: center;
    vertical-align: middle;
}

.tblModal th, .tblModal td {
    width: auto;
}

.tblStyle tbody tr {
    border-bottom: 1px solid #dddddd;
}

.tblStyle tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}


.tblStyle tbody tr:last-of-type {
    border-bottom: 2px solid #003B75;
}

.tblStyleSub tbody tr:last-of-type {
    border-bottom: none;
}

.tblStyle a {
	text-decoration: none;
}


.phoneGroup {
    position: relative;
}

.phoneGroup #fixPhone {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.1rem 0.5rem 0.5rem 0.5rem;
    margin-top: 0.5rem;
}

.autofillButton, .createLabelOrTransaction, .downloadFromPath, #createAnother {
    display: inline-block;
    font-weight: normal;
}




.helpFAB {
	text-decoration: none;
	background-color: #003B75;
    color: white;
    font-size: 18px;
    border-radius: 100%;
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 25px;
    right: 25px;
    box-shadow: 0 3px 6px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: box-shadow 100ms ease-out;
    z-index: 100000;
}

.helpFAB:hover {
	box-shadow: 0 0 4px rgb(0 0 0 / 14%), 0 4px 8px rgb(0 0 0 / 28%);
    cursor: pointer;
    opacity: 0.7;
}

.smartSelectContainer {
	text-align: center;
}

.smartSelectTest {
    background-color: red;
    color: white;
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 10px;
    font-weight: 700;
    opacity: 0.5;
}

.smartSelectTest:hover {
	opacity: 1;
}

.copyToClipboard {
	padding: 8px;
	width: 10px;
}


.container680 {
	max-width: 680px;
	margin: 16px auto;
	width: 100%;
}

.container780 {
	max-width: 780px;
	margin: 16px auto;
	width: 100%;
}

.listContainer {
	margin-top: 16px;
	background-color: white;
	box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 20%), 0 1px 5px 0 rgb(0 0 0 / 12%);
	-webkit-touch-callout: none;
    -webkit-user-select: none;
     -khtml-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

.listTitle {
	font-size: 14px;
	font-weight: 400px;
	margin: 21px 0 12px 0;
	padding: 8px 0 4px 0;
}

.listTitle a {
	font-size: 18px;
	color: black;
}

.listContainer .listItemLink:not(:last-child) .listItem {
	border-bottom: 1px solid rgba(0,0,0,.1);
}

.listItemLink {
	color: rgb(95, 99, 104);
	text-decoration: none;
}

.listItemLink.disabled {
	cursor: not-allowed;
}

.listItem {
	display: flex;
	align-items: center;
	padding: 12px 20px;
	box-sizing: border-box;
}

.listItem:hover {
	background-color: rgba(32, 33, 36, 0.1)
}

.listImage, .noListImage {
	height: 25px;
	width: 25px;
}

.listDesc {
	flex-grow: 1;
}

.rightArrow {
	width: 0; 
  	height: 0; 
  	border-top: 6px solid transparent;
  	border-bottom: 6px solid transparent;
  	border-left: 6px solid rgb(95, 99, 104);
}


.listDesc {
	padding: 0 20px;
}

.listDesc > * {
	font-size: 13px;
	line-height: 20px;
	font-weight: 400 !important;
}

.listSubtitle {
	color: rgb(32, 33, 36);
}

.listSubDescription {
	font-size: 13px;
}






div.divPagination{
	margin-top: 25px;
	text-align: center;
}

ul.pagination li{
	display: inline-block;
	margin-left: 4px;
}

ul.pagination li a,
ul.pagination li.disabled,
ul.pagination li.active{
	display: inline-block;
	padding: 8px 0px;
	min-width: 30px;
	border: 1px solid #003B75;
	font-weight: bold;
	font-size: 14px;
	text-decoration: none;
	text-align: center;
	color: #003B75;
}

ul.pagination li.disabled:first-child,
ul.pagination li.disabled:last-child{
	display: none;
}

ul.pagination li.disabled{
	border: 1px solid white;
}

ul.pagination li a:hover{
	background-color: #003B75;
	color: white;
}

ul.pagination li.active{
	background-color: #003B75;
	color: white;
}

div.divPagination a.off{
	background-color: #CCC;
	color: #ddd;
	cursor: default;
	display: none;
}



.bbxName {
	font-size: 30px;
	font-weight: 700;

}
.bbxName a {
	color: white;
	text-decoration: none;
}

.bbxName a:hover {
	text-decoration: underline;
}

#divBbxBanner {
	width: 100%;
	top: 0;
	left: 0;
	text-align: center;
	padding: 40px 0;
	background-color:#003B75;
	display:flex;
	align-items: center;
	justify-content: center;
}


.bbxActionContainer {
	display: flex;
	justify-content: space-evenly;
	margin-top: 64px;
}

.bbxAction {
	width: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	font-size: 18px;
	font-weight: bold;
	color: black;
}

.bbxAction img {
	width: 25%;
}

.bbxAction:hover {
	text-decoration: underline;
}

.newBbxForm table {
	border-collapse: separate; 
  	border-spacing: 16px 0;
}

.newBbxForm .spacer {
	height: 16px;
}
