/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 9/07/2020, 4:08:52 PM
    Author     : bob
*/

/*-----------elements-----------------*/
/*main body wrap*/
wrap {
    display:flex;
    flex-direction: column;
    flex: 1 1;
    width: 100vw;
    min-height: 100vh;
}

header {
    display:flex;
    /*flex: 0 1;*/
    flex-direction: column;
}

.header-wrap {
    display: flex;
    width: 100%;
}

.header-logo {
    display: block;
}

.logo-toggle-wrap {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

main{
  display: flex;
  flex-direction: column;
  width:100%;
  height:100%;
  flex: 1 1; /*auto;*/
  /*justify-content: center; not as column*/
  /*flex-wrap: wrap;
  overflow-y: auto;*/
}

footer {
  display: flex;
  width: 100%;
  flex-direction: column;
}
.footer-wrap{
    display: flex;
    flex: 1 1;
    width:100%;
    flex-direction: column; /*override in media qu*/
    flex-wrap: wrap;
    justify-content: space-between;
}
footer ul{
    display: flex;
    flex-direction: column;
    list-style: none;
    align-items: center;
}
.footer-col{
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    align-items: center;
    border-bottom: 1px solid var(--highlight);
    padding-bottom: 10px
}
.footer-col:last-child{
    border-bottom: none;
}

.footer-foot{
    display: flex;
    height: 3rem;
    width: 100%;
    align-items: center;
    justify-content: center;
}

sidebar {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

content {
    display: flex;
    flex: 1 1;
    flex-direction: column;
}

section {
    display: flex;
    flex: 1 1;
    flex-direction: column;
}

.container{
    display: flex;
    /*flex: 1 1;*/
}
/*note flex grow/shrink here applies to the direction of the parent row/col not the children.*/
.h-container{
    display: flex;
    flex: 0 1;
    flex-direction: row;
    /*flex-wrap: wrap;*/
}

.v-container{
    display: flex;
    /*flex: 0 auto;*/
    flex-direction: column;
    /*flex-wrap: wrap;*/
}

.wide{
    display: flex;
    flex-direction: column;
    flex: 0 1;
    width: 100%;
}

img{
    max-width: 100%;
    height: auto;
}

form {
    margin: 10px 15px;
    /*padding: 0.5rem;*/
}
form h1, h2, h3, h4{
    font-size:1.5em;
    font-weight: bold;
}
label {
    /*display:block;*/
    font-weight:bold;
    margin:5px 0;
}
input {
    border: 1px solid #CCCCCC;
    color:#777777;
    padding: 5px;
    background-color: white;
}
select {
    border:1px solid #CCCCCC;
    color:#777777;
    padding:3px;
    /*background-color: transparent;*/
}
.select-current {
  background: limegreen !important; /* override the pagemenu div*/
}
.select-not-current {
  background: white !important; /* override the pagemenu div*/
}
.select-wrapper {
  /*background: limegreen !important; /* override the pagemenu div*/
  display: inline-block !important; /* Ensures that the wrapper takes the width of the select */
  /*border-radius: 0 !important;*/
  border: none;
}
.select-wrapper select {
  background: transparent; /* Make the select element transparent */
  border: none; /* Remove the border around the select element */
  outline: none; /* Remove the focus outline */
}

.yesm{
  color: white !important;
}

.not-yesm{
  color: #000;
}

.select-wrapper select option {
  background-color: #fff; /* Set the background color for the dropdown list items */
  color: #000; /* Set the text color for the dropdown list items */
}
.option-current{
  background-color: limegreen !important; /* Set the background color for the dropdown list current item */
  color: white !important; /* Set the text color for the dropdown list current item */
}

textarea {
    border:1px solid #CCCCCC;
    color:#777777;
    /*display:block !important;*/
    padding:4px;
}
/*
input.button {
    background:#CCCCCC;
    border:1px solid #CCCCCC;
    color:#333333;
    font-weight:bolder;
    padding:2px 3px;
}
*/

.hero{
    display: flex;
    /*background-color: var(--primary);*/
}

.brand:hover, .brand:focus {
  text-decoration: none;
}

/* ---------------------------------------------------
    TOP NAVBAR STYLE
----------------------------------------------------- */
/* toggle wrap used only on public - why? so floats on show.*/
.logo-toggle-wrap{
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  position:relative;
  /*display: flex;*/
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.navbar-toggler:hover, .navbar-toggler:focus {
  text-decoration: none;
}
.navbar-toggler-bar {
    width: 30px;
    height: 3px;
    margin:5px;
    background: #CCC;
    transition: all 0.3s ease-in-out;
}
.navbar-toggler.open .navbar-toggler-bar:first-child{
    transform: rotate(45deg) translateY(9px);
}
.navbar-toggler.open .navbar-toggler-bar:last-child{
    transform: rotate(-45deg) translateY(-9px);
}
.navbar-toggler.open .navbar-toggler-bar:nth-child(2){
    display: none;
}

/* the navigation elements, both public and private */

nav{
    border-top: 1px solid var(--dark);
}
nav ul {
    display: flex;
    flex-direction: column;
    list-style: none;
}
nav ul li {
    /*flex: 0 0 auto;*/
    display: block; /*use block for sidemenu*/
    width: 100%;    
}
nav ul li.current {
    background: #4b545f;
    border-bottom: 3px solid var(--highlight);
}           
nav ul li a {
    padding: 5px 5px;
    color: var(--nav-color);
    text-decoration: none;
    font-weight: 400;
}
nav ul li:hover > a {
    color: var(--nav-color-hover);
}


/* public navbar classes*/

.navbar {
  /*position: relative;*/
  display: flex;
  flex-direction: column; /*override in media*/
  justify-content: space-between;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar .nav-item {
    display: inline-block;
}
.navbar .nav-link {
  padding-right: 20px;
  padding-left: 0;
  color: var(--nav-color);
}

.navbar ul li {
    display: inline-block;
}
.navbar ul li a {
   white-space: nowrap;
   color: var(--nav-color);
}


/* the userbar classes, top right in header in app and private,
 * for notifications, profile icon, cart etc
 * nav moved into sidebar.*/

.userbar{ 
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 56px;
  /*background: var(--primary);*/
}

.userbar ul{
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-around;
}

/* dropdown li class */ 
.userbar .nav-item {
  display: flex;
  flex-basis: 100px;  
}

.userbar .dropdown a:focus + div {
  opacity: 1;
  pointer-events: all;
  display: block;
  transform: translateY(0px);
}

.userbar-divider{
    width: 1px;
    height: 100%;
    border-right: 1px solid #998;
    margin: 0 10px;
}

.userbar .dropdown:hover .dropdown-list,
.userbar .dropdown:hover .dropdown-menu {
    display: block;
    color: var(--nav-color-hover);
    background: white;
}

.dropdown .dropdown-menu .dropdown-header {
    font-weight: 800;
    font-size: 0.65rem;
    color: var(--nav-color-hover);
    background-color: var(--primary);
}

.dropdown-menu, .dropdown-list {
  display: none;
  position: absolute;
  width: 300px;
  /*height: 400px;*/
  background-color: var(--primary);
  border-radius: 5px;
  top: 35px;
  right: 0;
  /*opacity: 0;
  pointer-events: none;*/
  /*transform: translateY(55px);*/
  transition: all 0.5s ease;
  z-index: 10;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.dropdown-divider{
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #997;
    margin: 5px 0;
}

.dropdown-item{
    display:block;
}

.dropdown-chain-item{
    font-weight: 800;
    font-size: 0.75rem;
    display:block;
    border-radius: 5px;
    margin: 5px;
    padding: 5px;
    color: var(--nav-color);
    background: var(--primary);
    pointer-events: all;
    cursor: pointer;
}

.dropdown.no-arrow .dropdown-toggle::after {
    display: none;
}

.dropdown-toggle::after {
    content: ">";
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

/**------------------------------*/

.list-unstyled{
    list-style-type: none;
}

.menubar{
    display: flex;
    flex-shrink: 1;
    /*flex: 0 1 auto;*/
    width: 100%;
    /*max-height: 100px;*/
    align-content: center;
    justify-content: center;
    padding: 15px;
    /*border-bottom: 2px solid grey;*/
}
.pagemenu {
    /*display: block;
    max-height: 80px;*/
    flex-shrink: 1 1;
    /*flex: 0 1 auto;*/
}

.pagemenu a{
    font-size: .9em;
    color: var(--nav-color);
    padding: 3px 10px;    
}

.pagemenu div{
    display: inline-flex;
    list-style: none;
    /*background-color: var(--primary);*/
    background: transparent linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%) repeat scroll 0% 0%;
    border-radius: 25px;

    margin: 3px;
}
.pagemenu li.warning{
    background-color: var(--danger);
}

/* ---------------------------------------------------
    SIDENAV STYLE
----------------------------------------------------- */

/* this should be an id and in main css, rest classes and here*/
.sidenav { 
    background: var(--bg-gradient);
    color: var(--nav-color);
    transition: display 0.5s ease;
    overflow-x: scroll;
    z-index: 100;
}

.sidenav .sidenav-header {
    padding: 20px;
    /*background: var(--primary);*/
}

/* these are overridden by th elements below
.sidenav .nav-item {
    display: block;
}
.sidenav .nav-link {
   color: var(--nav-color);
}*/

.sidenav ul {
    padding: 0 0 10px 10px;
    border-bottom: 1px solid #47748b;
    transition: all 0.5s ease;
}

.sidenav ul p {
    color: var(--nav-color);
    padding: 10px;
}

.sidenav ul li a {
    padding: 10px;
    font-size: 1.1em;
    display: block;
}

.sidenav ul li {
    transition: all 0.5s ease;
}

.sidenav ul li a:hover {
    color: var(--nav-color-hover);
    background: var(--highlight);
}

.sidenav ul li.active > a,
a[aria-expanded="true"] {
    color: var(--nav-color-hover);
    background: var(--highlight);
}

a[data-toggle="collapse"] {
    position: relative;
}

a:lostfocus + ul{
    display: none;
    transition: display 0.5s ease;
}

/*a:focus + ul{
    display: block;
    pointer-events: all;
    transition: all 0.5s ease;
}

a:hover ~ ul{
    display: block;
    background: red;
}
ul ~ a:hover{
    display: block;
    background: green;
}*/

/*-----------social styles---------*/

.group-header{
    width: 100%;
    height: 140px;
    background-color: var(--dark);
    background-size: cover;
}
.group-name{
    position: absolute;
    left: 120px;
    font-size: 2rem;
    font-weight: 400;
    vertical-align: middle;
    color: gray;
}
.group-panel{
    width: 100%;
    min-height: 300px;
    background-color: var(--white);
    border-radius: 5px;
}
.group-icon-container{
    position: relative;
    height: 60px;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
}
.group-icon{
    /*display: inline-block;*/
    /*float: left*/
    left: 20px;
    position: absolute;
    bottom: 20px;
    width: 80px;
    height: 80px;                           
    border-radius: 100%; 
    background-size: cover;
    background-color: cyan;
    border: 3px solid #FFF;
    /*z-index: 10;*/
}
.group-panel-icon-container{
    position: relative;
    text-align: center;
    height: 40px;
}
.group-panel-icon{
    left: 20px;
    position: absolute;
    bottom: 60px;
    width: 60px;
    height: 60px;                           
    border-radius: 100%; 
    background-size: cover;
    background-color: cyan;
    border: 3px solid #FFF;
}
.group-panel-name{
    font-size: 1.4rem;
    font-weight: 400;
    vertical-align: middle;
    color: gray;
}

.group-btn-box{
    float: right;
    position: relative;
    right: 20px;
    margin-top: 15px;
}

.user-icon{
    display: block;
    width: 100px;
    height: 100px;                            
    border-radius: 100%;
    background-size: cover;
    border: 1px solid white;
}   
.user-photo{
    display: block;
    /*float: right;*/
    position: relative;
    left: 100px;
    top: 100px;
    width: 250px;
    height: 250px;                            
    border-radius: 100%;
    background-size: cover;
    border: 1px solid white;
}   
.user-name{
    display: block;
    float: left;
    margin-left: 360px;
    width: 200px;
    height: 80px;                            
    /*background-color: rgba(0,0,0,0.40);*/
    font-size: 2rem;
    font-weight: 400;
    vertical-align: middle;
    color: white;
}   

.profile-bg{
    width: 100%;
    height: 300px;
    background-color: var(--bg-dark);
    background-size: cover;
}

.img-profile{
    margin: 5px;
    height:30px;
    width:30px;
}
.rounded-circle{
    border-radius: 50%;
}

.icon-round-sm{
    width: 100px;
    height: 100px;
}

/* --- Style the tabs in the wizard panels --- */
.tabs {
  overflow: hidden;
  /*border: 1px solid #ccc;*/
  background-color: var(--primary);
  color: var(--nav-color);
}

/* Style the buttons that are used to open the tab content */
.tab {
  box-sizing: border-box;
  background-color: inherit;
  float: left;
  border-right: 1px solid var(--highlight);
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  /*height: 2rem;*/
}

/* Change background color of buttons on hover */
.tab:hover {          
    background-color: var(--primary-2);
    color: var(--nav-color-highlight);
}

/* Create an active/current tablink class */
.tab.active {
    background-color: var(--highlight);
    color: var(--primary);
}

/* Style the tab content */
.tab-panel {
  display: none;
  padding: 6px 12px;
  /*border: 1px solid #ccc;*/
  border-top: none;
}

.widget{
    display: flex;
    flex: 1 1;
    flex-direction: column;
    /*border: 1px solid var(--gray-light);*/
    background-color: var(--white);
    border-radius: 5px;
    /*box-shadow: 2px 2px 5px 2px #f1f1f1;*/
}
.widget-titlebar{
    height: 2rem;
    padding: 5px;
    /*background-color: var(--primary);*/
    background: transparent linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%) repeat scroll 0% 0%;
    /*border-bottom: 1px solid var(--light);*/
    color: var(--highlight);
    border-radius: 5px 5px 0 0;
}

.widget-body {
    /*background-color: var(--bg-color);*/
    padding: 1rem;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

.widget-row {
    display: flex;
    /*flex-basis: 100%;*/
    height: 36px;
}
.widget-rowhead {
    text-align: center;
    padding: 5px 0 0 0;
    border-top: 1px solid var(--whitesmoke);
    border-right: 1px solid  var(--whitesmoke);
    background-color: var(--lightgray);
    display:table-cell;
    overflow: hidden;
    color: #000;
    font-weight: bold;
}
.widget-rowhead:last {
    clear: right;
    border-right: 0;
}
.widget-gridhead {
    flex-basis: 100%;
    background-color:#CCC;
    padding: 5px;
    height: 20px;
    color: #000;
    font-weight: bold;
}
.widget-colhead{
    flex-basis: 100%;
    text-align: center;
    padding: 5px 0 0 0;
    border-top: 1px solid whitesmoke;
    border-right: 1px solid whitesmoke;
    background-color: lightgray; 
    display:table-cell;
    overflow: hidden;
    color: #000;
    font-weight: bold;
}
.widget-colhead:last {
    clear: right;
    border-right: 0;
}
.widget-data {
    display: flex;
    flex-basis: 100%;
    border-top: 1px solid var(--whitesmoke);
    border-right: 1px solid var(--whitesmoke);
    padding: 5px;
    background-color: var(--white);
}
.widget-data:last {
    clear:right;
    border-right: 0;
}

.card {
    display: flex;
    flex: 1;
    flex-direction: column;
    /*border: 1px solid var(--lightgray);*/
    border-radius: 10px;
    margin: 1rem;
    background: white;
    color: var(--primary-2);
}

.card-title {
    color: var(--nav-color);
    padding: 5px;
    /*background-color: var(--primary);*/
    background: transparent linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%) repeat scroll 0% 0%;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.card-body {
    padding: 1rem;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    /*background-color: var(--bg-color);*/
    background: white;
    color: var(--text-color);
}

.modal {
    z-index: 3;
    display: none;
    padding-top: 15vh;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    /*background-color: rgb(0,0,0);*/
    background-color: rgba(0,0,0,0.6);
}

.modal-panel {
    margin: auto;
    
    background-color: #fff;
    /*background: transparent linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%) repeat scroll 0% 0%;
    color: var(--light);
    */
    position: relative;
    padding: 0;
    outline: 0;
    width: 600px;
    border-radius: 10px;
}
 
  
@media (max-width: 768px){
    .modal {
        padding-top: 50px;
    }
}


.wizard{
    margin: 1rem;
    background-color: var(--white);
}

.box-shadow{
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.user-circle {
	display: flex;
        height: 48px;
        width: 48px;
        border-radius: 100%;
	font-size: 32px;
	font-weight: 500;
        padding-top: 8px;
        padding-bottom: 8px;
	/*text-align: center;*/
	justify-content: center;
        /*transform: translateY(-10px);*/
        color: var(--white);
	background-color: var(--highlight);
}
.user-circle:hover {
    background-color: var(--secondary);
}
.badge {
	display: inline-block;
	padding: .25em .6em;
	font-size: 75%;
	font-weight: 500;
	line-height: 1;
	text-align: center;
	white-space: nowrap;
	vertical-align: baseline;
	border-radius: .215rem;
}
.badge-pill {
	padding-right: .6em;
	padding-left: .6em;
	border-radius: 10rem;
}
.badge-counter {
	color: var(--white);
	background-color: var(--highlight);
}
.badge-info {
	color: var(--white);
	background-color: var(--info);
}
.badge-warning {
	color: var(--white);
	background-color: var(--warning);
}
.badge-danger {
	color: var(--white);
	background-color: var(--danger);
}
.badge.up {
	position: relative;
	top: -10px;
	margin: 0 -.8em;
	border-radius: 15px;
}
.badge.up {
	margin: 0 -8px !important;
}

a .badge-pill:focus, a .badge-pill:hover {
	text-decoration: none;
	cursor: pointer;
}
.badge:hover{
    background-color: var(--secondary);
}
.cursor-pointer:hover{
    cursor: pointer;
}
.errors {
    color: white;
    font-weight:500;
    background: var(--orange) none repeat scroll 0 0;
    border:2px solid #EE0000;
    border-radius: 8px;
    /*display:block;
    clear: both;*/
    max-width: var(--breakpoint-xl);
    margin:10px auto;
    overflow:auto;
    padding:15px;
    text-align:left;
}

.thread-panel{
    width: 100%;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    min-height: 200px;
    background-color: var(--white);
}

.thread-header{
    width: 100%;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    min-height: 200px;
    background-color: var(--white);
}
.thread-header:not(:first-of-type) {
  margin-top: 15px;
}

.thread-dropper {
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    height: 100%;
    margin-left: 10px;
    vertical-align: bottom;
    width: 20px;
}
.thread-line {
    box-sizing: border-box;
    border-right: 1px solid var(--primary);
    display: block;
    height: 100%;
    width: 50%;
 }    
.comments {
    background:#FFFFFF none repeat scroll 0 0;
    border-bottom:1px dashed #EFF0F1;
    border-top:1px dashed #EFF0F1;
    color:#333333;
    margin-top:20px;
    padding:5px 0;
    text-align:right;
}
.quotebox {
    background-color: #FFC;
    border-top-style: dotted;
    border-right-style: dotted;
    border-bottom-style: dotted;
    border-left-style: solid;
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 3px;
    margin-top:20px;
    padding:5px;
    clear:both;
}
.legal_line {
    font-size: x-small;
    color: #333;
}

.timer
{
    background-color: #555;
    text-align: center;
    color: #FFF;
}

.notifier
{
    color: blue;
    font-weight: bold;
    font-size: 11px;
    text-decoration: blink;
}

.info
{
    line-height: 12px;
    font-size: 11px;
}

.look
{
    color: #FFF;
    font-weight: bold;
    font-size: 11px;
}

.hidden{
    display: none;
    overflow: hidden;
    visibility: hidden;
}
.frame {
    float: left;
    width:160px;
    height:250px;
    overflow:scroll;
    overflow-y:hidden;
    overflow-x:hidden;
    border:1px solid gray;
    padding: 0 5px 0 5px;
    margin-left: 15px;
}
.list-element {
    width: 160px;
    font-size: 10px;
    color: #000;
}
.member {
    float: left;
    width: 160px;
}
.country {
    float: left;
    width: 160px;
}
.action-bar{
    border-radius: 0.25rem;
    background: transparent linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%) repeat scroll 0% 0%;
}

.btn{
    content: contain;
    text-align: center;
    padding: 0.5rem;
    /*border-radius: 50px;*/
    /*background-color: var(--primary-2);
    /*background: transparent linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%) repeat scroll 0% 0%;*/
    /*color: var(--nav-color);*/
    cursor: pointer;
    transition: 350ms;
}

.btn + .btn {
  margin-left: 20px;
}

.btn-pill{
    border-radius: 50px;
}

.btn-connect {
    cursor: pointer;
    color: white;
    background-color: var(--secondary);
    height: 54px;
    border-radius: 10px;
    outline: none;
    padding-left: 20px;
    padding-right: 20px;
    border: none;
    font-weight: 500;
    font-size: 1rem;
    /* top: 50px; */
    /* right: 30px; */
    /* position: fixed; */
    transition: 350ms;
}

.btn-action{
    text-align:center;
    padding: 10px 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: var(--green);
    border: 1px solid var(--highlight);
    border-radius: 3px;
    color: var(--lightgray);
    font-size: 1.5em;
    font-weight: bold;
    cursor: pointer;
}
.btn-action:hover{
    border: 2px solid var(--gray);
    /*padding: 9px 9px;*/
}

.btn-next{
    text-align: center;
    background-color: limegreen;
    padding: 1rem;
    margin: .5rem;
    border: 1px solid var(--highlight);
    font-size: 2em;
    color: white;
    cursor: pointer;
} 
.btn-status
{
    text-align:center;
    margin-left:auto;
    margin-right:auto;
    background-color:white;
    border:1px solid grey;
    border-radius:3px;
    padding-left:5px;
    padding-right:5px;
    cursor: pointer;
}
.btn-link
{
    text-align:center;
    margin-left:auto;
    margin-right:auto;
    border:1px solid green;
    border-radius:3px;
    padding-left:5px;
    padding-right:5px;
    cursor: pointer;
}

.btn-save{
    text-align: center;
    background-color: var(--green);
    border:1px solid lightsteelblue;
    padding: 5px 10px;
    font-weight: bolder;
    cursor: pointer;
}
.btn-sq-rnd{
    /*width: 100%;*/
    margin-right: 10px;
    content: contain;
    text-align: center;
    padding: 0.75rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: 350ms;
}
.btn-sq-rnd:hover{
    opacity: 0.75;
    font-weight: bold;
    background-color: var(--highlight);
    color: var(--light);
    transform: scale(1.02);
}

.btn-outline{
    content: contain;
    text-align: center;
    padding: 0.5rem;
    /*border-radius: 50px;*/
    border: 1px solid var(--highlight);
    cursor: pointer;
    transition: 350ms;
}
.btn-outline:hover {
    background-color: var(--highlight);
    color: var(--light);
    cursor: pointer;
    transform: scale(1.02);
}

.btn-filled{
    content: contain;
    text-align: center;
    padding: 0.5rem;
    /*border-radius: 50px;*/
    background-color: var(--primary-2);
    /*background: transparent linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%) repeat scroll 0% 0%;*/
    color: var(--nav-color);
    cursor: pointer;
    transition: 350ms;
}
.btn-filled-white{
    content: contain;
    text-align: center;
    padding: 0.5rem;
    /*border-radius: 50px;*/
    background-color: var(--white);
    color: var(--primary);
    cursor: pointer;
    transition: 350ms;
}

.btn-filled:hover, .btn-filled-white:hover  {
    opacity: 0.75;
    background-color: var(--highlight);
    color: var(--light);
    transform: scale(0.98);
}

.btn-filled a {
    color: var(--light);
}
.btn-filled:hover a{
    color: var(--dark);
}

.btn-login
{
    text-align:center;
    margin:15px auto 10px auto;
    background-color:lime;
    border:2px solid green;
    border-radius: 8px;
    padding:25px;
    font-size:1.5em;
    font-weight: bolder;
    cursor:pointer;
}
.input-login {
    height: 40px;
    background: var(--white);
    border-radius: 5px;
    font-weight: 400;
    font-size: 1.2em;
    width: 250px;
    border: 1.5px solid #CCCCCC;
    color: #777777;
    padding: 5px 0 5px 5px;
}
.terms {
    background: var(--lightyellow); 
    color: #000;
}
.terms-box {
    padding:3px;
    background: var(--lightyellow); 
    border:1px solid red;
    border-radius: 5px;
}

.reqd {
    /*CSS for link that shows hint onmouseover*/
    font-weight: bold;
    color: red;
    margin: auto;
}
.subheading {
    font-weight: bolder;
    font-size: 1.0em;
    margin: 10px auto 10px auto;
    border-bottom: 1px solid lightgray;
}
.text-panel {
    /*background: white;*/
    color:white;
    background: transparent linear-gradient(180deg, rgba(0, 0, 0, 0.25) 10%, rgba(0, 0, 0, 0.40) 90%);
    /*box-shadow: 0px 0px 9px rgba(243,138,47,0.5);*/
    border-radius:8px;
    margin: 10px 0;
}
.text-panel-dark {
    color:white;
    padding: 10px;
    background: transparent linear-gradient(180deg, rgba(0, 0, 0, 0.75) 10%, rgba(0, 0, 0, 0.50) 90%);
    /*background-color:white;*/
    box-shadow: 1px 1px 2px rgba(1,73,65,0.6);
    margin: 10px 0;
    border-radius:8px
}

/* Tooltip container */
.tooltips {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltips .tooltipstext {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;

    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltips:hover .tooltipstext {
    visibility: visible;
}

.success {
    background: var(--limegreen) none repeat scroll 0 0;
    border:2px solid var(--green);
    display:block;
    margin:5px 23px 10px 15px;
    overflow:auto;
    padding:15px;
    text-align:left;
}
.notice {
    background:#FFC none repeat scroll 0 0;
    border:2px solid #EE0000;
    display:block;
    margin:5px 23px 10px 15px;
    overflow:auto;
    padding:15px;
    text-align:left;
}
.warning {
    background:#FF9900 none repeat scroll 0 0;
    border:2px solid #EE0000;
    display:block;
    margin:5px 23px 10px 15px;
    overflow:auto;
    padding:15px;
    text-align:left;
}
.fail {
    background:#EE0000 none repeat scroll 0 0;
    border:4px dashed #000000;
    display:block;
    margin:5px 23px 10px 15px;
    overflow:auto;
    padding:15px;
    text-align:left;
}
.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 40px 0;
}

.w-overlay {
    position:fixed;
    display:none;
    width:100%;
    height:100%;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background-color:rgba(0,0,0,0.5);
    z-index:2
}