/* CORE */

:root {
    primary-color: var(--primary-color);
}

* {
    box-sizing: border-box;
}
/*  */
body {

    margin: 0px;
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    color: #4c4c4c;
    /*  background-image: radial-gradient(ellipse at center,#fff 0,#eae8e3 100%);*/


}

.parent-content-inset {

    margin: 7px !important;
}

a, a:hover, a:active, a:visited {
    color:var(--primary-color);
}
h1,h2,h3,h4 {
    color: var(--heading-color);
    margin-top: 7px;
}
h3 {
   
}

.cat-title {
   padding-top: 7px;
    font-size: 1.2em;
    color: var(--heading-color);    /*    background-color: var(--v-light-grey);*/
    border-bottom: 1px solid;

}

img {
    max-width:100%;
    height:auto;
}
.tick, .positiveTint {
    color: #3c763d;
}

.negativeTint {
    color: #a94442;
}
.neutralTint {
    color:orange;
}

.greyTint {
    color:#CCCCCC;
}

ul {
    line-height:1.5;
}

#reorderList {
    list-style: none;
   padding-left: 0px;
   
}

#reorderList li:before {
        font-family: "Font Awesome 5 Free";
    font-weight: 900;
/*    content: "\f25a";*/
    padding-right:10px;
}
#reorderList li {
        background-color: var(--v-light-grey);
        box-shadow: 0 2px 2px 0 rgba(0,0,0,0.2);
        color: var(--primary-color);
        margin:10px 0px;
        padding:10px;
        border-radius:10px;
        cursor:pointer;
}
/* LAYOUT */
.flex-2-col-grid {
  display: flex;
  flex-wrap: wrap;
}

.flex-2-col-grid-col {
    width:50%;
  padding: 10px;
  box-sizing: border-box;
}

.flex-2cols {
    display: flex;
    justify-content: center;
    flex-wrap:wrap;
    margin: 7px 0px 7px 0px;
}

.flex-2cols > div {
    display:flex;
    justify-content: initial;
    flex-wrap:wrap;
    flex-direction: column;
    text-align: left !important;
    width: 40%;
    min-width: 300px;
    min-height: 200px;
    text-align: center;
    padding: 7px;
    margin: 0px;
    overflow: hidden;
    flex:1;

}
.flex-3cols {
    display: flex;
    justify-content: center;
    flex-wrap:wrap;
    margin: 7px 0px 7px 0px;
}

.flex-3cols > div {
    /*    background-color: #eeeeee;*/
    display:flex;
    justify-content: initial;
    flex-wrap:wrap;
    flex-direction: column;
    text-align: left !important;
    width: 33%;
    min-width: 150px;
    min-height: 200px;
    text-align: center;
    padding: 7px;
    margin: 2px;
    overflow: hidden;
    flex:1;

}

.flex-2cols > .footer-col {
    justify-content: flex-start;
    min-height:initial;
}

.list-multi {
    display: flex;
    justify-content: start;
    flex-wrap:wrap;
}

.list-multi > div {

    /*	min-width: 150px;*/
    padding: 10px 15px 5px 10px;
    overflow: hidden;
    /*    display:inline-block;*/

}


.my-status-bar {
    background-color: var(--v-light-grey);
    color: #636363;
    border-radius:5px;
    padding:5px;
    margin-bottom: 5px;
    font-weight:bold;
}

.flexTable {
  display: flex;
  flex-direction: column;
  margin-top:10px;
  
}

.flexTableRow {
  display: flex;
  flex-wrap:wrap;
  width:100%;
  align-items: center;
}

#listingsList .flexTableRow {
    align-items: flex-start;
}

.flexTableRow:nth-child(odd) {
    background-color: #f9f9f9;

}
/*.flexTableRow:nth-child(odd) .std-button {

    background-color: #ffffff;
}*/

.flexTableRow:nth-child(even) {
    background-color: initial;
}
/*.flexTableRow:nth-child(even) .std-button {

    background-color: var(--v-light-grey);
}*/

.flexTableCell {
  flex: 1;
  padding: 20px 10px;
  min-width:150px;
  word-break: break-word;
  
}

#memberList .flexTableCell, #listingsList .flexTableCell  {
  padding: 7px 10px;
  
}
.flexTableCellLarge {
  flex-grow: 2;
   min-width:300px;
}

.flexTableCellSmall {
  flex-grow: 0.5;
   min-width:75px;
}
.flexTableCellFullWidth {
  
   flex-basis:100%;
}
.select-and-go {
    display:inline;
}

.divTable{
    display: table;
    width: 100%;
}
.divTableRow {
    display: table-row;
}
.rowDivider .divTableRow {

}

.zebra .divTableRow:nth-child(even) {
    background-color: var(--v-light-grey);

}
.zebra .divTableRow:nth-child(even) .std-button {

    background-color: #ffffff;
}

.zebra .divTableRow:nth-child(odd) {
    background-color: initial;
}
.zebra .divTableRow:nth-child(odd) .std-button {

    background-color: var(--v-light-grey);
}

.divTableHeading {
    background-color: #EEE;
    display: table-header-group;
}
.divTableCell, .divTableHead {

    display: table-cell;
    padding: 20px 10px;
}


.divTableHeading {
    background-color: #EEE;
    display: table-header-group;
    font-weight: bold;
}
.divTableFoot {
    background-color: #EEE;
    display: table-footer-group;
    font-weight: bold;
}
.divTableBody {
    display: table-row-group;
}

/* FORM */

/* TOGGLE SWITCH */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.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;
}

input:checked + .slider {
    background-color: #3c763d;
}

input:focus + .slider {
    box-shadow: 0 0 1px #3c763d;
}

input: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%;
}

button, .login form input[type="submit"], .standard-form input[type="submit"], .search-form input[type="submit"] {
    display:block;
    text-decoration: none;
    padding: 15px;
    margin-top: 10px;
    background-image: linear-gradient(to bottom right, var(--primary-color), var(--primary-color-light));
    border: 0;
    border-radius:7px;
    font-size: 1.1em;
    cursor: pointer;
    font-weight: bold;
    color: #ffffff;
    transition: background-color 0.9s;
    width:100%;

    /*    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);*/
}

button:disabled,button[disabled],input[type="submit"]:disabled {
      background-image: none;
      color: #e1dfdf;
}

.low-key-button {
    background-image: none !important;
    color: var(--primary-color) !important;
    padding: 10px !important;
    margin-top:initial !important;
    
}


button:hover, .login form input[type="submit"]:hover, .standard-form input[type="submit"]:hover, .search-form input[type="submit"]:hover {
/*    background-color: var(--primary-color-light);*/

}

.cta, form input[type="submit"] .cta {
    background-image: linear-gradient(to bottom right, #5fa5eb,var(--primary-color));

    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);

    text-transform: uppercase;
}
.discreet-button {
    background-color: var(--v-light-grey) !important;
    color: var(--primary-color) !important;
    padding:10px !important;
}
.discreet-button:hover {
    background-color: var(--primary-color) !important;
    color: var(--v-light-grey) !important;
}

label {
    color: var(--text-color);
}


.standard-form {

    max-width:100%;
    background-color: #ffffff;
    margin: auto;

}

.standard-form h3 {
    padding:0px 10px 10px 0px;
}

.standard-form .form-element {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px 0px 10px 0px;
    align-items: center;
}
.standard-form .form-element label {
    flex:1;
    min-width:250px;
    margin-bottom: 10px;
    margin-top: 10px;
    margin-right: 10px;
    font-weight: bold;
/*    color: var(--title-color);*/
}
.standard-form .just-text {
    margin-bottom: 10px;
}

.standard-form .footnote {

    font-size: 0.8em;
    padding: 10px 0px;
    border-radius: 4px;
    color: #764E80;
    border-color: #B1608E;

}

.standard-form .footnote i {
    padding: 0px 7px 0px 0px;
}
select {
    border: 1px solid #dee0e4;
    padding:10px;

}
.standard-form .form-element input[type="password"], .standard-form .form-element input[type="text"], .standard-form .form-element input[type="date"], .standard-form .form-element select {
    flex:1;
    width: 250px;

    border: 1px solid #dee0e4;
    padding:10px;

}
.standard-form .form-element button  {
    flex:0.5;
    width: 100px;

    padding:10px;

}

.form-element input[type="text"] {
    border: 1px solid #dee0e4;
    padding:10px;
}

.standard-form .form-element input[type="checkbox"] {
    margin-right: 10px;
}

.standard-form .form-element textarea  {
    flex:1;

    width: 100% !important;
    min-height:100px;
    border: 1px solid #dee0e4;
    padding:10px;

}
.standard-form input[type="submit"], .search-form input[type="submit"] {
    flex:1;

}

input[type="radio"] {
    accent-color: var(--primary-color);
}

.standard-form .form-element .checkbox-multi {
    display: flex;
    justify-content: start;
    flex-wrap:wrap;
    width:100%;
}

.standard-form .form-element .checkbox-multi > div {

    /*	min-width: 150px;*/
    padding-right: 20px;
    padding-bottom: 10px;
    overflow: hidden;

}

input[type="checkbox"] {

    /*	min-width: 150px;*/
    accent-color: var(--primary-color);
}

.standard-form .form-element .checkbox-multi input[type="checkbox"] {

    /*	min-width: 150px;*/
    margin-right: 2px;
}

.standard-form .form-element .checkbox-multi input[type="checkbox"]:checked + span {

    /*	min-width: 150px;*/
    color:  var(--primary-color);
}
/* TOP RESPONSIVE MENU */

.topnav-container {
    margin:auto;
    box-shadow: -1px 2px 7px 0px rgb(0 0 0 / 20%);
    /*  background-image: radial-gradient(ellipse at center,#fff 0,#eae8e3 100%);*/
    background-color:#f8f8f8;
   
    margin-bottom: 10px;

}
.topnav {
    display:flex;
    flex-direction:column;
    flex-wrap: wrap;
    max-width:100%;
    justify-content: space-between;
align-items:flex-start;
}

.topnav-menu {
    padding-left:5px;
    padding-right:5px;
}

.topnav-menu a {
    text-decoration: none;
    font-weight:bold;
    font-size:1.1em;
}

.topnav-menu .std-button {

    background-color: var(--primary-color);
    color: var(--color-on-primary) !important;
}

.topnav-menu .std-button:hover {
    background-color: var(--primary-color-light);
}

.hamburger {
    position:relative;
}
.hamburger a.icon {

    display: block;

}

.hamburger a {
    float: left;
    display: none;
    color: var(--color-on-primary);
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    font-weight:bold;
}


.topnav .topright a.icon, .topnav .topleft a.icon {

    display: inline-block;
    font-size:1em !important;
    padding:10px;

}

.overflow-icon {
    background-color: var(--primary-color);

}

.topnav-overflow {

    background-color: #ffffff;
    color: var(--primary-color);
    padding: 0px 0px 0px 0px;

    right:0px;
    position:absolute;
    z-index:1000;
    padding: 5px;
    border-radius:5px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    opacity: 0;
    transition: visibility 0s, opacity 0.2s linear;
}
/*.topnav-overflow:before {
    content:'';
    position:absolute;
    top:-10px;
    right:0px;
    width:0;
    height:0;
    border: 17px solid transparent;
        border-bottom-color: #ffffff;
        border-top: 0;
}*/

.topnav-overflow a {
    display:block;
    padding: 5px 15px 5px 15px;
    font-weight:bold;
    color: var(--primary-color) !important;
    text-decoration: none !important;
    font-size: 1.1em;
    /*        background-color: var(--v-light-grey); */
    border-radius: 10px;
    margin-bottom: 2px;
}

.topleft {
    padding-left: 0px;
    padding-top:7px;
    margin-left: 0px;
}
.topleft {

    /*    padding: 5px 5px 0px 5px;*/
}
.topleft a {
    text-decoration: none;

    color: var(--primary-color);
    text-align: center;
    text-decoration: none;
    font-weight:bold;
}
.site-title {
    font-size:3em;
    color: var(--primary-color);
    text-align: center;
    text-decoration: none;
    font-weight:bold;
    padding-left: 0px;
    margin-left: 0px;

}
.topright {
    display:block;
    margin-top:5px;
    padding-left:7px;
    padding-right:7px;

}
.logo {
    height:auto;
    max-height:55px;
}

/*@media screen and (min-width: 600px) {
    .logo {
        width:250px;
    }
 
}*/

.topright a {
    color: var(--primary-color);
    text-align: center;
    /*    padding: 10px 10px;*/
    text-decoration: none;
    font-weight:bold;
}


.section-selector-container {
    margin:auto;
    background-color: var(--v-light-grey);
}
.section-selector, .topsub {

    margin: auto;
    display:flex;
    justify-content: center;
    max-width:960px;
}

.topsub {
    display:none;
    justify-content: left;
    background-color: var(--primary-color);
    padding: 7px;
    border-radius: 7px 7px 0px 0px;
}

.topsub h4 {

    color: #ffffff;
    font-weight: bold;
    margin: 0px;

}
.section-selector .main-section-button {

    text-align: center;
    min-width:100px;
    text-align: center;
    padding: 10px;

    margin: 0px 7px 0px 7px;
    font-weight:bold;
    /*    font-size: 1.1em;*/
    color: var(--primary-color);

    /*    background-color: #dddddd;*/
    /*    background-color: #eeeeee !important;*/
    /*           box-shadow: 3px 3px var(--discreet-grey);*/
    /*        box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);*/
    /*    border-top: 2px solid var(--primary-color);
          border-left: 2px solid var(--primary-color); */
    /*        border-bottom: 2px solid var(--primary-color); */
    text-transform: uppercase;
    letter-spacing: 0.1em;
    /*    border-radius: 7px 7px 7px 7px;*/
    /*    
        border-bottom: 2px solid var(--primary-color);*/
}
.section-selector .inactive::after {
    content: "";
    /* Arrow:    content: " \279C";*/
}
.section-selector .active::after {
    content: "";
}
.section-selector .active {
    /*    color: var(--text-color) !important;*/
    /*    background-color:  var(--primary-color) !important;
        color: var(--color-on-primary) !important;*/
    /*    border-radius: 7px 7px 7px 7px;*/

    border-bottom: 2px solid var(--primary-color);
}

.section-selector a {
    flex: 1;
    text-decoration: none;

}

/* Responsive Menu item */
.responsive a {

    clear:both;
    display: block;
    text-align: left;

}
.head-container {
    /*border-bottom: 2px solid var(--discreet-grey);*/

    margin-bottom: 0px;
    padding-bottom: 0px;

}
.header {
    max-width:960px;
    margin:auto;

}

.priority-nav {
    position: relative;

}

.priority-nav-open ul {
    height: auto !important;
    display: block !important;
}

.priority-nav  ul {
    display: flex;
    height: 2.5rem;
    overflow: hidden;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}
.priority-nav  li {
    display: block;
    padding: 1rem 0.5rem;
    text-decoration: none;
    white-space: nowrap;
}
.priority-nav  a {
    text-decoration: none;
    font-weight:bold;
}

.priority-nav-toggle {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    cursor: pointer;
}
/* FOOTER */

.footer {



    font-size:0.8em;
    float:left;
    width:100%;
}
.footer > .content {

    padding-bottom: 50px;
    max-width:960px;
    margin:auto;
}

.sticky-footer {
    left:0;
    right:0;
    bottom:0;
    position:fixed;
    max-width:960px;
    width: 100%;
    margin:auto;
    background-color: var(--v-light-grey);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap:wrap;
    border-radius: 10px 10px 0px 0px;
    z-index:9999;
}

.sticky-footer > div {
    display:flex;
    flex: 1;
    justify-content: center;
}

.sticky-footer .save-button {


}

.sticky-footer .cancel-button {

}

.sticky-footer input[type="submit"] {
    flex: 0;

}

.sticky-footer button {
    padding: 10px;
}

/* ALERTS */

.alert {
    padding:10px 10px 10px 10px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-left: 20px solid;
    border-radius: 4px;
}

.alert-info {
    color: var(--primary-color);
    background-color: #efe8f1;
    border-color: #ceb9d4;

    margin-bottom: initial !important;
}

.alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}

.alert-pos {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}


.alert-error {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}

.alert-neg {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}


.alert-attention {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc;
}

.alert-neutral {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc;
}
/* PAGINATION */

.pagination {

    display: inline-block;
    border-bottom: 1px solid;
    border-color: var(--primary-color) !important;
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: bold;
    
}


.pagination a {

    float: left;
    padding: 8px 16px;
    text-decoration: none;
    transition: background-color .3s;
    font-weight: bold;

}

.pagination a.active {
    background-color: #4CAF50;
    color: white;
    border: 1px solid #4CAF50;
}

.pagination a.disabled {
    color: #CCCCCC;
}

.pagination .info {
    color: #333333;
}

.pagination a:hover:not(.active) {
    background-color: var(--v-light-grey);
}

.printable {

    margin:20px;
}
@media print {
    
    .no-print, .no-print * {
        display:none !important;
    }
    .pagebreak {
        clear: both;
        page-break-after: always;
    }
}
/* || CONTEXT: PROFILES */


.listing-pic {
    margin:auto;
    width:200px;
    height:200px;
    max-width:100%;
    /*    border: 1px solid var(--primary-color);*/
    background-repeat:no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 50%;
    border: 5px solid var(--v-light-grey);

}
.thumb {
    width:100px;
    height:100px;
}

@media screen and (min-width: 600px) {
    .thumb {
        width:150px;
        height:150px;
    }
    .listing-pic {
        width:200px;
        height:200px;
    }

}


.photo-text-body {
    display:flex;
    flex-direction: column;
    align-items: center;

}
.photo-column {
    padding: 10px;

}
.text-column {

    padding: 10px;

}

.text-column .asl {

    font-style: italic;

}
@media screen and (min-width: 600px) {

    .photo-text-body {
        flex-direction: row;
         align-items: flex-start;
    }

    .photo-column {

    }

    .text-column {
        flex:1;

    }
}

.profile .photo {

}

.profile .cp {

    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    margin-bottom: 30px;
    position:relative;

}

.profile .details {

    font-size:1.1em;

}
.profile .contact  {
    padding: 7px 0px 0px 0px;


}
.profile .contact > * {
    padding: 7px 0px 0px 0px;
    font-size: initial;
}
.profile .details .name {
    font-weight:bold;
    color: var(--text-color);

}

.profile .details .bookmark-link {
    position:absolute;
    top:0px;
    left:0px;
    margin:0px;
    background-color: var(--v-light-grey);
    border-radius: 0px 0px 10px 0px;
}

.profile .section-header {
    font-weight:bold;
    font-size:1.1em;
    margin-top: 20px;
    margin-bottom: 7px;

    padding: 5px 12px;
    background-color: var(--v-light-grey);
    color: var(--text-color);
    width:fit-content !important;

    /*        box-shadow: inset 0 0 1em .5em hsla(0,0%,100%,.1);
        
        -webkit-filter: drop-shadow(0 1px 1px hsla(0,0%,0%,.3));*/
    border-radius: 10px 0px 10px 0px;
}

.profile .actions {
    position:fixed;
    right:0;
    bottom:0;
    max-width:100%;
    width: auto;
    margin:auto;
    padding:10px;
    background-color: var(--v-light-grey);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap:wrap;
    border-radius: 10px 10px 0px 0px;
    z-index:9999;
}
.profile .actions .std-button:hover a {

    color: var(--v-light-grey);
}

@media screen and (min-width: 768px) {

    .profile .actions {


        right:initial;
        width:960px;
    }

}

.profile .actions > * {

    text-align: center;
    color: var(--text-color);
    font-weight:bold;
}

.profile .actions a {
    /*    color: var(--color-on-primary) !important;*/
    text-decoration: none;

}

.profile hr {
    border-color: var(--v-light-grey);
    margin-top:30px;
    margin-bottom: 30px;
}

/* || CONTEXT: USER */

.login {

    width: 400px;
    max-width:100%;
    background-color: #ffffff;
    /*  	box-shadow: 0 0 5px 0 var(--discreet-grey);*/
    /*border: 2px solid var(--primary-color);*/
    margin: auto;
}
.login h3 {
    text-align: center;

    /*
            padding: 20px 0 20px 0;
            border-bottom: 1px solid var(--discreet-grey);*/
}

.signup-prompt {
    padding-top: 20px;
    width: 400px;
    max-width:100%;
    margin:auto;
    /*        text-align:center;*/
}
.login form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 20px;
}
.login form label {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: #ffffff;
}

.login form .element {
    max-width:100%;
    display:flex;
    flex-direction: row;

}

.login form input[type="password"], .login form input[type="text"] {

    width: 350px;
    height: 50px;
    border: 1px solid #dee0e4;
    margin-bottom: 20px;
    padding: 0 15px;
}
.login form input[type="submit"] {
    width: 100%;
}

/* PASSWORD STRENGTH CALCULATOR */

meter {
    /* Reset the default appearance */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    margin: 0 auto 1em;
    width: 100%;
    height: 0.5em;

    /* Applicable only to Firefox */
    background: none;
    background-color: rgba(0, 0, 0, 0.1);
}

meter[value="0"] {
    background-color: gray;
}

meter[value="1"] {
    background-color: red;
}

meter[value="2"] {
    background-color: yellow;
}

meter[value="3"] {
    background-color: orange;
}

meter[value="4"] {
    background-color: green;
}
meter::-webkit-meter-bar {
    background: none;
    background-color: rgba(0, 0, 0, 0.1);
}

/* Webkit based browsers */
meter[value="1"]::-webkit-meter-optimum-value {
    background: red;
}
meter[value="2"]::-webkit-meter-optimum-value {
    background: yellow;
}
meter[value="3"]::-webkit-meter-optimum-value {
    background: orange;
}
meter[value="4"]::-webkit-meter-optimum-value {
    background: green;
}

/* Gecko based browsers */
meter[value="1"]::-moz-meter-bar {
    background: red;
}
meter[value="2"]::-moz-meter-bar {
    background: yellow;
}
meter[value="3"]::-moz-meter-bar {
    background: orange;
}
meter[value="4"]::-moz-meter-bar {
    background: green;
}
/* UTILS */
.hide-on-mobile {
    display:none;
}
.only-on-mobile {
    display:initial;
}
.full-width-on-mobile {
    width:100% !important;
}

@media screen and (min-width: 600px) {

    .hide-on-mobile {
        display:initial;
    }

    .only-on-mobile {
        display:none;
    }
    .full-width-on-mobile {
        width:initial !important;
    }

}

.rounded-on-right {
    border-radius: 0px 5px 5px 0px !important;
}

.rounded-on-left {
    border-radius: 5px 0px 0px 5px !important;
}


.v-top {
    position:absolute;
    top:0px;
    left:0px;
}
.v-central {
    position:absolute;
    top:50%;
    left:0px;
}
.top-left {
    position: absolute;
    top: 0px;
    left: 0px;
}
.top-right {
    position: absolute;
    top: 0px;
    right: 0px;
}
.bottom-left {
    position: absolute;
    bottom: 0px;
    left: 0px;
}
.bottom-right {
    position: absolute;
    bottom: 0px;
    right: 0px;
}
/* MISC */
.package-title {
    color: var(--primary-color);
}
.package-highlight {
    color: var(--primary-color);
}


.features-list  {
    padding:0px;
    list-style:none;
}

.features-list li:not(:first-child) {
    margin-top: 15px;
}

.faq-list {
    padding:0px;
    list-style:none;
}
.faq-list li:not(:first-child) {
    margin-top: 15px;
}

.faq-list li .title {
    font-weight:bold;
    clear:both;
    background-color: var(--v-light-grey);
    padding: 10px;
    border-radius: 10px;
    width:100%;
    color: var(--primary-color);


}

.faq-section-header {
    width:100%;
    font-weight:bold;
    font-size: 1.2em;
    margin-top: 10px;
    margin-bottom: 10px;
}

.disclosure-button {
    display:inline-block;
    cursor:pointer;
    background-color: var(--v-light-grey);
    color: var(--primary-color);
    font-weight: bold;
    padding: 5px 10px;
    margin-bottom:10px;
    border-radius:5px;
       transition: background-color 0.5s;

}
.my-status-bar .disclosure-button {
    margin-bottom: initial;
}
.disclosure-button:hover {
    background-color:var(--primary-color-light);
    color:var(--color-on-primary);
}

.disclosure-button-open:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f056";
    margin-left: 10px;
}

.my-status-bar .disclosure-button-open:after {
    
    content: "";
  margin-left: initial;
}

.disclosure-button-closed:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f055";
    margin-left: 10px;

}

.my-status-bar .disclosure-button-closed:after {
    
    content: "";
  margin-left: initial;
}

.disclosure-target {
    display:none;
    margin:10px 0px;
    padding:10px;
}

.disclosure-target-start-open {
    display:block;
}

.offers h2, .wants h2 {
    padding-top:20px;
}
.read-more, .std-button, .editor-button, .offer-button, .want-button {
    display:inline-block;
    padding: 5px 10px 5px 10px;
    font-weight:bold;
    color: var(--primary-color) !important;
    text-decoration: none !important;
    /*    text-transform: uppercase;*/
    background-color: var(--v-light-grey);
    border-radius: 5px;
    cursor:pointer;
    transition: background-color 0.5s;
    margin: 5px 5px 5px 0px;
    text-align:center;
}

.offer-button {
    color: var(--primary-color) !important;
 
}
.offer-button:hover {
    background-color: var(--primary-color);
    color: var(--color-on-primary) !important;
}
.want-button {
    color: var(--primary-color);
  
}
.want-button:hover {
   background-color: var(--primary-color);
    color: var(--color-on-primary) !important;
}

.editor-button {
    background-color: var(--editor-color) !important;
    color: var(--text-color) !important;
}

.read-more:hover, .std-button:hover {
    background-color: var(--primary-color-light);
    color: var(--color-on-primary) !important;
}

.read-more:hover i, .std-button:hover i {
    color: var(--color-on-primary) !important;
}


.topright .std-button {
    background-color: initial;
}
.topright .std-button:hover, .topright .std-button:hover i {
/*    background-color: var(--primary-color-light) !important;*/
    color: var(--primary-color) !important;
}
.std-button-selected  {
    background-color: var(--primary-color) !important;
    color: var(--color-on-primary) !important;
    
}
.topright .std-button-selected  {
     background-color: initial !important;
    color: var(--primary-color) !important;
    border-radius:0px;
    border-bottom: 2px solid  var(--primary-color);
    
}


.std-button-selected:hover {
     background-color: var(--primary-color) !important;
    color: var(--color-on-primary) !important;
}
.topright .std-button-selected:hover, .topright .std-button-selected:hover i  {
        background-color: initial !important;
 
}
.like-link {
    border-radius:10px 0px 0px 0px;
    background-color: rgba(241, 242, 243,0.5);
    margin: 0px;
}

.std-button-inactive {
    display:inline-block;
    padding: 5px 10px 5px 10px;
    font-weight:bold;
    color: var(--primary-color) !important;
    text-decoration: none !important;
    background-color: var(--v-light-grey);
    border-radius: 5px;
}

.multi-tabs {
    margin-top:20px;
    margin-bottom:20px;

}
.sort-tab-selected {
    display:inline-block;

    padding: 4px 15px 4px 15px;

    background-color: var(--primary-color);
    border: 1px solid var(--primary-color) !important;
    /*    border-radius: 7px;*/
    cursor: pointer;
    font-weight: bold;
    color: #ffffff !important;
    text-decoration: none;
    transition: background-color 0.9s;
}
.sort-tab-selected:hover  {
    color: #ffffff;
    text-decoration: none;
}

.sort-tab {
    background-color: #FFFFFF !important;
    color: var(--primary-color) !important;
    border: 1px solid var(--primary-color) !important;
}
.sort-tab:hover {
    background-color: var(--primary-color) !important;
    color: #FFFFFF !important;
}




/* || SITEWIDE */

.body-container {
    background: #FFFFFF;
}

.body {
    padding: 7px;

    line-height: 1.5;
    max-width:960px;
    margin:auto;
    min-height:100vh; /* to keep footer at bottom */
    background-color: #FFFFFF;
    border-radius: 7px;
}




.icon-bg {
    color: var(--v-light-grey);
}

.icon-fg {
    color: var(--primary-color);
}
.icon-fg-green {
    color: #4caf50;
}
.editor-icon {
/*    color:var(--editor-color) !important;*/
}




.tick {
    color: #339900;
}



.cp {

    padding: 15px 15px 15px 15px;
    border-radius: 5px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
 

}

.cp h3 {
    margin-top: 0px !important;
}

.my-offer, .exchange {
    padding: 15px 15px 15px 15px;
    border-radius: 5px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    margin-top:10px;
    margin-bottom:20px;
}
.exchange .header {
    padding: 10px;
    background-color: #efe8f1;

    color: var(--primary-color);
    margin-bottom: 10px;
}
.exchange .header a {
    color: var(--primary-color);
}

.offer-title {

    color: var(--primary-color);
    font-weight:bold;
}
.offer-title:after {
    content:"";
}
.unstyled-link {
    text-decoration: none !important;

}


.hoverable-ul {
    list-style-type: none;
    padding-left:0px;
}
.hoverable-ul li {
    padding: 16px 16px;
    margin-bottom: 16px;
    /*    border-bottom: 1px solid #ddd;*/
    display:list-item;
    text-align: -webkit-match-parent;
    cursor:pointer;
    box-shadow: 0 4px 10px 0 rgba(0,0,0,0.2), 0 4px 20px 0 rgba(0,0,0,0.19);
    font-weight:bold;

}

.hoverable-ul li:hover {
    background-color: var(--primary-color);
    color: var(--color-on-primary);
}


/* Admin Panel BEGIN */
/* CSS for the container of the grid */
.admin-dashboard-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/* CSS for each square */
.square {
  flex: 1 0; /* Adjust the width of each square as needed */
  min-width:200px;
  max-width:200px;
  margin: 10px;
  padding: 20px;
  background-color: var(--v-light-grey);
/*  border: 1px solid #ccc;*/
  border-radius:10px;
  text-align: center;
}

.square a {
    text-decoration: none;
    color:var(--text-color);
}
/* CSS for the icon */
.square i {
  display: block;
  font-size: 2em;
  margin-bottom: 10px;
}

/* CSS for the bullet list */
.square ul {
  list-style-type: disc;
  text-align: left;
  padding-left: 20px;
}

.square li {
    font-size:0.8em;
    margin-bottom:1em;
}

/* Admin Panel END */

.pseudo-iframe {
    width:100%;
    height:200px;
    border: 1px solid #dee0e4;
    overflow-y: scroll;
    padding: 10px 20px;
}

.section-header {
    font-weight:bold;
    font-size:1.1em;
    margin-top: 20px;
    margin-bottom: 7px;

    padding: 5px 12px;
    background-color: var(--v-light-grey);
    color: var(--text-color);
    width:fit-content !important;

    /*        box-shadow: inset 0 0 1em .5em hsla(0,0%,100%,.1);
        
        -webkit-filter: drop-shadow(0 1px 1px hsla(0,0%,0%,.3));*/
    border-radius: 10px 0px 10px 0px;
}


.tape {
    background-color: hsl(64deg 100% 50% / 88%);
    box-shadow: inset 0 0 1em .5em hsla(0,0%,100%,.1);
    height: auto;
    position: absolute;
    /*  transform: rotate(-2deg);*/
    width: auto;
    -webkit-filter: drop-shadow(0 1px 1px hsla(0,0%,0%,.3));
    left: 0;
    margin-left: 0px;
    top: 0em;
    padding: 7px;
    text-align: center;
    font-weight: bold;

}
.tape:after,
.tape:before {
    background-size: .4em .4em;
    bottom: 0;
    content: '';
    position: absolute;
    top: 0;
    width: .2em;
}
.tape:after {
    background-image: linear-gradient(45deg, transparent 50%, hsla(0,0%,100%,.3) 50%),
        linear-gradient(-45deg, transparent 50%, hsla(0,0%,100%,.3) 50%);
    background-position: 0 100%;
    left: -.2em;

}
.tape:before {
    background-image: linear-gradient(135deg, transparent 50%, hsla(0,0%,100%,.3) 50%),
        linear-gradient(-135deg, transparent 50%, hsla(0,0%,100%,.3) 50%);
    background-position: 100% 100%;
    right: -.2em;
}

.sub-section {
    padding: 5px 12px;
    background-color: var(--primary-color);
    color: #ffffff;
    width:auto;

    box-shadow: inset 0 0 1em .5em hsla(0,0%,100%,.1);

    -webkit-filter: drop-shadow(0 1px 1px hsla(0,0%,0%,.3));
    border-radius: 0px 0px 10px 0px;
}

.active {
    padding:4px 10px;
    background-color: #dff0d8;
    color: #3c763d;
    font-weight: bold;
}

.inactive {
    padding:4px 10px;
    color: #a94442;
    background-color: #f2dede;
    font-weight: bold;
}

.invoice {
    background-color: #ff00000f !important;
}

.received-funds {
    background-color: green !important;
}

.loggedin-bar {
    width:100%;
    background-color: #e5e5e5;
}

.loggedin-bar .inner {
    width:960px;
    max-width:100%;
    margin:auto;
    padding-left:10px;
    font-weight: bold;
}

.loggedin-bar .inner .std-button{

    background-color: initial !important;
}

.loggedin-bar .inner .std-button:hover, .loggedin-bar .inner .std-button:hover i {

    color: var(--primary-color-light) !important;

    background-color: initial !important;
}


.user-balance {
    font-size: 0.8em;
}
.offered-amount {
  
  
}

.divTableCell .std-button:hover {
    background-color: var(--primary-color);
    color: var(--color-on-primary) !important;
}

.inactive-member-status {

    opacity: 0.5;
}

.allowed-tag {
    padding:3px 7px;
    margin:5px;
    background-color:var(--v-light-grey);
}

.my-feedback {
    padding:10px;
    background-color: var(--v-light-grey);
    border-radius: 10px;
    margin-bottom:20px;
}

.neg-color {
    color: red;
}

.pos-color {
    color: green;
}
/* Zoom Animation */
.zoomAppear {
    -webkit-animation: animatezoom 0.2s;
    animation: animatezoom 0.2s
}

@-webkit-keyframes animatezoom {
    from {
        -webkit-transform: scale(0)
    }
    to {
        -webkit-transform: scale(1)
    }
}

@keyframes animatezoom {
    from {
        transform: scale(0)
    }
    to {
        transform: scale(1)
    }
}


/* Fading Animations */
@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }
    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }
    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }
    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }
    to {
        bottom: 0;
        opacity: 0;
    }
}
/* ADMIN */

.admin-button {
    /*    background-color:orange !important;*/
    text-decoration: none;
    background-color: #880808 !important;
    color: #ffffff !important;
}

.admin-button:before {
    content:'ADMIN - ';

}

