/*
================================================================
Below is CSS for Generic Stuff
================================================================
*/
.wrap { 
   white-space: pre-wrap;      /* CSS3 */   
   white-space: -moz-pre-wrap; /* Firefox */    
   white-space: -pre-wrap;     /* Opera <7 */   
   white-space: -o-pre-wrap;   /* Opera 7 */    
   word-wrap: break-word;      /* IE */
}

/*
================================================================
Small Screen Actions
================================================================
*/
@media (max-width: 400px){
    .clearText {
        font-size: 0.75em !important; 
    }
    .hideScreenSmall{
        display: none !important; 
    }
}

textarea[readonly] {
  background-color: #f9f3f3 !important;
}

input[readonly] {
  background-color: #f9f3f3;
}
input[readonly]:focus {
  border: 1px solid #ffca00;
}
.tableContainer { 
    overflow-x: scroll; 
}
th, td { 
    min-width: 24px; 
    
}
.tdMinPadding{
  padding:8px 4px;
  margin:4px 0;
}
.tdMedPadding{
    padding: 8px;
    margin:4px 0;
  }
th, td, input { 
  margin:0;
  margin-bottom:16px;
  
}
.tdButton{
    height: 100% !important;
    min-height: 2em;
    line-height: 1.5em;
    width: 100% !important;
    padding: 0 !important; /* The 6px vertically centers text on FF, ignored by Webkit */
    margin:0px !important;
    text-align:center;
    white-space: normal !important;
}
.clearText{
    -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
    height: 3em !important;
    min-height: 1.5em;
    width: 100% !important;
    padding: 0 !important; /* The 6px vertically centers text on FF, ignored by Webkit */
    margin:2px !important;
    background: transparent !important;
    border: none !important;
    resize: none;
    overflow:hidden;
    text-align:center;
    font-stretch: ultra-condensed !important;
    letter-spacing: -1px;
}
.tdNoPad{
    padding:0;
}
.tightP{
    margin-top: 0;
    margin-bottom: 0rem;
}
.tightPsmall{
    margin-top: 0;
    margin-bottom: 0rem;
    font-size: 0.8em; /* currently ems cause chrome bug misinterpreting rems on body element */
    line-height: 1.4;
}
.tightPmed{
    margin-top: 0;
    margin-bottom: 0rem;
    font-size: 0.9em; /* currently ems cause chrome bug misinterpreting rems on body element */
    line-height: 1.2;
    text-indent: -30px; 
    margin-left: 50px;
}
.myH6{
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.8rem; 
    line-height: 1.5;  
    letter-spacing: -.05rem; 
}
.myH5{
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 2.0rem; 
    line-height: 1.5;  
    letter-spacing: -.05rem; 
    font-weight: bold;
}
.myH4{
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.8rem; 
    line-height: 1.5;  
    letter-spacing: -.05rem; 
    font-weight: bold;
}
.LabelBold{
  font-weight: bold !important;
  font-size: 2rem; 
  line-height: 1.6;  
  letter-spacing: 0; 
}
.compressLabelBold{
    text-align:center;
    font-weight: bold !important;
    font-weight: 600 !important;
    font-size: 1.0em;
    font-stretch: ultra-condensed !important;
    letter-spacing: -1px;
}
.compressLabel{
    text-align:center;
    font-weight: normal !important;
    font-weight: 300 !important;
    font-size: 0.8em;
    font-stretch: ultra-condensed !important;
    letter-spacing: -1px;
}
.myLinks{
  border: none !important;
  text-decoration: none !important;
  color: #0e2431;
  margin-right: 16px;
}
.a-clear{
  border: none !important;
  text-decoration: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.alert {
    padding: 20px;
    margin: 16px auto;
}
.success{
  background-color: #48966a;
  color: white;
  border: 1px solid #28543b;
  text-align: left;
}
.failure{
  background-color: #96485d;
  color: white;
  border: 1px solid #522732;
  text-align: left;
}
.miniAlertSuccess{
    padding: 8px;
    margin: 4px auto;
    background-color: #48966a;
    color: white;
    border: 1px solid #28543b;
    text-align: center;
}
.miniAlertFailure{
    padding: 8px;
    margin: 4px auto;
    background-color: #96485d;
    color: white;
    border: 1px solid #522732;
    text-align: center;
}

.xbtn {
  margin-right: 16px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.xbtn:hover {
  color: black;
}

.formHidden{
  display: none !important;
}

.formContainer{
    margin: 16px auto;
    padding: 16px;
    width: 95%;
    background-color: #F2eded;
}
.formContainer_Quote{
    margin: 16px auto;
    padding: 16px;
    width: 100%;
    background-color: #F2eded;
}

/* New (MINE) for micro screen
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media only screen and (max-width: 400px) {
  .formContainer {
    margin-top: 0px;
    padding: 8px; 
  }
  .hideElement{
    display: none;
  }
}
/*–––––––––––––––––––––––––––––––––––––––––––––––––– */


.form-control-100{
  min-width:100%;
  margin-left: auto;
  margin-right: auto;
}
.form-control-90{
  min-width:90%;
  margin-left: auto;
  margin-right: auto;
}
.form-control{
  min-width:512px;
  margin-left: auto;
  margin-right: auto;
}
.form-control-sm{
  min-width:256px;
  margin-left: auto;
  margin-right: auto;
}
.center{
  text-align: center !important;
  margin: 0 auto !important;
}
.left{
  text-align: left;
}
.avatar-sm{
  margin: 4px 0 0 8px;
  width: 32px;
  height: 32px;
}
@media (max-width: 830px) {
  .avatar-sm{
    display: none;
  }
}
.avatar-lg{
  margin: 0 auto;
  width: 64px;
  height: 64px;
}


.leftBox{
    float: left;
    padding: 4px;
    width: 49%;
    border-radius: 8px;
    border: 1px solid #0e2431;
    box-sizing: border-box;
}
.rightBox{
    float: right;
    padding: 8px;
    width: 49%;
    border-radius: 8px;
    border: 1px solid #0e2431;
    box-sizing: border-box;
}
.seventyBox{
    float: left;
    padding: 4px;
    width: 69%;
    border-radius: 8px;
    border: 1px solid #0e2431;
    box-sizing: border-box;
    min-height: 64px;
    margin-right: 1%;
}
.thirtyBox{
    float: right;
    padding: 8px;
    width: 30%;
    border-radius: 8px;
    border: 1px solid #0e2431;
    box-sizing: border-box;
    min-height: 64px;
}


/*
================================================================
Below is CSS for my Post Preview Container
================================================================
*/
.borderBox { 
  padding: 8px;
  border: 1px solid #0e2431;
  border-radius: 4px;
  box-shadow: 1px 4px rgb(146 161 176 / 15%);
}
.postBox { 
    box-sizing: border-box;
    display: flex;
    min-height: 256px;
    width: 98%;
    margin: auto;
    margin-top: 12px;
    padding: 8px;
    background-color: #F2eded;
    border: 1px solid #0e2431;
    border-radius: 4px;
    box-shadow: 1px 4px rgb(146 161 176 / 15%);
}
.leftBox{
    flex: 10%;
    height: 100%;
    min-height: 256px;
}
.rightBox{
    flex: 90%;
    height: 100%;
    min-height: 256px;
}
.voteBtn{
    display: block !important;
    padding: 0 !important;
    height: 32px !important;
    width: 100% !important;
    margin: 0 auto !important;
    border: none !important;
}
.voteCount{
    margin: 0 !important;
    text-align: center;
}
.commentBtn{
    display: block !important;
    padding: 0 !important;
    height: 32px !important;
    width: 100% !important;
    margin: 16px auto 0px auto !important;
    border: none !important;
}
.commentCount{
    margin-top: -8px !important;
    text-align: center;
}
.flagBtn{
    display: block !important;
    padding: 0 !important;
    height: 32px !important;
    width: 100% !important;
    margin: 48px auto 0px auto !important;
    border: none !important;
}
.floatLeftBtn{
    padding: 0 !important;
    text-align: center !important;
    vertical-align:middle !important;
    margin-left:8px;
    height:100% !important; 
    width:15% !important;
}

.postHeaderBox{
    /*width: 100%;*/
    height: 50px;
    margin-left: 8px;
}
.postedByBtn{
    float:left;
    padding: 0 !important;
    margin: 0 16px 0 0 !important;
    border: none !important;
}
.postTitle{
  float: right;
  text-decoration: none;
  font-size: 1.75em;
  color: #0e2431;
  font-weight: bold;
}
.postExpand{
  text-decoration: none;
  font-size: 1.75em;
  color: #0e2431;
  font-weight: bold;
}
.storyBox{
    width: 95%;
    margin-left: 8px;
}
.tagBox{
    margin: 16px auto;
}
.tag{
    margin-right: 16px !important;
}
.storyBox img {
  max-width: 100% !important;
  height: auto !important;
}


/* File Upload Styling */
.wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wrapper .file-upload {
  height: 200px;
  width: 200px;
  border-radius: 100px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 4px solid #fff;
  overflow: hidden;
  background-image: linear-gradient(to bottom, #2590eb 50%, #fff 50%);
  background-size: 100% 200%;
  transition: all 1s;
  color: #fff;
  font-size: 100px;
}
.wrapper .file-upload input[type='file'] {
  height: 200px;
  width: 200px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
}
.wrapper .file-upload:hover {
  background-position: 0 -100%;
  color: #2590eb;
}

/*Image Flip Left->Right*/
.flipX {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

/* Image Slider Styling */
* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  text-shadow: 1px 1px #0e2431;
  background-color: rgb(14, 36, 49, 0.15);
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
  text-shadow: 1px 1px #0e2431;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/* Search Bar */
.search-container {
  float: right;
}

.search-container input[type=text] {
  padding: 6px;
  margin-top: 8px;
  font-size: 17px;
  border: none;
}

.search-container button {
  float: right;
  padding: 2px 10px 8px 12px;
  margin-top: 8px;
  margin-right: 16px;
  background: #ddd;
  font-size: 17px;
  border: none;
  cursor: pointer;
}
/*
================================================================
Below is CSS for label printing
================================================================
*/

@media print {
    .printBreak{
        display: block;
        page-break-before: always;
    }
}
  
.printArea{
    /*width:360px; */
    height:auto; 
    background-color:white;
}
.printLabel{
    width:360px; 
    height:180px; 
    background-color:white;
}
.qrCode{
    width:150px; 
    height:150px; 
    margin:0px 0 0 16px;
}
.printBreak{
    display: block;
    page-break-before: always;
}


/*
================================================================
Below is CSS for pagination
================================================================
*/
.paginationMy {
  margin: 25px 0 15px 0;
}
.paginationMy,
.paginationMy li a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.paginationMy li {
  background-color: #0e2431;
  list-style: none;
}
.paginationMy li a {
  text-decoration: none;
  height: 50px;
  width: 50px;
  font-size: 18px;
  padding-top: 1px;
  color: #FFF;
  background-color: #0e2431;
  border-color: #0e2431;
}
.paginationMy li:last-child a {
  border-right-width: 1px;
}
.paginationMy li a:hover {
  background: rgba(255, 255, 255, 0.2);
  border-top-color: rgba(0, 0, 0, 0.35);
  border-bottom-color: rgba(0, 0, 0, 0.5);
}
.paginationMy li a:focus,
.paginationMy li a:active {
  padding-top: 4px;
  border-left-width: 1px;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: inset 0px 2px 1px 0px rgba(0, 0, 0, 0.25);
}
.activeMy{
  padding-top: 4px;
  border-left-width: 1px;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: inset 0px 2px 1px 0px rgba(0, 0, 0, 0.25);
}
.fistLast{
    width:auto !important;
    margin-left:16px !important;
    margin-right:16px !important;
}
.paginationMy li.icon a {
  min-width: 120px;
}
.paginationMy li:first-child span {
  padding-right: 8px;
}
.paginationMy li:last-child span {
  padding-left: 8px;
}


/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* 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;
}

input:checked + .slider {
  background-color: #0e2431;
}

input:focus + .slider {
  box-shadow: 0 0 1px #0e2431;
}

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%;
}


/* custom radio button */
.containerRadio {
  display: block;
  position: relative;
  padding-left: 40px;
  margin-bottom: 20px;
  cursor: pointer;
  /*font-size: 25px; */
}

/* Hide the default radio button */
.containerRadio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkRadio {
  position: absolute;
  top: 0;
  left: 0;
  height: 30px;
  width: 30px;
  background-color: lightgray;
  border-radius: 50%;
}
.containerRadio:hover input ~ .checkRadio {
  background-color: gray;
}
.containerRadio input:checked ~ .checkRadio {
  background-color: #0e2431;
} 
.check:after {
  content: "";
  position: absolute;
  display: none;
}
.containerRadio input:checked ~ .checkRadio:after {
  display: block;
}
.containerRadio .checkRadio:after {
  top: 8px;
  left: 8px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: white;
}

.colorSwatch{
  margin: 4px 0 0 8px;
  border: 2px solid grey;
  border-radius: 8px;
  background:white;
  height:180px;
  width:100%;
  float:left;
}


.collapsible {
  cursor: pointer;
  padding:0px !important;
  margin:0px !important;
  float:right !important;
  width:32px;
  text-align:center;
}

.button-link {
  text-decoration: none;
  display: inline-block;
  height: 38px;
  padding: 0 30px;
  color: #555;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: .1rem;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border-radius: 4px;
  border: 1px solid #bbb;
  cursor: pointer;
  box-sizing: border-box; 
    
}
.buttonPrimary-link {
  text-decoration: none;
  display: inline-block;
  height: 38px;
  padding: 0 30px;
  color: #FFF;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: .1rem;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  background-color: #356837;
  border-radius: 4px;
  border: 1px solid #0e2431;
  cursor: pointer;
  box-sizing: border-box; 
    
}

.tableContainer{
    overflow:auto;
}

.fa-stack[data-count]:after{
  position:absolute;
  right:0%;
  top:-20%;
  content: attr(data-count);
  font-size:80%;
  padding:.1em;
  border-radius:999px;
  line-height:1.25em;
  color: white;
  background:rgba(255,0,0,.85);
  text-align:center;
  min-width:1.5em;
  font-weight:bold;
}

/* //////////////  Tab Button  ////////////// */
.tabButton{
    padding: 0 0px !important;
    /*margin-left:0px !important;*/
}
.tabButton:focus{
    color: #FFF;
    background-color: #0e2431;
    border-color: #0e2431;
}

/* //////////////  Small Square Button  ////////////// */
.smallButton{
  height: 32px;
  width: 32px;
  padding: 0 0px;
  line-height: 32px;
  margin:2px;
}

.number{
    text-align:right !important;
}

.currency{
    text-align:right !important;
}

.mytext{
  text-align:left !important;
  word-wrap: normal;
  height:116px !important;
  resize: none;
}
.mytext2{
    text-align:left !important;
    word-wrap: normal;
    height:164px !important;
    resize: none;
}
.mytext3{
text-align:left !important;
word-wrap: normal;
height:90px !important;
resize: none;
}

.currency::before{
    content: "$" !important;
    text-align: center !important;
    position: relative !important;
    left: 35px !important;
}


/*
================================================================
Quote Chart Styles...
================================================================
*/
.quoteChartLegendBox{
    width:11.5%;
    height: 40px;
    margin: 4px;
    padding: 8px;
    float: left;
    color:#fff;
    text-align: center;
    background: yellow;
    border: 1px solid #FFF;
}
.quoteCharts{
    width:19.9%;
    height: auto;
    margin: 0;
    padding: 10px;
    float: left;
}