.anchor{
    display: block;
    position: relative;
    top: -40vh;
    visibility: hidden;      
}  

.label-holder label:hover{
    background-color: #eee;
    border-radius: 4px; 
}
 
.francois, .slab{
    font-family: 'Roboto Slab', serif !important;   
}  
 
.francois *, .slab *{ 
    font-family: 'Roboto Slab', serif !important; 
}   
  
.rotate {    
    -webkit-animation:rotate 0.5s linear infinite;
    -moz-animation:rotate 0.5s linear infinite;   
    animation:rotate 0.5s linear infinite;
}

.fadeout{
    opacity: 0;
    transition: 0.4s;
}

html {
  scroll-behavior: smooth;
}

/*Special Scroll Bar*/
  
/*width*/
.scrollbar::-webkit-scrollbar {
  width: 1.2rem;
  height: 1.2rem;
}

/* Track */
.scrollbar::-webkit-scrollbar-track {
  border: 0px;
  border-radius: 0px;
  background: #cecece;
  cursor: pointer;
  border-radius: 0.6rem; 
}

/* Handle */
.scrollbar::-webkit-scrollbar-thumb {
  background: #ffae00; 
  border-radius: 6rem;
}

.scrollbar::-webkit-scrollbar-thumb:hover{
  background: #ff7b00;
}


  
@-moz-keyframes rotate { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes rotate { 100% { -webkit-transform: rotate(360deg); } }
@keyframes rotate { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }
 
.shake{
  /* Start the shake animation and make the animation last for 0.5 seconds */ 
  animation: shake 0.5s;

  /* When the animation is finished, start again */
  animation-iteration-count: infinite;
}

@keyframes shake {
  0% { transform: translate(1px, 1px) rotate(0deg); }
  10% { transform: translate(-1px, -2px) rotate(-1deg); }
  20% { transform: translate(-3px, 0px) rotate(1deg); }
  30% { transform: translate(3px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(1deg); }
  50% { transform: translate(-1px, 2px) rotate(-1deg); }
  60% { transform: translate(-3px, 1px) rotate(0deg); }
  70% { transform: translate(3px, 1px) rotate(-1deg); } 
  80% { transform: translate(-1px, -1px) rotate(1deg); }
  90% { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(1px, -2px) rotate(-1deg); }
}

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

.cf:after {
  clear: both;
}
 
a{
    color: #0085db;
    text-decoration: none; 
    cursor: pointer;
    font-family: inherit;
} 

a:hover{  
    text-decoration: underline;
}



body{
    margin: 0px;
    padding: 0px; 
    padding-top: 60px;
    overflow-y:auto;
    font-size: 1rem;
}


*{
    font-family: poppins, helvetica;
    box-sizing: border-box;
}

button{
    cursor: pointer;
    background-color: white;
    border-radius: 0px;
    border: 1px solid silver;
    padding: 3px 6px;
    outline: none;
}

button:hover{
    background-color: lightgrey;
}

section{
    margin-top: 35px;
    margin-left: 35px;
    margin-right: 100px;
}

h1{
    font-size: 2rem; 
    font-weight: 400;
    margin-bottom: 10px;
    margin-top: 10px;
}

h2{
    font-weight: 400;
    font-size: 1.65rem;
    margin: 5px 0px;
}

h3.light{
    font-weight: 400;
    font-size: 1.3rem;  
    margin-top: 15px;
    margin-bottom: 0px;
}

h4.light{
    font-weight: 400;
    font-size: 1.2rem;
    margin-top: 15px;
    margin-bottom: 0px;
}

h5.light{
    font-weight: 400;
    font-size: 1rem;
    margin-top: 0px;
    margin-bottom: 0.1rem;
}

.smalltext{
    font-size: 0.8rem;
    font-weight: 400;
    font-family: lato, arial;
}

.m{
    font-weight: 500;
}

.u{
    text-decoration: underline;
}

/*INLINE ELEMENT*/

.inline-select{
    padding: 0;
    margin: 0;
    font-size: inherit;
    font-family: inherit;
    color: inherit;
    border: none;
    cursor: pointer;
    outline: none;
    display: inline-block;
    color: blue;
}

/*TOOLBOXES*/

.small_toolbar{
    width: 100%;
    background-color: #eee;
    margin-bottom: 15px;
    display: block;
    height: 50px;
    transition: 0.2s;
    cursor: pointer;
    color: black;
    text-decoration: none;    
}

.small_toolbar:hover{
    background-color:lightgrey;
    transition: 0.2s;
}

.small_toolbar img{
    height: 30px;
    margin: 10px;
    margin-left: 20px;
    float: left;
}

.small_toolbar p{
   font-size: 15px;
   height: 50px;
   margin: 0px;
   margin-left: 10px;
   display: block;
   float:left;
   line-height: 50px;
}

.small_toolbar .key{
    padding: 5px 10px;
    border: 1px solid grey;
    border-radius: 7px;
    color: grey;
    background-color: white;
    box-shadow: 0 0 5px lightgrey;
    margin-left: 15px;
}

 .tool_key{
    padding: 5px 10px;
    border: 1px solid grey;
    border-radius: 7px;
    color: grey;
    margin-left: 5px;     
    margin-right: 5px;
    transition: 0.1s;
    cursor: pointer;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
 }
 
 .tool_key:hover{
     transition: 0.2s;
     background-color: #eee;
 }


.activeTool{
    background-color: #ffdd00 !important;
    transition: 0.1s;
}



/*END TOOLBOX STYLES*/


/*GENERAL SIDEBAR*/
.sidebar_section{
    background-color: #fdfdfd;
    border: 1px solid lightgrey;
    margin-bottom: 23px;
    min-height: 10px;
    width: 100%;
    padding: 15px;
    padding-top: 10px;
}

.plain_sidebar_section{
    background-color: inherit !important;
    border: none !important;
}

.section_search_bar{
 width: 90%;
 border: 1px solid lightgrey;
 border-radius: 0px;
 border-top-right-radius: 0px;
 border-bottom-right-radius: 0px;
 height: 40px;
 outline: none;
 padding: 0px 20px;
 font-size: 15px;
 margin-bottom: 15px;
}

.section_search_submit{
 margin: 0px;
 width: 10%;
 border: 1px solid lightgrey;
 border-radius: 0px;
 border-top-left-radius: 0px;
 border-bottom-left-radius: 0px;
 border-left: none; 
 height: 40px;
 outline: none;
 text-align: center;
 font-size: 15px; 
 display: inline-block;
 padding: 0px;
 cursor: pointer;
 background-color: #fafafa;
 transition: 0.1s;
 margin-top: 10px;
 margin-bottom: 0px;
}

.section_search_submit:hover{
    background-color: #eee;
    transition: 0.2s;
}

.section_search_submit:active{
    background-color: lightgrey;
    transition: 0s;
}

.sidebar_section_image{
    float: left;
    margin-right: 13px;
    margin-bottom: 13px;
    width: 50px;
    overflow: hidden;
    vertical-align: middle;
}

.sidebar_section h2{
 margin: 0px;
font-size: 1.4em;
margin-top: 0px;
font-weight: 500;   
}

.sidebar_section h3{
 margin: 0px;
font-size: 1.2em;
margin-top: 0px;
font-weight: 500;  
}

.sidebar_section h4{
    margin: 0px;
    margin-top: 0px;
    padding: 0px;
    font-weight: 600;
}

.sidebar_section .text{
    margin-top: 5px;
    font-size: 1rem !important;
}

.sidebar_area{
    float: left;
    width: 20%;
    margin-left: 3%;
    margin-top: 35px;
}

.right_sidebar_area{
    float: left;
    width: 20%;
    margin-right: 3%;
    margin-top: 35px;
}

section.section_with_sidebar{
    float: left;
    margin-top: 35px;
    width: 70%;
    margin-left: 3%;
    margin-right: 4%;
    overflow: visible;
}

section.section_with_double_sidebar{
    float: left;
    margin-top: 35px;
    width: 46%;
    margin-left: 4%;
    margin-right: 4%;
    overflow: visible;
}

.large_selection_box{
    overflow: hidden;
    display: inline-block;
    position: relative;
    margin-right: 20px;
    margin-bottom: 20px;
    height: 280px;
    width: 300px;
    background-color: #eee;
    border: 1px solid lightgrey;
    box-shadow: 0 0 10px lightgrey;
}

.large_selection_box img{
    position: absolute;
    top: 0px;
    left: 0px;
    height: 230px;
    z-index: 1;
}

.large_selection_box .cover{
    height: 230px;
    width: 300px;
    top: 0px;
    left: 0px;
    z-index: 3;
    position: absolute;
    transition: 0.2s;
}

.large_selection_box h2{
    height: 50px;
    width: 100%;
    position: absolute;
    bottom: 0px;
    left: 0px;
    line-height: 30px;
    padding: 10px;
    margin: 0px;
    text-align: center;
    font-size: 20px;
    color: black;
    font-weight: 500;
    background-color: white;
    transition: 0.2s;
    z-index: 5;
}

.large_selection_box h2 span{
    margin-left: 30px;
    font-weight: 200;
}


.large_selection_box:hover .cover{
   background-color: rgba(0,0,0,0.3);
   transition: 0.2s;
}

.large_selection_box:active .cover{
   background-color: rgba(0,0,0,0.5);
    transition: 0s;
}

.full_size_header{
    width: 100%;
    font-size: 2.5rem;
    font-family: 'Roboto Slab', serif !important;
    margin-top: 0px;
    position: relative;
    vertical-align: middle;
}

.full_size_header_caption{
    width: 100%;
    font-weight: 400;
    font-size: 20px;
    margin-top: 8px;
    position: relative;    
}

.full_size_header .arrow{
    color: #ffae00;
}

.section_navigate_item{
    width: 150px;
    top: 0px;
    left: 0px;
    margin-right: 20px;
    margin-bottom: 15px;
    display: inline-block;
    text-decoration: none;
}

.section_navigate_item:hover{
    opacity: 0.65;
}

.section_navigate_item:active{
    opacity: 0.4;
}

.section_navigate_item img{
   border: 0px transparent;
   width: 100%;
   top: 0px;
   left: 0px;
   box-shadow: 0 0 5px lightgrey;
}

.section_navigate_item h3{
   margin: 0px;
   margin-top: 15px;
   padding: 0px;
   font-weight: 400;
   font-size: 15px;
   line-height: 20px;
   width: 100%;
   text-align: center;
   color: black;
}

.large_navigate_list_box{
    border: 1px solid lightgrey;
    clear: both;
    margin-bottom: 1rem;
    padding: 0.5rem 1.5rem;
    width: 90%;
    display: block;
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
    font-size: 0;
}

.large_navigate_list_box h3{
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
    float: left;
    overflow: hidden;
    color: black;
    font-weight: 300;
    padding-top: 0.55rem;
}

.large_navigate_list_box:hover, .large_navigate_list_box:hover span, .large_navigate_list_box:hover h3  {
    background-color: #fafafa;
}

.large_navigate_list_box a:hover h3{
    text-decoration: underline !important;
}

.large_navigate_list_box a:active h3{
    color: blue;
}

.image_holder{
    height: 2.4rem;
    width: 2.4rem;
    display: block;
    float: left;
    margin-right: 1.5rem;
    overflow: hidden;
    text-decoration: none;
    cursor:pointer;
    display: inline-block;
    vertical-align: middle;
}

.image_holder img{
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.image_holder:hover img{
    opacity: 0.6;
}

.image_holder:active img{
    opacity: 0.4;
}

.large_navigate_list_box h3 .date{
    margin-right: 30px;
    font-weight: normal;
    text-decoration: none;
}

.large_navigate_list_box h3 .number{
    margin-left: 30px;
    color: grey;
    text-decoration: none;
}





.multiple_columns_nav_list{
  display: block;
  overflow: hidden;
  columns: 3;
  -webkit-columns: 3;
  -moz-columns: 3;
  list-style:none;
  padding-left: 0px;
}

.single_column_nav_list{
  display: block;
  overflow: hidden;
  list-style:none;
  padding-left: 0px;  
}

.multiple_columns_nav_list li, .single_column_nav_list li{
    margin: 0px;
    margin-bottom: 0.4rem;
    padding: 0px;
    list-style: none;
    font-size: 1em;
    color: #0085db;
}

.multiple_columns_nav_list li svg, .single_column_nav_list li svg, .multiple_columns_nav_list li img, .single_column_nav_list li img{
    height: 2rem;
    width: 2rem;
    padding: 0.2rem;
    object-fit: contain;
    object-position: 50% 50%; /*image is centered*/
    margin-right: 0.6rem;
    vertical-align: middle;
}

.multiple_columns_nav_list input[type=search], .single_column_nav_list input[type=search], .colorBorderSearch{
    width: 100%;
    height: 1.8rem;
    font-size: 0.8rem;
    outline: none;
    border-radius: 0px;
    border: none;
    border-bottom: 2px solid #ffdd00;
    margin-bottom: 0.8rem;
    background-color: inherit;
}

.single_column_nav_list input[type=search]:not(:placeholder-shown), .multiple_columns_nav_list input[type=search]:not(:placeholder-shown), .colorBorderSearch input[type=search]:not(:placeholder-shown){
  border-color: green;
}

/*LARGE NAV LIST*/

.large_nav_block{
    display: inline-block;
    width: 11rem;
    padding: 1rem;
    margin-right: 2rem;
    margin-bottom: 2rem;
    border: 1px solid silver;
    vertical-align: top;
    cursor: pointer;
    color: black;
    text-decoration: none;
    border-radius: 5px;
}

.large_nav_block:hover{
   background: linear-gradient(90deg, rgba(255,221,0,1) 0%, rgba(251,255,0,1) 100%); 
   transition: transform 0.2s;
}

.large_nav_block:active {
    transition: transform 0.2s;
    transform: scale(0.93);
}

.large_nav_block img{
    width: 9rem;
    height: 9rem;
    object-fit: contain;
    margin-bottom: 1rem;
}

.large_nav_block p{
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 1.1rem;
    text-align: center;
}

/*SPECIAL STYLING FOR SIDEBARS*/
.sidebar_section .single_column_nav_list li{
   
}


.noSearchFound{
    border-color: red !important;
}


.back_button {
     color: blue; 
     text-decoration:none;
     margin-right: 30px;
}

.button_link{
    color: blue;
    text-decoration: none;
    cursor: pointer;
}

.text{
    font-family: lato !important;
    font-size: 1.1em;
    line-height: 1.5em;
}

.text input[type="submit" i]{
    background-color: #fafafa;
    border: 1px solid grey;
    border-radius: 5px;
    margin-top: 5px;
    display: block;
    cursor: pointer;
    transition: 0.2s;
    outline: none;
}

.text input[type="submit" i]:hover{
    background-color: #eee;
    transition: 0.2s;
}

.text input[type="submit" i]:active{
    background-color: #ffdd00;
    transition: 0s;
}

.text select{
  background-color: #fafafa;
  border: 1px solid grey;  
  border-radius: 5px;
  cursor: pointer;
  transition: 0.2s;
  outline: none;
  width: 100px;
}

.text select:hover{
    background-color: #eee;
    transition: 0.2s;
}

.text select:active{
    transition: 0s;
}
 


.form_dropdown {
  position: relative;
  display: inline-block;
  padding: 10px 18px;
  background-color: #fafafa;
  border: 1px solid grey;
  border-radius: 0px;
  cursor: pointer;
  margin-left: 30px;
}

.form_dropdown > span::after{
    content: ' ↓';
}

.form_dropdown:hover > span::after{
    content: ' ↑';
}

.form_dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  padding: 12px 16px;
  z-index: 1;
}

.form_dropdown:hover .form_dropdown-content {
  display: block;
}
/*
input[type=search]{
    height: 60px;
    width: 60%;
    border: 0px;
    border-radius: 0px;
    padding: 0px 20px 0px 20px;
    font-size: 15px;
    margin: 0px;
    outline: none;
    border: 1px solid grey;
    border-right: 0px;
}*/

.search_enter{
    margin: 0px;
    margin-left: 0px;
    height: 60px;
    border: 0px;
    padding: 0px 20px 0px 20px;
    border-radius: 0px;
    font-size: 15px;
    outline: none;
    cursor:pointer;
    transition: background-color 0.2s;
    background-color: #eee;
    border: 1px solid grey;
}

.search_enter:hover{
background-color: lightgrey;
transition: background-color 0.4s;
cursor:pointer;
}

.search_enter:active{
    background-color: #ffdd00;
    transition: 0.1s;
}

/*input[type=text]{
    height: 50px;
    width: 60%;
    border-radius: 5px 5px 5px 5px;
    border: 1px solid grey;
    padding: 0px 20px 0px 20px;
    font-size: 15px;
    margin: 0px;   
    margin-top: 2px;
    outline: none;
}*/

input[type=link]{
    height: 50px;
    width: 70%;
    border-radius: 0px 5px 5px 0px;
    border: 1px solid grey;
    padding: 0px 15px 0px 15px;
    font-size: 15px;
    margin: 0px;   
    outline: none;
    height: 50px;
}

.link_select{
    height: 50px;
    width: 23%;
    border-radius: 5px 0px 0px 5px;
    border-radius: 5px 0px 0px 5px;
    border: 1px solid grey;
    padding: 0px 10px 0px 20px;
    font-size: 15px;
    line-height: 50px;
    margin: 0px;   
    outline: none; 
    border-right-width: 0px;
    background-color: #fafafa;
    transition: background-color 0.2s;
    cursor: pointer;
    float: left;
}

.link_select:hover{
background-color: #eee;
transition: background-color 0.2s;
}
/*
input[type=submit]{
    Border-radius: 0px;
    border: 1px solid black;
    background-color: #fefefe;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 6px;
    padding-bottom: 6px;
    box-shadow: 0px 5px 9px lightgrey;
    cursor: pointer;
    transition: background-color 0.2s;
    font-size:13px;
}

input[type=submit]:hover{
    background-color: #ffdd00;
    transition: background-color 0.4s;
}*/

.small_submit{
   display: inline;
   padding-left: 20px !important;
   padding-right: 20px !important;
   padding-top: 2px !important;
   padding-bottom: 2px !important;
   font-size: 10px !important;
   margin-left: 10px;
   box-shadow: 0 2px 5px lightgrey !important;
}

.add_field{
    height: 50px;
    width: 16%;
    border-radius: 5px;
    border: 1px solid grey;
    padding: 0px 20px 0px 20px;
    font-size: 15px;
    margin: 0px;   
    margin-top: 9px;
    outline: none; 
    transition: background-color 0.2s;
    cursor: pointer;
}

.add_field:hover{
background-color: #ffdd00;
transition: background-color 0.4s;
}


.select_normal{
    height: 50px;
    width: 60%;
    border-radius: 5px 5px 5px 5px;
    border: 1px solid grey;
    padding: 0px 20px 0px 20px;
    font-size: 15px;
    margin: 0px;   
    margin-top: 2px;
    outline: none;    
    background-color: white;
}

textarea{
    height: 150px;
    width: 60%;
    border-radius: 5px 5px 5px 5px;
    border: 1px solid grey;
    padding: 15px 15px 15px 15px;
    font-size: 15px;
    margin: 0px;
    margin-top: 2px;   
    outline: none;    
}

.more{
    color:blue;
    cursor: pointer;
    padding-left: 4px;
    padding-right: 4px;
    border-radius: 0px;
     cursor:pointer;
}




.collapsible:after {
  content: '\02795'; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2796"; /* Unicode character for "minus" sign (-) */
}
  
  /* Style the button that is used to open and close the collapsible content */
.collapsible {
  cursor: pointer;
  padding: 2px 0px 2px 0px;
  border-radius: 8px 8px 0px 0px;
  margin-top: 5px;
  text-align: left;
  outline: none;
  font-size: 15px;
  color: blue;
  border: none;
}

/* Style the collapsible content. Note: hidden by default */
.content {
  padding: 0 18px;
  width: 80%;
  display: none;
  overflow: hidden;
  background-color: #f1f1f1;
}

.required{
    color:red;
}

.optional{
    color: #ffdd00;
}

.spacer{
    height: 10px;
}

/*file input*/
.custom-file-input {
color:transparent;
}
.custom-file-input::-webkit-file-upload-button {
  visibility: hidden;
}
.custom-file-input::before {
  content: 'Select some files';
  color: black;
  display: inline-block;
  background: -webkit-linear-gradient(top, #f9f9f9, #e3e3e3);
  border: 1px solid #999;
  border-radius: 3px;
  padding: 5px 8px;
  outline: none;
  white-space: nowrap;
  -webkit-user-select: none;
  cursor: pointer;
  text-shadow: 1px 1px #fff;
  font-weight: 700;
  font-size: 10pt;
}
.custom-file-input:hover::before {
  border-color: black;
}
.custom-file-input:active {
  outline: 0;
}
.custom-file-input:active::before {
  background: -webkit-linear-gradient(top, #e3e3e3, #f9f9f9); 
}


.tab_head{
    background-color: #f8f8f8;
    margin: 0px;
    padding: 10px 10px 10px 15px;
}   
   
/* Style the tab */
.tab {
  overflow: hidden;
  border-bottom: 0px solid #ffdd00;
  background-color: #f8f8f8;
  border-top: 1px solid lightgrey;
  
}

/* Style the buttons that are used to open the tab content */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 15px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #f1f1f1;
}

/* Create an active/current tablink class */
.tab button.active_tab {
  background-color: #ffdd00;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  
  border-top: none;
}

.tabcontent {
  animation: fadeEffect 0.3s; /* Fading effect takes 1 second */
}

/* Go from zero to full opacity */
@keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}
    

/*Messages*/
.message{
    clear:both;   
    width: 60%;
    border-radius: 10px;
    max-height: 300px;
    overflow: scroll;
    padding: 10px;
    box-shadow:0 0 5px lightgrey;
    border: 1px solid lightgrey;
    margin-bottom: 13px;
    margin-top: 13px;
}

.message_sent{
    background-color: #fdfdfd;
    float:left;

}

.message_receive{
    background-color:white;
    float:right;
}

/*User Profiles*/
.profile_header_search_bar{
    height: 44px;
    width: 100%;
    box-shadow: 0 0 5px silver;
    background-color: #fafafa;
    z-index: 5;
    margin: 0px;
    padding-left: 25px;
}

.profile_header_search_bar p{
    padding: 0px;
    margin: 0px;
    line-height: 44px;
    margin-right: 25px;
    display: inline-block;
}

.profile_header_search_bar input[type="search"], .small-search-bar{
  height: 30px !important;
  width: 300px !important;
  float: left !important;
  margin: 0px !important;
  margin-top: 7px !important;
  padding-left: 15px !important;
  margin-right: 20px !important;
  display: inline-block !important;
  border-radius: 0px !important;
  border: none !important;
  border: 1px solid !important;
}

.profile_header_search_bar input[type="submit"], .small-search-submit{
  margin: 0px;
  margin-top: 7px;
  height: 30px;
  border: 1px solid grey;
  border-left: 0px solid grey;
  width: 50px;
  border-radius:0;
  display: inline-block;
  float: left;
  outline: none;
  transition: 0.2s;
  cursor: pointer;
  font-size: 14px;
  background-color: #eee;
}

.profile_header_search_bar input[type="submit"]:hover, .small-search-submit:hover{
 background-color: lightgrey;
 transition: 0.3s;
}

.profile_header_search_bar input[type="submit"]:active, .small-search-submit:active{
 background-color: #ffdd00;
 transition: 0.1s;
}

.small-search-bar-option, .profile_header_search_bar input[type="select"]{
  margin: 0px;
  margin-top: 7px;
  margin-left: 0px;
  height: 30px;
  text-align: center;
  line-height: 28px;
  display: inline-block;
  float: left;
  outline: none;
  transition: 0.2s;
  cursor: pointer;
  font-size: 14px;
  padding-left: 10px;
  padding-right: 10px;
  background-color: white;
  border: 1px solid grey;
}


.small-search-bar-option:hover, .profile_header_search_bar input[type="select"]:hover{
    background-color: #eee ;
    transition: 0.2s;
}

.profile_header_search_bar a{
    text-decoration: none;
    color: blue;
}

.profile_header_search_bar a > img{
    display: inline-block;
    margin-top: 12px;
    margin-right: 7px;
    margin-left: 7px;
    height: 20px;
    float: left;
}

.profile_header_search_bar a:active{
    border-bottom: 1px solid blue;
}

.profile_header_bar{
    height: 80px;
    width: 100%;
    box-shadow: 0 0 5px lightgrey;
    background-color: #fafafa;
    z-index: 5;
    margin-bottom: 50px;
}

.profile_header_navigate{
    float: left;
    margin-left: 50px;
}

.header_image_holder{
    width: 100%;
    height: 180px;
    overflow: hidden;
    background-color: #eee;
    z-index: 1;
    position: relative;
}

.header_image_holder > img{
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
}

.header_image_holder h1{
    width: 100%;
    height: 180px;
    line-height: 180px;
    text-align: center;
    overflow: hidden;
    z-index: 2;
    margin: 0px;
    padding: 0px;
    position: absolute;
    top: 0px;
    left: 0px;
    font-size: 70px;
    font-weight: 600;
    color: white !important;
    text-shadow: 0 0 5px grey;
}

.header_image_holder h2{
    
}

.profile_header_navigate > a{
    margin-left: 50px;
    line-height: 80px;
    color: black;
    text-decoration: none;
    transition: 0s;
}

.profile_header_navigate > a:hover{
    transition: 0s;
    text-decoration: underline;
}

.profile_header_navigate > a:active{
    transition: 0s;
    color: blue;
}


.profile_header_username_image > div{
    float: left;
    height: 100%;
}

.profile_header_username_image h1{
    font-size: 20px;
    font-weight: 400;
    padding: 0px;
    margin: 0px;
    margin-left: 20px;
    margin-top: 17.5px;
    height: 25px;
    line-height: 25px;
}

.profile_header_username_image h2{
    padding: 0px;
    margin: 0px;
    margin-left: 20px;
    font-weight: normal;
    font-size: 13px;
    height: 20px;
    line-height: 20px;
    margin-bottom: 17.5px;
}


.profile_page_user_image{
    border: 5px solid #fafafa; 
    box-shadow: 0 0 10px lightgrey;
    border-radius: 100%; 
    height: 145px;
    width: 145px;
    margin-left: 0px;
    margin-top: -40px;
    z-index: 6;
    position: relative;
    float: left;
    background-color: white;
}

.profile_header_username_image{
    float: left;
    height: 100%;
    margin-left: 50px;
}

.profile_header_info{
    float: left;
    margin-left: 25px;
    display: none;
}

.profile_header_info > h2{
    margin: 0px;
    padding: 0px;
    font-weight: 400;
    margin-bottom: 5px;
}

.profile_header_info > p{
    margin: 0px;
    padding: 0px;    
}

.profile_header_action_buttons{
  float: left;
  margin-left: 30px;
  display: block;
}

.profile_header_button{
  margin-right: 15px;
  float:left;
  width: 40px;
  text-align: center;
  padding-top: 20px;
}

.profile_header_button > p{
    margin: 0px;
    margin-top: 10px;
    padding: 0px;
    font-size: 15px;
    width: 150px;
    height: 40px;
    line-height: 40px;
    box-shadow: 0 0 10px lightgrey; 
    margin-left: -55px;
    background-color: grey;
    color: white;
    border-radius: 10px;
    display: none;
    opacity: 0.8;
}

.profile_header_button_image:hover+p{
    transition: 0.2s;
    display: block;
}

.profile_header_button_image{
  height: 40px;
  width: 40px;
  background-color: #ffdd00;
  border-radius: 100%;
  cursor: pointer;
  transition: 0.2s;
  display: inline-block;
}

.profile_header_button_image > img{
    height: 50%;
    width: 50%;
    margin: 25%;
}

.active_header_button{
    background-color: lime !important;
}

.active_header_button{
    background-color: lime !important;
}


.profile_header_button_image:hover{
    background-color: #eee !important;
    transition: 0.3s;
    box-shadow:0 0 5px lightgrey;
}

.profile_header_button_image:active{
    background-color: lightgrey !important;
    transition: 0.1s;
}

/* Timeline */

.large_profile_div_header{
    height: 45px;
    background-color: #ffdd00;
    width: 100%;
}

.large_profile_div_header > h1{
 margin: 0px;
 padding: 0px;
 margin-left: 10px;
 margin-right: 10px;
 line-height: 45px;
 font-size: 21px;
 color: black;
}

.large_profile_div{
    width: 70%;
    background-color: inherit;
    margin-bottom: 25px;
}

/* Side links */
.large_profile_link{
    width: 25%;
    clear: both;
    float: right;
    margin-left: 5%;
    margin-bottom: 20px;
    line-height: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 15px;
    font-size: 19px;
    border: 1px solid #ffdd00;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    color: black;
    transition: 0.2s;
}

.large_profile_link:hover{
    border-color: #eee;
    transition: 0.3s;
}

.large_profile_link:active{
    border-color: #ffdd00;
    transition: 0.1s;
    box-shadow: 0 0 7px #eee;
}


/*styling for both big and small boxes */
.profile_content{
    margin: 0px;
    margin-top: 0px;
    padding: 0px;
}

.profile_content > p{
    margin-top: 10px;
    margin-bottom: 10px;
}

/*stying for the head of the links*/
.small_profile_div_header{
    height: 36px;
    background-color: #ffdd00;
    width: 25%;
    clear: both;
    float: right;
    margin-bottom: 15px;
}

.small_profile_div_header > h1{
 margin: 0px;
 padding: 0px;
 margin-left: 10px;
 margin-right: 10px;
 line-height: 36px;
 font-size: 17px;
 color: black;
}

.timeline_object{
    border: 1px solid #ffdd00;
    border-top: 0px;
    padding: 10px;
    margin-top: 0px;
}

/*Style File Uploads*/
.upload-btn-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.btn {
  border: 2px solid gray;
  color: gray;
  background-color: white;
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
}

.upload-btn-wrapper input[type=file] {
  font-size: 100px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

.page_footer{
    margin-top: 100px;
    width: 100%;
    height: 400px;
    background-color: #eee;
    clear: left;
    overflow: hidden;
}

.catalog_table{
    border: 1px solid grey;
    border-bottom: 0px;
    border-collapse: collapse;
    font-family: lato !important;
}

.catalog_table *{
    font-family: lato !important;
}

.catalog_table tr{
    width: 100%;
}

.catalog_table .edge{
    border-right: 1px solid grey;
}


.catalog_table .price{
    cursor: pointer;
}

.catalog_table tr:nth-child(even) {background-color: #f2f2f2;}

.catalog_table td, .catalog_table th{
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
    padding-right: 10px;
    overflow: hidden;
    font-size: 17px;
}

.catalog_table td{
    text-align: center !important;
    border-bottom: 1px solid grey;
    font-weight: 200;
}

.catalog_table th{
    font-weight: normal;
    background-color: #ffdd00;
    border-bottom: 1px solid grey;
}

.catalog_table .notes{
    width: 200px !important;
    white-space: nowrap;
    overflow: hidden;
    display: block;
    cursor: pointer;
}

.catalog_table .notes:hover {
    width: 200px !important;
    white-space: normal;
    overflow: hidden;
    display: block;  
     background-color: #fafafa;
}

.catalog_table .notes_header{
    width: 200px !important;
}

.catalog_table td .itemimg{
    height: 40px;
}

.linear_large_selection_box{
    height: 100px;
    width: 500px;
    border: 1px solid lightgrey;
    display: block;
    color: black;
    text-decoration: none;
    border-radius: 5px;
    margin-bottom: 30px;
    transition: 0.1s;
}

.linear_large_selection_box:hover{
    background-color: #fafafa;
    transition: 0.1s;
}

.linear_large_selection_box:active{
    background-color: #eee;
    transition: 0s;
}


.linear_large_selection_box h2{
    margin: 0px;
    margin-left: 50px;
    line-height: 100px;
    text-align: left;
    font-size: 30px;
    font-weight: 400;
    float: left;
}

.linear_large_selection_box img{
    margin-left: 30px;
    margin-top: 20px;
    height: 60px;
    width: 60px;
    border: 0px;
    float: left;
}

.image_picker_holder{
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.4);
    position: fixed;
    top: 0px;
    left: 0px;
    display: none;
    z-index: 1000;
}

.image_picker{
    width: 75%;
    height: 90vh;
    margin: 2vh auto 0 auto;
    position: relative;
    background-color: white;
    box-shadow: 0 0 5px grey;
    display: block;
    overflow: hidden;
    resize: vertical;
    border: 1px solid grey;
}

.close_image_picker{
    float: right;
    border-radius: 3px;
    height: 3rem;
    display: inline-block;
    font-size: 1.3rem;
    padding: 0 1rem;
    outline: none;
    transition: 0.1s;
    cursor: pointer;
    margin: 1rem;
    margin-left: 0;
    border: none;
}

.close_image_picker:hover{
    transition: 0.2s;
}

.close_image_picker:active{
    transition: 0s;
}


#close_image_picker{
    background-color: #ffdd00;    
    color: black;
}

#close_image_picker:hover{
    background-color: #ffae00;    
}

#close_image_picker:active{
    background-color: #e09900;    
}



#close_image_picker_cancel{
    background-color: red ;
    color: white;
}

#close_image_picker_cancel:hover{
    background-color: crimson;
}

#close_image_picker_cancel:active{
    background-color: darksalmon;
}

.choose_image_title{
    float: left;
    margin: 0px;
    padding: 0px;
    margin-left: 1rem;
    height: 5rem;
    line-height: 5rem;
    font-size: 1.4rem;
}

.choose_image_title .infospan{
    font-weight: normal;
    margin-left: 2rem;
}

.choose_image_title_holder{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    width: 100%;
    height: 5rem;
    background-color: #fafafa;
    border-bottom: 1px solid grey;
    overflow: auto;
}

.image-search{
    width: 40%;
    margin-right: 1%;
    border: none;
    border-bottom: 1px solid grey;
    padding: 0.4rem 0;
}

.image-search-type{
    width: 20%;
    margin-right: 2%;
    border: none;
    border-bottom: 1px solid grey;
    padding: 0.4rem 0;
    cursor: pointer;
}

.image-search-type:hover{
    background: #eee;
}

.image-search-link{
    
}


.choose_image_navigate{
    width: 20%;
    position: absolute;
    top: 5rem;
    left: 0px;
    z-index: 1;
    height: 100%;
    height: calc(100% - 5rem);
    background-color: #fafafa;
    border-right: 1px solid grey;
    float: left;
    padding-top: 1rem;
}

.choose_image_navigate hr{
    border: none;
    border-bottom: 1px dashed grey;
    margin: 0 0;
    margin-bottom: 0.6rem;
}

.choose_image_navigate button{
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
    width: 90%;
    margin-left: 5%;
    margin-bottom: 0.6rem;
    border: 0px;
    background: none;
    font-size: 17px;
    border-radius: 0px;
    transition: 0s;
    outline: none;
    cursor: pointer;
}

.choose_image_navigate button:hover{
    background-color: #eee;
    transition: 0.2s;
}

.choose_image_navigate button:active, .active_image_navigate_button{
    background-color: lightgrey !important;
    transition: 0s;
}
    
.chooseImagePanel{
    padding: 1rem;
    padding-right: 2rem;
    padding-bottom: 6rem;
    display: none;
    position: absolute;
    top: 5rem;
    left: 20%;
    height: 100%;
    height: calc(100% - 5rem);
    width: 80%;
    overflow-y: scroll;
}

.chooseImagePanel h2{
    padding: 0.2rem 0;
    padding-top: 0;
    margin-top: 0;
    border-bottom: 1px solid black;
    font-family: 'Roboto Slab';
    font-size: 2rem;
}

#drop-area{
    width: 100%;
    background-color: #fafafa;
    border: 3px dashed silver;
    padding: 3rem 2rem;
    text-align: center;
    overflow: scroll;
}

#drop-area.highlight {
  border-color: purple;
}

.my-form {
  margin-bottom: 10px;
}
#gallery {
  margin-top: 10px;
}
#gallery img {
  width: 150px;
  margin-bottom: 10px;
  margin-right: 10px;
  vertical-align: middle;
}

#fileElem {
  display: none;
}

.imageUploadButton {
  display: inline-block;
  padding: 0.5rem 3rem;
  background: white;
  cursor: pointer;
  background: red;
  color: white;
  font-family: helvetica;
  font-weight: bold;
  border-radius: 5px;
}
.imageUploadButton:hover {
  background: crimson;
}

.imageUploadButton:active{
   background: darksalmon; 
}

#image-progress-holder{
    width: 100%;
    background: none;
}

#image-progress-bar{
    height: 1.5rem;
    background: #ffdd00;
    display: none;
}

.selectImageHolder{
    height: 100px;
    width: 100px;
    margin-right: 8px;
    margin-bottom: 8px;
    float: left;
    background-color: #eee;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
    font-family: helvetica;
}

.selectImageHolder:hover{
    opacity: 0.7;
}

.selectImageHolder:active{
    outline: 2px solid #ffdd00;
}

.selectImageHolder img{
    height: 90px;
    width: 90px;
    margin: 5px;
    object-fit: contain;
    border: 0px;
}

.loadMoreImageButtons{
    display: block;
    clear: both;
    margin-top: 10px;
    margin-bottom: 50px;
}


.loader {
  border: 16px solid #f3f3f3;
  border-top: 16px solid #ffdd00;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 0.4s linear infinite;
  margin-left: auto;
  margin-right: auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  20% { transform: rotate(20deg); }
  100% { transform: rotate(360deg); }
}

.pause{
    display: none !important;
    animation: none !important;
}

.image_picker .selectedImages{
    margin-bottom: 80px;
}

.selectedImageHolder{
    position: relative;
    clear: both;
    display: block;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed silver;
}

.selectedImageHolder img{
    display: block;
    box-shadow: 0 0 5px lightgrey;
    z-index: 1;
    object-fit: contain;
    width: 300px;
    max-height: 50vh;
}

.imageMemo{
    background: red;
    display: inline-block;
    color: white;
    padding: 0.1rem 0.5rem;
    margin-top: 0.5rem;
}

.selectedImageHolder .selected_image_caption{
    margin: 0px;
    margin-left: 10px;
    width: 150px;
    height: 200px;
    padding: 10px;
    font-size: 15px;
    border: 1px solid grey;
    border-radius: 0px;
    display: inline-block;
    vertical-align:top;
}

.editButtonsHolder{
   width: 300px;
}

.selectedImageHolder .editButton{
    float: left;
    background: #ffdd00;
    margin-top: 7px;
    margin-right: 7px;
    width: 47.5%;
    line-height: 1.5rem;
    border: 1px solid silver;
    text-align: center;
    border-radius: 3px;
    cursor: pointer;
    transition: 0.2s;
    color: black;
    text-decoration: none;
}


.selectedImageHolder .editButton:hover{
    transition: 0.2s;
    background: #ffae00;
}

.selectedImageHolder .editButton:active{
    transition: 0s;
    background: #e09900;
}

.image_picker .alert{
    padding: 10px;
    background-color: red;
    border-radius: 10px;
    color: white !important;
    margin-bottom: 15px;
    width: 75%;
}

.image_picker .alert h4{
    font-size: 15px;
    margin: 0px;
    padding: 0px;
}

.image_picker .alert p{
    font-size: 13px;
    margin: 0px;
    padding: 0px;
}

.image_picker .loadMoreImagesSelect{
  padding: 0px;
  margin: 0px;
  border: 0px;
  border-radius: 0px !important;
  background-color: inherit;
  font-size: inherit;
  color: blue;
  cursor: pointer;
}

.post_type_text{
    width: 100%;
    min-height: 150px;
    outline: none;
    border: 1px solid lightgrey;
    border-radius: 0px;
    padding: 15px;
    resize: none;
    margin-bottom:0px;
    margin-top: 0px;
    font-size: 15px;
    overflow-x: hidden;
    color: black;
    background-color: white;
}

/*width*/
.post_type_text::-webkit-scrollbar {
  width: 15px;
}

/* Track */
.post_type_text::-webkit-scrollbar-track {
  border: 0px;
  border-left: 1px solid lightgrey;
  border-radius: 0px;
}

/* Handle */
.post_type_text::-webkit-scrollbar-thumb {
  background: #ffdd00;
  border-radius: 0px;
}



pre{
 margin: 0px;
 white-space: pre-wrap;       /* css-3 */
 white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
 white-space: -pre-wrap;      /* Opera 4-6 */
 white-space: -o-pre-wrap;    /* Opera 7 */
 word-wrap: break-word;       /* Internet Explorer 5.5+ */   
}

.pre{
 white-space: pre-wrap;       /* css-3 */
 white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
 white-space: -pre-wrap;      /* Opera 4-6 */
 white-space: -o-pre-wrap;    /* Opera 7 */
 word-wrap: break-word;       /* Internet Explorer 5.5+ */       
}

/*************/

.post_image_slideshow{
    width: 100%;
    height: 50vh;
    position: relative;
    overflow: hidden;
    display: none;
}

/* Hide the images by default */
.post_image_slide {
  display: none;
  margin: 0px;
  text-align: center;
}

div.selectedSlide{
    display:block;
}

.post_image_slide img{
 height: 388px;
 width: 98%;
  object-fit: contain;
 margin: auto;
  margin-top: 5px;
 display: inline-block;
}

/* Next & previous buttons */
.post_image_prev, .post_image_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;
  background-color: rgba(0,0,0,0.6);
}

/* Position the "next button" to the right */
.post_image_next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.post_image_prev:hover, .post_image_next:hover {
  background-color: rgba(0,0,0,0.8);
  text-decoration: none;
}

.post_image_prev:active, .post_image_next:active {
  background-color: rgba(0,0,0,0.9);
  text-decoration: none;
  transition: 0s;
}

.post_image_numbertext {
  color: black;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.post_image_text_holder{
  position: absolute;
  bottom: 0px;
  width: 100%;
}

.post_image_text_close{
  color: black;
  background-color: rgba(255,255,255,0.8);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border: 1px solid lightgrey;
  border-bottom: 0px;
  font-size: 15px;
  padding: 8px 12px;
  width: 50px;
  text-align: center;
  margin-left: 50px;
  margin-bottom: -1px;
  cursor: pointer;
  transition: 0.2s;
}

.post_image_text_close:hover{
    background-color: rgba(250,250,250,0.8);
    transition: 0.2s;
}

.post_image_text_close:active{
    background-color: rgba(238, 238, 238, 0.8);
    transition: 0.1s;
}


.post_image_text {
  color: black;
  background-color: rgba(255,255,255,0.8);
  font-size: 1rem;
  padding: 0.3rem 0.5rem;
  border-top: 1px solid lightgrey;
  text-align: center;
  display: block;
  max-height: 30%;
  overflow-y: scroll;
  overflow-x: hidden;
}




/*LARGER VARIATION*/





.large_post_image_slideshow{
    width: 100%;
    position: relative;
    min-height: 20vh;
    padding: 1rem 0;
    border-top: 1px solid silver;
    border-bottom: 1px solid silver;
/*
background:
  radial-gradient(circle, transparent 20%, white 20%,
    white 80%, transparent 80%, transparent),
  radial-gradient(circle, transparent 20%, white 20%,
    white 80%, transparent 80%, transparent) 50px 50px,
    linear-gradient(#fafafa 8px, transparent 8px) 0 -4px,
    linear-gradient(90deg, #fafafa 8px, transparent 8px) -4px 0;
background-color: white;
background-size: 100px 100px, 100px 100px, 50px 50px, 50px 50px;


background:
  radial-gradient(circle at 100% 50%, transparent 20%, #f0f0f0 21%,
    #f0f0f0 34%, transparent 35%, transparent),
  radial-gradient(circle at 0% 50%, transparent 20%, #f0f0f0 21%, #f0f0f0 34%, transparent 35%, transparent) 0 -50px;
background-color: white;
background-size: 75px 100px;
*/

}

.large_post_image_slideshow .full_size_header{
    padding-bottom: 1.2rem;
    padding-bottom: 1rem;
    font-weight: bold;
}

/* Hide the images by default */
.large_post_image_slide {
  display: none;
  margin: 0px;
  text-align: center;
}

.large_post_image_slide img{
  height: 50vh;
  width: 85%;
  margin: 7.5% 4vh;
  object-fit: contain;
  margin: auto;
  display: inline-block;
}

/* Next & previous buttons */
.large_post_image_prev, .large_post_image_next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  height: 5rem;
  margin-top: -2.5rem;
  line-height: 5rem;
  color: black;
  font-weight: 300;
  font-size: 1.7rem;
  padding: 0 1rem ;
  transition: 0.6s ease;
  border-radius: 3px;
  user-select: none;
  border: 1px solid silver;
  background-color: rgba(0,0,0,0.05);
  
}

/* Position the button to the right side */
.large_post_image_prev {
  left: 0;
}

.large_post_image_next {
  right: 0;
}

/* On hover, add a black background color with a little bit see-through */
.large_post_image_prev:hover, .large_post_image_next:hover {
  background-color: rgba(0,0,0,0.15);
  text-decoration: none;
}

.large_post_image_prev:active, .large_post_image_next:active {
  background-color: rgba(0,0,0,0.25);
  text-decoration: none;
  transition: 0s;
}

.large_post_image_numbertext {
  color: black;
  font-size: 1rem;
  text-align: left;
  margin: 0;
  padding: 0 0;
  margin-bottom: 1rem;
}


.large_post_image_text_holder{
  width: 100%;
  padding: 1rem 1rem;
  margin-top: 1rem;
}


.large_post_image_text{
  color: black;
  font-size: 1rem;
  display: block;
  overflow: auto;
  text-align: center;
}


/***********/

.user_post_header{
    height: 55px;
    line-height: 54px;
    border: 1px solid lightgrey;
    border-bottom: 0px;
    background-color: white;
}

.user_post_header_img_holder{
    height: 40px;
    width: 40px;
    margin-top: 7px;
    background-color: #eee;
    border-radius: 100%;
    display: inline-block;
    margin-left: 20px;
    float: left;
}

.user_post_header_name{
    margin-left: 20px;
    font-size: 15px;
    float: left;
}

.user_post_reply_holder{
    height: 55px;
    line-height: 54px;
    border: 1px solid lightgrey;
    border-top: 0px;
    background-color: white;    
    margin-bottom:40px;
}

.user_post_reply_input{
    height: 100%;
    width: 80%;
    outline: none;
    font-size: 15px;
    padding-left: 15px;
    padding-right: 5px;
    background: none;
    border: none;
    color: black;
    display: inline-block;
    float: left;
}

.user_post_reply_submit{
    height: 100%;
    width: 20%;
    background-color: #eee;
    border-radius: 0px;
    border: 10px solid white;
    margin: 0px;
    display: inline-block;
    font-size: 15px;
    outline:none;
    transition: 0.1s;
    cursor: pointer;
}

.user_post_reply_submit:hover{
    background-color: #e1e1e1;
    transition: 0.2s;
}

.user_post_reply_submit:active{
    background-color: lightgrey;
    transition: 0s;
}

.post_action_holder svg{
    display: inline-block;
    height: 20px;
    float: left;
    margin-right: 20px;
}

.post_action_holder{
    margin-top: 0px;
    cursor: pointer;
    line-height: 20px;
    vertical-align: middle;
    height: 20px;
}

.post_like_count_holder{
    font-weight: 500;
}

.trending_hashtag{
    line-height: 40px;
    font-size: 18px;
    margin-top: 15px;
    background-color: white;
    border-radius: 0px;
    padding: 0px 10px;
}

.trending_word{
    line-height: 40px;
    font-size: 14px;
    margin-top: 15px;
    margin-right: 10px;
    background-color: white;
    border-radius: 0px;
    padding: 0px 10px;
    display: inline-block;
}



.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}



.user_post{
    margin-bottom: 15px;
}



.post_type_text_toolbar{
    padding: 10px;
    margin: 0px;
    background-color: #fafafa;
    border: 1px solid lightgrey;
    border-top: 1px solid #fafafa; 
    font-size: 0px;
    overflow: visible;
}

.toolbar_char_count{
    float: right;
    margin-right: 10px;
    font-size: 15px;
    height: 40px;
    line-height: 40px;
}

.text_editor_tool_image{
    cursor: pointer;
    height: 40px;
    padding: 5px;
    display: inline-block;
    margin: 0px;
    margin-right: 10px;
    background-color: white;
    border-radius: 4px;
    border: 1px solid lightgrey;
    transition: 0.2s;
}

.text_editor_tool_image:hover{
    background-color: #eee;
    transition: 0.2s;
}

.text_editor_tool_image:active{
    background-color: lightgrey;
    transition: 0s;
}


.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  opacity: 0.6;
  
  /* Position the tooltip */
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 50%;
  margin-left: -60px;
  margin-top: 8px;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  font-size: 15px;
}

.small_popup_box_holder{
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 5000;
    background-color: rgba(0,0,0,0.4);
    display: none;
}

.small_popup_box{
    position: relative;
    display: block;
    width: 480px;
    padding: 20px;
    padding-top: 1px;
    margin: auto;
    margin-top: 120px;
    min-height: 100px;
    background-color: white;
    box-shadow: 0 0 5px grey;
}

.small_popup_add_box{
    padding: 5px 10px 5px 10px;
    background-color: #fafafa;
    display: inline-block;
    text-align: center;
    margin: 0px;
    margin-right: 15px;
    margin-top: 20px;
    cursor: pointer;
    border: 1px solid lightgrey;
    transition: 0.2s;
}

.small_popup_add_box:hover{
    background-color: #eee;
    transition: 0.2s;
}

.small_popup_add_box:active{
    background-color: #ffdd00;
    transition: 0.1s;
}

.create_poll_option{
    width: 100%;
    margin-bottom: 5px;
}

.create_poll_option span{
    width: 20%;
    display: inline-block;
    margin-right: 20px;
}

.create_poll_option input{
    width: 60%;
    border-radius: 0px;
    height: 30px;
    border: 1px solid grey;
    padding-left: 5px;
    padding-right: 5px;
}

/*******ADVERTISEMENTS********/
.sidebar_ad{
    width: 100%;
    margin-bottom: 35px;
    min-height: 200px;
    width: 100%;
    padding: 0px;
    box-shadow: 0 0 5px grey;
    display: block;
    cursor: pointer;
}

.sidebar_ad img{
    width: 100%;
}

/********MODERN TABS******/
/* Style the tab */
.tab2 {
  overflow: hidden;
  display: inline-block;
  border: 1px solid lightgrey;
  border-bottom: 0px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  
}

/* Style the buttons that are used to open the tab content */
.tab2 button {
  background-color: inherit;
  float: left;
  outline: none;
  cursor: pointer;
  padding: 6px 16px;
  font-size: 15px;
  margin: 0px;
  transition: 0.3s;
  border: none;
  border-bottom: 5px solid white;
}

/* Change background color of buttons on hover */
.tab2 button:hover {
  transition: 0.3s;
  border-bottom: 5px solid #ffdd00;
}

/* Create an active/current tablink class */
.tab2 button.activetab2 {
  border-bottom: 5px solid #ffdd00;
}

/* Style the tab content */
.tabcontent2 {
  display: none;
  padding: 25px 25px;
  border: none;
  
  border: 1px solid lightgrey;
  margin-top: -1px;
}

/*EXTREMELY LARGE TAB*/
/* Style the tab */
.tabLarge {
  overflow: hidden;
  display: block;
  width: 76vw;
  position: relative;
  background-color: #eee;
  padding: 8px 10px;
  padding-bottom: 0px;
  padding-left: 2vw;
  margin-left: -2vw;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

/* Style the buttons that are used to open the tab content */
.tabLarge button {
  background-color: #ffdd00;
  float: left;
  outline: none;
  cursor: pointer;
  padding: 5px 20px;
  text-align: center;
  font-size: 1rem;
  margin: 0px;
  margin-right: 15px;
  transition: 0s;
  border: none;
  font-weight: 400;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

/* Change background color of buttons on hover */
.tabLarge button:hover {
  transition: 0s;
  background-color: white;
}

/* Create an active/current tablink class */
.tabLarge button.activetabLarge {
  box-shadow: 0 0 5px grey;
  background-color: white;
}

/* Style the tab content */
.tabcontentLarge {
  display: none;
  padding: 0px;
  border: none;
  transition: 0.2s;
  margin-top: 0px;
  padding-top: 15px;
  border-top-right-radius: 50px;
}



/*************COIN CALCULATOR**********/
.calculator_item{
    width: 100%;
    border-radius: 0px;
    height: 62px;
    margin-bottom: 20px;
    background-color: #fdfdfd;
    border: 1px solid #eee;
}

.calculator_item img{
    float: left;
    height: 50px;
    margin: 0px;
    margin-left: 10px;
    margin-right: 15px;
    margin-top: 5px;
    border-radius: 100%;
    box-shadow: 0 0 5px lightgrey;
}

.calculator_item .text_holder{
    height: 100%;
    float: left;
    margin-top: 10px;
}

.calculator_item .text_holder h3{
    font-weight: 500;
    line-height: 25px;
    margin: 0px !important;
    padding: 0px !important;
    font-size: 17px;
}

.calculator_item .text_holder h4{
    font-weight: normal;
    line-height: 15px;
    margin: 0px !important;
    padding: 0px !important;
    font-size: 13px;
}

.calculator_item input[type=number]{
    height: 40px;
    width: 80px;
    padding: 10px;
    font-size: 15px;
    margin-top: 10px;
    margin-left: 20px;
    margin-right: 30px;
    float: right;
    border: 1px solid grey;
    outline: none;
    -moz-appearance: textfield;
}

.calculator_item .calc_plus{
    height: 30px;
    width: 30px;
    float: right;
    margin-left: 15px;
    background-color: #ffdd00;
    line-height: 30px;
    text-align: center;
    margin-top: 15px;
    font-size: 22px;
    cursor: pointer;
    border: none;
    border-radius: 100%;
    margin-right: -5px;
    outline: none;
}

.calculator_item .calc_plus:active{
    background-color: lightgrey;
    transition: 0.1s;
}

.calculator_item input::-webkit-outer-spin-button,
.calculator_item input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.calculator_result{
    width: 100%;
    border: 1px solid lightgrey;
    border-bottom: none;
    border-left: none;
    margin-top: 12px;
    font-size: 15px;
    background-color: white;
    border-collapse: collapse;
    overflow-x: scroll;
}

.calculator_result td, .calculator_result th {
    border-left: 1px solid lightgrey;
    border-bottom: 1px solid lightgrey;
    padding: 5px 5px;
    text-align: center;
}

.calculator_result th {
    font-weight: 600;
    background-color: #ffdd00;
}

.calculator_result td {
    word-break: break-all;
}

.calculator_result .total{
    border-top: 2px solid #ffdd00;
}

.calculator_result td input[type=number]{
    height: 100%;
    border: 0px;
    font-size: inherit;
    background-color: #eee;
    width: 70%;
    padding: 0 5px;
}


/*FORUM*/
.forumEntry{
    padding: 10px;
    border: 1px solid lightgrey;
    margin-bottom: 20px;
    width: 100%;
}

.forumEntry h3{
    margin: 0px;
    padding: 0px;
    font-weight: 400;
    font-size: 18px;
}

.forumEntry h4{
    font-weight: 500;
    margin: 0px;
    margin-top: 5px;
    font-size: 12px;
}

/*SPLASH SCREENS*/
.splashscreen{
    width: 100%;
    padding: 50px;
    background: rgba(255,221,0, 1);
    position: relative;
    overflow:visible;
    background-repeat: no-repeat;
    background-position: right bottom;
    
}

.splashscreen_header{
    font-weight: 400;
    font-size: 55px;
    display: block;
    margin-top: 0px;
    margin-bottom: 20px;
}

.splashscreen_caption{
    font-weight: 400;
    font-size: 20px;
    display: block; 
    margin: 0px;
    margin-bottom: 5px;
}

.splashscreen_search_form{
  position: fixed;
  left: 0px;
  top: 60px;
  margin: 0px;
  display: block;
  z-index: 500;
  width: 100%;
  margin-bottom: 80px;
  border-bottom: 1px solid lightgrey;
}

.splashscreen_search_form_holder{
    height: 40px;
    width: 100%;
}


.splashscreen_search_bar{
 margin: 0px;
 width: 90%;
 border: none;
 border-radius: 0px;
 height: 50px;
 outline: none;
 padding: 0px 20px;
 font-size: 17px;
}

.splashscreen_search_submit{
 margin: 0px;
 width: 10%;
 border: 0px;
 border-left: 1px solid lightgrey;
 border-radius: 0px;
 height: 50px;
 outline: none;
 text-align: center;
 font-size: 17px; 
 display: inline-block;
 padding: 0px;
 cursor: pointer;
 background-color: #fafafa;
 transition: 0.1s;
}

.splashscreen_search_submit:hover{
    background-color: #eee;
    transition: 0.2s;
}

.splashscreen_search_submit:active{
    background-color: lightgrey;
    transition: 0s;
}

/*IMAGE CENTERS*/
.image_center_image{
    margin-bottom: 15px;
    margin-right: 15px;
    float: left;
    height: 230px;
    border: 1px solid lightgrey;
    cursor: pointer;
    opacity: 1;
    background-color: white;
    background-image: url("../../svg/png-back.png");
    background-sizing: 20px;
    
    user-drag: none; 
user-select: none;
-moz-user-select: none;
-webkit-user-drag: none;
-webkit-user-select: none;
-ms-user-select: none;
}

.image_center_image:hover{
    opacity: 0.8;
}

.image_center_image:active{
    opacity: 0.5;
}
 
 /*INVENTORY PAGE*/
 
 /*TOP BAR*/ 
  .body_top_bar{
    background-color: white;
    box-shadow: 0 0 8px lightgrey;
    height: 46px;
    width: 100%;
    padding-left: 20px;
    padding-top: 6px;
    position: fixed;
    left: 0px;
    top: 60px;
    z-index: 5;
  }
  
    /* Style The Dropdown Button */
  .body_dropbtn {
    background-color: white;
    color: black;
    height: 34px;
    line-height: 34px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    margin-right: 10px;
    padding: 0 10px;
    display: inline-block;
  }
  
    .body_dropdown_search_holder{
        display: inline-block;
        float: right;
        position: relative;
        height: 32px;
        width: 325px;
    }
  
    .body_dropdown_search {
        background-color: white;
        color: black;
        height: 30px;
        margin-top: 2px;
        font-size: 13px;
        border: 1px solid lightgrey;
        margin-right: 10px;
        padding-left: 15px;
        padding-right: 15px;
        width: 300px;   
        outline: none;
        border-radius: 15px;
        float: right;
    }
    
    .body_dropdown_search_holder .body_dropdown_search{
        position: absolute;
        top: 2px;
        left: 15px;
        margin-top: 0;
        margin-left: 0;
        z-index: 2;
    }

    .body_dropdown_search_dropdown{
        position: absolute;
        z-index: 1;
        top: 50%;
        left: 30px;
        width: 80%;
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
        padding: 1rem;
        padding-top: 1.5rem;
        background-color: white;
        box-shadow: 0 0.1rem 0.3rem silver;
        border-top: 0;
        display: none;
        max-height: 60vh;
        overflow: auto;
    }


  /* The container <div> - needed to position the dropdown content */
  .body_dropdown {
    position: relative;
    display: inline-block;
    vertical-align:top;
  }
  
  .body_dropdown .disabled, .body_dropdown .disabled:hover, .body_dropdown .disabled:active{
      opacity: 0.4;
      cursor: not-allowed !important;
      background-color: #fafafa !important; 
  }
  
  .body_dropdown .divider{
    border-top: 1px solid lightgrey;  
  }
  
    .body_dropdown .icon{
      height: 15px;
      margin: 0px;
      margin-right: 5px;
      display: inline-block;
  }
  
  .body_dropdown .divider_b{
    border-bottom: 1px solid lightgrey; 
  }

  /* Dropdown Content (Hidden by Default) */
  .body_dropdown-content {
    display: none;
    position: absolute;
    background-color: #fafafa;
    width: 220px;
    box-shadow: 0px 4px 16px 0px rgba(0,0,0,0.3);
    z-index: 10;
  }

  /* Links inside the dropdown */
  .body_dropdown-content button, .body_dropdown-content a, .body_dropdown-content h5{
    color: black;
    padding: 8px 13px;
    text-decoration: none;
    display: block;
    border: 0px;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-size: 15px;
    background-color: inherit;
    margin: 0px;
    outline: none;
  }
  
  .body_dropdown-content h5{
      font-weight: 500;
      background: none;
  }

  /* Change color of dropdown links on hover */
  .body_dropdown-content button:hover, .body_dropdown-content a:hover {
    background-color: #eee !important;
  }
  
  .body_dropdown-content button:active, .body_dropdown-content a:active {
      background-color: lightgrey !important;
    }

  /* Show the dropdown menu on hover */
  .body_dropdown:hover .body_dropdown-content {
    display: block;
  }

  /* Change the background color of the dropdown button when the dropdown content is shown */
  .body_dropdown:hover .body_dropbtn, .body_dropbtn:hover {
    background-color: #ffdd00;
  }
  
  /*SIDE DROPDOWN*/
  .body_dropdown-side{
    width: 200% !important;
    display: block !important;
    vertical-align: top !important;
    position: relative;
  }
  
  .body_dropdown-side .arrow{
      height: 8px;
      margin-left: 8px;
  }
  
  .body_side_dropbtn{
    width: 50% !important;  
    margin: 0px !important;
    transition: padding 0.2s;
  }
  
  .body_dropdown-content-side{
      width: 50% !important;
      display: none;
      position: absolute;
      top: 0px;
      right: 0px;
      
    background-color: #fafafa;
    width: 160px;
    box-shadow: 0px 4px 16px 0px rgba(0,0,0,0.3);
    z-index: 13;
  }
  
  .body_dropdown-side:hover > .body_dropdown-content-side{
      display: block !important;
  }
  
  .body_dropdown-side:hover > .body_side_dropbtn{
      background-color: #eee;
      padding: 15px 13px !important;
      transition: padding 0.2s;
  }
  
  
  
  
  
 /*SIDEBAR*/ 
 
 /*SIDEBAR TAB*/
    .sidebar_tab_button{
        height: 43px;
        width: 43px;
        padding: 10px;
        object-fit: contain;
        background-color: #eee;
        float: left;
        border:none;
        cursor: pointer;
    }

    .sidebar_tab_button:hover{
        background-color: white !important;
    }

    .sidebar_tab_button:active, .sidebar_tab_button_active{
        background-color: white !important;
    }
    
    .sidebar_tab_button_notify{
        border-bottom: 4px solid #ffdd00;
    }

    .sidebar_tab{
      display: none;
      background-color: white;
      clear: both;
      padding: 20px;
    }
    
    div.sidebar_tab_active{
      display:block;  
    }
 
 .tab-sidebar-content{
     margin-top:46px;
     margin-right:340px;
 }
 
 /*GENERAL SIDEBAR*/
 .body_sidebar{
     width: 340px;
     padding: 20px;
     height: calc(100% - 105px);
     position: fixed;
     top: 105px;
     right: 0px;
     z-index: 4;
     border-left: 1px solid silver;
     background-color: white;
     overflow: auto;
 }

 .full_textarea{
    width: 100%;
    border: 1px solid lightgrey;
    border-radius: 0px;
    resize: vertical;
    padding: 5px 10px;
    line-height: 23px;
    font-size: 15px;
    min-height: 33px;
    outline:none;
 }
 
 .body_sidebar_section{
     display: none;
 }
 
 div#content{
     margin-top: 46px;
     margin-right: 340px;
 }
 
 .full_textarea_name{
     margin-top: 20px;
     margin-bottom: 6px;
     font-size: 16px;
     font-weight: 500;
 }

/*CUSTOM INPUT LABELS WITH IMAGES*/
 
 .image-selection-box img{
  height: 60px;
  width: 60px;
  
  margin: 5px;
  margin-top: 9px;
  
  object-fit: contain;
 }
 
 .image-selection-box span{
   font-size: 12px;
   margin-bottom: 5px;
   display: block;
   text-align: center;
 }

 .image-selection-box{
     margin-right: 10px;
     margin-bottom: 10px;
     display: inline-block;
     vertical-align: top;
     cursor: pointer;
     
     background-color: inherit; 
     border-radius: 8px;
 }
 
  .image-selection-box:hover{
     background-color: #eee;
     transition: 0.1s;
 }
 
  .image-selection-box:active{
     background-color: lightgrey;
  }
 
 input[type="radio"]:checked + .image-selection-box, input[type="checkbox"]:checked + .image-selection-box {
     background-color: lightgrey;
     transition: 0.2s;
     box-shadow: 0 0 8px #eee;
 }
 
 .custom-selection-holder input{
     display: none;
 }
 
  .custom-selection-holder{
      margin-top: 5px;
  }
 
 /*EDITOR BUTTONS*/
.large_finish_button{
    padding: 6px 10px !important;
    background-color: white;
    border-radius: 5px !important;
    border: 1px solid silver;
    display: inline-block;
    font-size: inherit;
    cursor: pointer;
    margin-right: 10px;
    margin-bottom: 10px;
    transition: 0.1s;
    outline: none;
    box-shadow: 0 0 5px lightgrey;
}

.large_finish_button:hover {
    background-color: lightgrey;
    transition: 0.1s;
}

.large_finish_button:active {
    transition: 0.1s;
    box-shadow: 0 0 8px grey;
 }
 
 
 /*normal button*/
.large_button{
    padding: 10px !important;
    background-color: #fafafa;
    border-radius: 0px !important;
    display: inline-block;
    border: 1px solid lightgrey;
    font-size: inherit;
    cursor: pointer;
    margin-right: 10px;
    margin-bottom: 10px;
    transition: 0.2s;
    outline:none;
}

.large_button:hover {
    background-color: #eee;
    transition: 0.2s;
}

.large_button:active {
    background-color: #ffdd00;
    transition: 0s;
}

/*OTHER INVENTORY THINGS*/

.inventory-modal{
  padding: 2rem;
  background-color: white;
  vertical-align: top;
}


.inventory-modal h2, .inventory_header{
    margin: 0px;
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 400;
    padding: 0.3rem 0;
    text-decoration: italic;
    border-bottom: 0.1rem solid black;
    font-family: 'Roboto Slab' !important;
    
} 

.modal-box{
 display: inline-block;
 margin-right: 3rem;
 margin-bottom: 1rem;
 cursor: pointer;
 vertical-align: top;
}

.modal-box:hover{
    background-color: #eee;
    box-shadow: -1rem 0px 0px 0px #eee, 1rem 0px 0px 0px #eee;
}

.modal-box:active{
    background-color: lightgrey;
    box-shadow: -1rem 0px 0px 0px lightgrey, 1rem 0px 0px 0px lightgrey;    
    transition: 0.2s;
}

 input[type="radio"]:checked + .modal-box, input[type="checkbox"]:checked + .modal-box {
     background-color: lightgrey;
     box-shadow: -1rem 0px 0px 0px lightgrey, 1rem 0px 0px 0px lightgrey;  
     transition: 0s;
 }
 
 .inventory-modal input{
     display: none;
 }

.modal-box img{
    height: 100px;
    width: 7rem;
    object-fit: contain;
    margin: 0.7rem 0px;
}

.modal-box p{
    padding: 0;
    margin-bottom: 0.7rem;
    text-align: center;
    font-size: 0.8rem;
    line-height: 16px;
    width: 7rem;
    max-height: 6rem;
    white-space: normal;
    overflow: hidden;
}
 
/*ADDING AN ITEM*/
    
    
    .item_input_group{
        width: 100%;
        margin: 1.5rem 0;
        margin-top: 1.8rem;
        padding: 0.1rem 0;
    }
    
    .item_input_group h3{
        font-weight: 300;
        font-size: 2rem;
        margin: 0;
        padding: 0;
    }
    
    .item_input_group p.desc{
        margin: 0.4rem 0;
    }
    
    .item_input_group .mainTabLink{
        display: inline-block;
        clear: both;
        color: black;
        font-weight: 400;
        padding: 0.2rem 0.5rem;
        border: 1px solid #ffdd00;
        border-radius: 5px;
    }
    
    .add_item_input{
        padding: 0;
        padding-top: 0.5rem;
        padding-bottom: 0.4rem;
        margin-bottom: 1rem;
        display: inline-block;
        width: 100%;
        vertical-align: top;
        position: relative;
    }
    
    .add_item_input h5{
        font-size: 0.9rem;
        font-weight: 500;
        margin: 0;
        padding: 0;
    }
    
    .add_item_input input{
        background: none;
        padding: 0;
        border-radius: 0;
        height: 2rem;
        font-size: 1rem;
        display: block;
        width: 100%;
        border: none;
        border-bottom: 2px solid grey;
        outline: none;
    }
    
    label.add_item_input input:focus{
        border-bottom-color: #ffdd00;
    }
    
    .add_item_input input[focused="1"]:not(:focus):placeholder-shown{
        border-bottom: 2px dashed orange;
    }

    .add_item_input input[focused="1"]:invalid{
        border-bottom: 2px solid red;
    }
    
    
    .add_item_input input:not(:placeholder-shown){
        border-bottom: 2px solid lime;
    }
    
    .add_item_input_text{
        font-size: 0.7rem;
        line-height: 0.8rem;
        height: 0.8rem;
        margin: 0;
        padding: 0;
        margin-top: 0.1rem;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
        width: 80%;
    }
    
    .add_item_input_text:not(:empty)::before{
        content: "Desc: ";
        font-weight: 500;
    }
    
    .add_item_input[focused="1"] .add_item_input_text:not(:empty){
        text-overflow: normal;
        white-space: normal;  
        background-color: white;
        border: 1px solid lightgrey;
        border-radius: 5px;
        position: absolute;
        top: 99%;
        top: calc(100% - 0.3rem);
        left: 0;
        padding: 0.8rem;
        height: auto;
        font-size: 0.8rem;
        line-height: normal;
        width: 85%;
        z-index: 500;
    }
    
    .add_item_input[focused="1"] .add_item_input_text:not(:empty)::before{
        content: "Description";
        font-weight: 500;
        display: block;
        margin-bottom: 0.1rem;
    }
    
    .add_item_input[focused="1"][textEmpty="0"], .add_item_input[hovering="1"][textEmpty="0"]{
        margin-bottom: 1.9rem;
    }

    .add_item_input textarea{
        display: block;
        clear: both;
    }
    
    .add_item_input_textarea{
      display: block;  
    }
    
    .add_item_input_suggestions{
        margin-top: 0.3rem;
        margin-bottom: 0.1rem;
        overflow: auto;
        max-height: 7rem;
        width: 100%;
    }
    
    /*CUSTOM SCROLLBAR*/
    /* width */
    .add_item_input_suggestions::-webkit-scrollbar {
        height: 0.7rem;
    }

    /* Track */
    .add_item_input_suggestions::-webkit-scrollbar-track {
        background: #eee;
    }

    /* Handle */
    .add_item_input_suggestions::-webkit-scrollbar-thumb {
        background: #ffdd00;
        border-radius: 3.5rem;
    }

    /* Handle on hover */
    .add_item_input_suggestions::-webkit-scrollbar-thumb:hover {
        background: #ffae00;
    }
    
    .add_item_input_suggestion{
        background-color: white;
        border-radius: 5px;
        padding: 0.05rem 0.2rem;
        font-size: 0.9rem;
        display: inline-block;
        margin-right: 0.4rem;
        margin-bottom: 0.3rem;
        outline: none;
    }
    
    .add_item_input_suggestion:hover{
        background-color: lightgrey;
    }
    
    /*INVENTORY SUGGESTION BOX*/
    .similarSuggestionBox{
        padding: 10px;
        margin-bottom: 1.1rem;
        border: 1px solid lightgrey;
        cursor: pointer;
    }
    
    .similarSuggestionBox:hover{
        background-color: #eee;
    }
 
    .similarSuggestionBox:active{
        background-color: lightgrey;
    }
    
    .similarSuggestionBox Img{
        width: 100px;
        height: 100px;
        object-fit: contain;
        margin-right: 14px;
        float: left;
    }
    
    .similarSuggestionBox .detailBox{
       float: left; 
       font-size: 15px;
    }
    
    .similarSuggestionBox button, .full_width_button{
        margin-top: 15px;
        background-color: #fafafa;
        border-radius: 5px;
        font-size: 1rem;
        font-weight: 500;
        padding: 5px;
        border: 1px solid grey;
        outline: none;
        transition: 0.2s;
        clear: both;
        width: 100%;
        cursor:pointer;
    }
    
    .similarSuggestionBox button:hover, .full_width_button:hover{
        background-color: #eee;
        transition: 0.2s;
    }
        
    .similarSuggestionBox button:active, .full_width_button:active{
        background-color: lightgrey;
        transition: 0.1s;        
    }
 
 
 /*MESSAGES*/
 

.message-profile{
    border-bottom: 1px solid lightgrey;
    width: 100%;
    clear: both;
    overflow: hidden;
    cursor: pointer;
    transition: background-color 0.2s;
    font-size: 15px;
    font-weight: 300;
}

.message-profile:hover{
 background-color: #eee;   
 transition: background-color 0.2s;
}

.message-profile:active{
    background-color: lightgrey;
    transition: background-color 0.1s;
}

.message-profile_image{
height: 40px;
width: 40px;
border-radius: 100%;
background-color: #ffdd00;
overflow: hidden;
margin: 7px;
float: left;
margin-right: 3px;
}

.message-profile_image > img{
    height: 100%;
}

.message-profile_text{
    float: left;
    font-size: 1em;
    line-height: 20px;
    margin: 10px;
    padding: 0px;
}

.message-bell{
    float: left;
    height: 25px;
    margin-left: 0px;
    margin-top: 10px;
}

/*Select a Searched for user*/
div.message-userSearch{
    padding:7px 10px;
    font-size: 10px;
    line-height: 20px;
    border:none;
    border-bottom:1px solid lightgrey;
    font-weight:300;
    margin-bottom:0px;
    cursor:pointer;
}

div.message-userSearch:hover{
    background-color: lightgrey;
}

div.message-userSearch img{
    width:30px;
    height:30px;
    margin-top:5px;
    border-radius:100%; 
}

.removeX{
   float: right;
   color: red;
   line-height: 30px;
   margin-top: 5px;
   font-size: 24px;
   padding-left: 10px;
   padding-right: 10px;
   cursor: pointer;
   display: inline-block;
}

.removeX:hover{
   color: pink;
}

/*SEND MESSAGE BOX*/

.bottom-message-bar{
    position:fixed;
    bottom:0px;
    left:0px;
    height:55px;
    width:100%;
    box-shadow: 0 0 5px lightgrey;
    z-index: 1;
    padding: 10px;
    padding-right: 350px;
    background-color: white;
}

.bottom-message-bar-input{
    width: 70%;
    height: 35px;
    border: 1px solid silver;
    border-radius: 35px;
    outline: none;
    padding: 0px 15px;
    font-size: 15px;
    font-weight: 400;
    float: left;
    position: static;
}

.bottom-message-bar-send{
    width: 10%;
    margin-left:1.5%;
    height: 35px;
    border: none;
    border-radius: 35px;
    outline: none;
    padding: 0px 15px;
    font-size: 14px;
    font-weight: 500;
    background-color: #ffdd00;
    cursor: pointer;
    float: left;
    position: static;
}

.bottom-message-bar-send:hover{
    background-color: #ffc400;
}

.chatMessage{
    margin: 20px;
    margin-top: 3px;
    margin-bottom: 20px;
    padding: 7px 15px;
    font-size: 1em;
    font-weight: normal;
    clear: both;
    border-radius: 10px;
    
    max-width: 60%;
    position: relative;
}

.sentMessage{
    float: left;
    background-color: #ffdd00;
}

.sentMessage .messageHandle{
    height: 14px;
    width: 40px;
    position: absolute;
    bottom: -13px;
    left: -10px;
}

.receivedMessage{
    float: right; 
    background-color: #eee;
}

.receivedMessage .messageHandle{
    height: 14px;
    width: 40px;
    position: absolute;
    bottom: -13px;
    right: -10px;
}

.sent-message-user-details{
    display: block;
    font-size: 0.7em;
    color: lightgrey;
    float: left;
    clear: both;
    max-width: 60%;
    margin-left: 20px;
}

.receive-message-user-details{
    display: block;
    font-size: 0.7em;
    color: lightgrey;
    float: right;
    text-align: right;
    clear: both;
    max-width: 60%;
    margin-right: 20px;
}

/*CATALOG TABLES*/

.catalogTable{
    border: 1px solid lightgrey;
    font-size: 1rem;
    margin-top: 1rem;
    overflow-x:scroll;
    overflow-y: hidden;
}

.catalogTable table{
    border-collapse: collapse;
    min-width: 100%;
}

.catalogTable tr{
    font-size: 1em;  
    cursor: pointer;
}

.catalogTable tr:hover{
    background: linear-gradient(90deg, rgba(255,221,0,1) 0%, rgba(251,255,0,1) 100%); 
    text-decoration: underline;
}

.catalogTable tr:nth-child(odd) {
  background-color: #eee;
}

.catalogTable td{
    text-align: left;
    font-size: 1em; 
    padding: 0;
}

.catalogTable td.priceHold{
    text-align: center;
    padding: 0;
    margin: 0;
}

.catalogTable td a{
    color: black;
    padding: 0.85rem 1.2rem;
    display: block;
}

.catalogTable th *, .catalogTable td *, .catalogTable td, .catalogTable th{
    white-space: nowrap;
}

.catalogTable th{
    padding: 0.4rem 1.2rem;
    font-size: 1em;
    text-align: left;
    font-weight: 500;
    background-color: lightgrey;
}

.catalogTable .header_row{
}

.catalogTable .desc{
    width: 8rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding: 0;
}


.catalogTable .desc:empty::after{
    content: "None";
    color: silver;
}

.catalogTable .price:empty::after{
    content:"-";
    color: silver;
}

/*****************
**
**ITEM
**TABLES
**
****************/

.itemTable{
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 2rem;
}

.itemTable tr{
   width: 100%; 
} 

.itemTable tr td:nth-child(1){
    text-align: right;
    font-family: 'roboto slab', serif;
    width: 40%;
    background-color: #eee;
} 

.itemTable tr td:nth-child(2){
    width: 60%;
} 

.itemTable td{
    padding: 0.3rem 1rem;
    font-size: 1rem;
    border: 1px solid lightgrey;
    vertical-align: middle;
    overflow: visible;
    position: relative;
} 

.itemTable td .icon{
    height:2rem;
    vertical-align: middle;
    margin-left: 2rem;
}

.itemTable td .tip:not(:empty){
    font-size:0.9rem;
    display:block;
    padding: 0.2rem 0;
}

.itemTable td:empty::before{
    content: '-';
    color: grey;
}

.itemTable .price{
    transition: 0.2s;
    cursor: pointer;
}

.itemTable .price:hover{
    transition: 0.2s;
    background-color: #eee;
}

.itemTable .price:active{
    transition: 0s;
    background-color: lightgrey;
}

.itemTable .price:empty::before{
    content: '-';
    color: grey;
}

.itemTable .price:not(:empty)::before{
    content: '$';
}

/*Item Table Inputs*/

.itemTable input:not(.notText){
    width: 100%;
    height: 2rem;
    outline: none;
    padding: 0 0.5rem;
    border: 1px solid grey;
    border-radius: 2px;
    font-size: 1rem;
    margin: 0.3rem 0;
    padding-right: 2.4rem;
    font-family: helvetica, 'poppins';
}

.itemTable input:not(.notText)::placeholder{
    font-weight: 400;
}

.itemTable .input-name{
    font-size: 0.8rem;
    color: dimgrey;
    display:block;
    margin-top: 0.2rem;
}

.itemTable .radioHolder{
    display: block;
    margin: 0.4rem 0;
    padding: 0rem;
    cursor: pointer;
    border-radius: 4px;
}

.itemTable .radioHolder:hover{
    background-color: #eee;
}

.itemTable .radioHolder:active{
    background-color: lightgrey;
}

.itemTable input[type="radio"], .itemTable input[type="checkbox"]{
    height: 1.5rem;
    width: 1.5rem;
    vertical-align: middle;    
    cursor: pointer;
    margin-right: 1rem;
    margin-left: 0;
}

.itemTable textarea{
    width: 100%;
    height: 6rem;
    resize: vertical;
    outline: none;
    padding: 0.5rem;
    border: 1px solid grey;
    border-radius: 2px;
    font-size: 1rem;
    margin: 0.3rem 0;
}

.itemTable .inputButton, .itemTable select{
    width: 100%;
    font-size: 1rem;
    padding: 0.3rem;
    margin: 0.5rem 0;
    border: 1px solid silver;
    border-radius: 2px;
    cursor: pointer;
    outline: none;
}

.itemTable .inputButton:active{
    background: silver;
}

.itemTable select.suggestions{
    padding: 0;
    height: 2rem;
    width: 2rem;
    border: 1px solid grey;
    border-left: none;
    border-radius: 0;
    background: #ffdd00;
    margin: 0;
    position: absolute;
    top: 0.3rem;
    right: 0;
    color: #ffdd00;
    z-index: 1;
}

.itemTable select.suggestions:hover{
    background-color: #ff0000;
    color: #ff0000;
}

.itemTable .suggestions-cover{
    padding: 0;
    height: 2rem;
    width: 2rem;
    border: 1px solid grey;
    border-left: none;
    border-radius: 0;
    background: #ffdd00;
    margin: 0;
    position: absolute;
    top: 0.3rem;
    right: 0;
    color: #ffdd00;
    z-index: 2;
    cursor: pointer;
    pointer-events: none;
    opacity: 0.8;
}

.itemTable .suggestions-cover img{
    height: 40%;
    width: 40%;
    margin: 30%;
    object-fit: contain;
}

.itemTable .numPad{
    float: left;
    display: block;
    position: absolute;
    top: 0.3rem;
    right: 0;
    height: 2rem;
    width: 2rem;
    overflow: visible;
}

.itemTable .numPadButton{
    height: 2rem;
    width: 2rem;
    border: 1px solid grey;
    border-left: none;
    background-color: #ffdd00;
    z-index:50;
}

.itemTable .numPadButton img{
    height: 80%;
    width: 80%;
    margin: 10%;
    object-fit: contain;
}

.itemTable .numPadButton:hover{
    background: #ffae00;
}

.itemTable .numPadContent{
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    box-shadow: 0 0 8px silver;
    border: 1px solid silver;
    border-top: 0;
    padding: 0.5rem;
    width: 9.5rem;
    z-index:100;
}

.itemTable .numPad:hover .numPadContent{
    display: block;
}

.itemTable .numPadContent .option{
    height: 2rem;
    width: 2rem;
    font-size: 1.1rem;
    background-color: white;
    margin: 0.25rem;
    border: 1px solid grey;
    border-radius: 3px;
    display: inline-block;
}

.itemTable .numPadContent .option:hover{
    box-shadow: inset 0 0 0.4rem silver;
}

.itemTable .numPadContent .option:active{
    background-color: #eee;
}
/*General Input Button*/
.input-general-button{
    margin-top: 0.2rem;
    height: 1rem;
    padding: 0;
    background: none;
    border: none;
    margin-right: 0.7rem;
    position: relative;
}

.input-general-button:hover{
    background: lightgrey;
    border-radius: 2px;
    box-shadow: 0 0 0 0.3rem lightgrey;
}

.input-general-button img{
    height: 100%;    
}

.input-general-button-tooltip{
    position: absolute;
    z-index: 1000;
    top: 170%;
    left: -0.3rem;
    margin: 0;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 5px;
    min-width: 10rem;
    text-align: left;
    display: none;
}

.input-general-button:hover .input-general-button-tooltip{
    display: inline-block;    
}

/*DEPENDENT INPUT*/
.dependent-input{
    display: none;
}

.dependent-input td:nth-child(1){
    background: pink !important;
}

/*PLAIN ITEM TABLE*/

.basicItemTable{
    
}

.basicItemTable td{
    border: hidden;
    background: transparent;
    padding: 1.5rem;
}

.basicItemTable tr{
    margin-bottom: 1rem;
}

.basicItemTable tr td:nth-child(1){
    border-radius: 5px;   
    font-weight: bold;
    font-size: 1.2rem;
}

.divider{
    margin: 1rem 0;
    border-top:1px solid grey;
}

/*****PRINCING DETAILS BOX********/

.item-pricing-details{
    display: none;
    position: fixed;
    top: 10vh;
    left: 20vw;
    width: 60vw;
    height: 80vh;
    z-index: 1000;
    background-color: white;
    box-shadow: 0 0 10rem grey;
    border-radius: 5px;
    border: 1px solid grey;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 2rem;
}

.item-pricing-details .item-pricing-details-close{
    border: none;
    height: 4.5rem;
    width: 4.5rem;
    padding: 0;
    font-size: 3rem;
    background: none;
    position: fixed;
    top: 11vh;
    right: 22vw;
    outline: none;
    color: red;
    transition: 0.2s;
}

.item-pricing-details .item-pricing-details-close:hover{
    transition: 0.2s;
    background-color: pink;
    transform: scale(0.95);
}

.item-pricing-details .item-pricing-details-close:active{
    transition: 0.2s;
    transform: scale(0.85);
}

.item-pricing-details h3{
    margin-top: 0.4rem;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/**PRICING DETAIL RESULTS**/

.popup-pricing-data{
    font-size: 1rem;
    padding: 1rem 0;
    clear: both;
    border-bottom: 1px dashed lightgrey;
}

.popup-pricing-data:first-child{
    border-top: 1px dashed lightgrey;
}

.popup-pricing-data .popup-pricing-data-image{
    float: left;  
}

.popup-pricing-data .popup-pricing-data-image img{
    width: 3rem;
    margin-right: 1rem;
}


.popup-pricing-data .popup-pricing-data-text{
    float: left;    
    padding-left: 1rem;
}

.popup-pricing-data .popup-pricing-data-text > *{
    display:block;
}

.popup-pricing-data .amount-paid{
    font-weight: 600;
}

.popup-pricing-data .data-from{
    font-size: 0.9rem;
}

.popup-pricing-data .data-notes{
    font-size: 0.9rem;
    margin: 0.7rem 0;
    color: black;
}

.popup-pricing-data .data-notes:not(:empty)::before{
    content: 'Notes: ';
}

.popup-pricing-data .data-verified{
    display: block;
    color: green;
    font-size: 0.8rem;
}




/*************/

.dllist dt{
    font-weight: 600;
    clear: both;
    float: left;
    margin-right: 2rem;
    margin-bottom: 0.5rem;
}

.dllist dd{
    float: left;
    margin-left: 0px;
    margin-bottom: 0.5rem;
}

.sidebarSidebar{
    overflow-x:hidden;
    overflow-y:auto;
    width: 100%;
    margin-bottom: 1rem;
}

.sidebarTopbar{
    margin-top:0;
    font-size:1.1rem;
    margin-bottom:1.5rem;
    vertical-align:middle;
}

.sidebarTopbar svg, .sidebarTopbar img{
   width: 2rem;
   vertical-align:middle; 
   cursor: pointer;
}




/*COMMENT PLUGIN*/

.comment-plugin-action-holder{
    line-height: 2rem;   
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.comment-plugin-action-holder *{
    line-height: 2rem; 
    margin-right: 1rem;
    float: left;
    font-size: 1rem;
}

.comment-plugin-action-holder svg, .comment-plugin-action-holder img{
    height: 2rem;    
    max-width: 2rem;
    cursor: pointer;
    transition: 0.2s;
    transform: scale(1);
}

.comment-plugin-action-holder svg:hover, .comment-plugin-action-holder img:hover{
    transition: 0.2s;
    transform: scale(0.9);
}

.comment-plugin-action-holder .comment-plugin-border{
    width: 1px;
    height: 2rem;
    border-left: 1px solid silver;
}

.comment-plugin-action-holder .post_like_count_holder{
    font-weight: 400;    
}

.comment-plugin-action-holder .reply-box{
    width: 100%;    
    margin-top: 1rem;
    margin-right: 0rem;
}

.comment-plugin-action-holder .reply-box .type-comment{
    width: 100%;
    border: none;
    background-color: white;
    padding: 0;
    outline: none;
    margin-right: 0;
    border-bottom: 3px solid #ffdd00;
    padding-bottom: 0.2rem;
    line-height: 1.8rem;
    border-radius: 0;
    resize: none;
    transition: 0.2s;
    overflow: hidden;
    height: 8rem;
    overflow: auto;
}


.comment-plugin-action-holder .comment-options{
    display: block;    
    margin-top: 0.9rem;
    opacity: 1;
    transition: 0.2s;
}

.comment-plugin-action-holder .post-comment{
    height: 2rem;
    padding: 0 1.5rem;
    background-color: #ffdd00;
    outline: none;
    border: none;
}

.comment-plugin-action-holder .post-comment:hover{
    background-color: #ffae00;
}

/*COMMENTS THEMSELVES*/

.plugin-comment{
    margin: 1.5rem 0;
    border-left: 2px solid #ffdd00;
    padding-left: 0.8rem;
    width: 100%;
    counter-reset: img-counter;
}

.plugin-comment address{
    margin: 0;
    padding: 0;
    margin-bottom: 0.3rem;
    font-style: normal;
    font-size: 0.9rem;
    display: block;
    font-weight: 700;
}

.plugin-comment .plugin-comment-text{
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
}

.plugin-comment time{
    margin: 0;
    padding: 0;
    margin-top: 0.3rem;
    font-size: 0.8rem;
    display: block;
    color: grey;
    font-style: italic;
}

.plugin-comment .plugin-comment-options{
    margin-top: 0.5rem;    
}

.plugin-comment .plugin-comment-options > *{
    float: left;
    height: 1.2rem;
    line-height: 1.2rem;
    margin-right: 0.8rem;
    font-size: 0.9rem;
}

.plugin-comment .plugin-comment-options button{
    padding: 0 0.3rem;
    font-weight: 500;
    border: none;
    outline: none;
}

.plugin-comment .plugin-comment-options button:hover{
    background-color: lightgrey;
}

.plugin-comment .plugin-comment-options .close-button{
    display: none;
}

.plugin-comment .plugin-comment-options[focused="1"] .close-button{
    display: block;
}

/*increment image counters*/

.plugin-comment .attached-image-increment::before{
  counter-increment: img-counter;
  content: counter(img-counter);    
}

/*SPECIAL STYLING FOR REPLIES TO COMMENTS*/
.comment-plugin .reply-to-comment{
    width: 90%;
    margin-left: 10%;
    border-left: none;
}

.comment-plugin .comment-reply-to-label{
    background-color: lightgrey;
    padding: 0 0.2rem;
    margin-right: 0.3rem;
    border-radius: 3px;
}

/*REPLY TO, DELETE, and LIKE a COMMENT*/

.plugin-comment .reply-to-comment-box{
    width: 100%;
    margin-right: 0;
    margin-top: 0.6rem;
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: 0.2s;
}

.plugin-comment .plugin-comment-options[focused="1"] .reply-to-comment-box{
    height: auto !important;    
    opacity: 1;
    overflow: auto;
    transition: 0.2s;
}

.plugin-comment .reply-to-comment-box textarea{
    width: 70%;
    border: none;
    border-radius: 0;
    padding: 0;
    border-bottom: 2px solid #ffdd00;
    resize: none; 
    height: 6.5rem;
    font-size: 0.85rem;
}

.plugin-comment .reply-to-comment-box .action-holder{
    display: block;
    margin-top: 0.4rem;
}

.plugin-comment .reply-to-comment-box .action-holder *{
    vertical-align: middle;
}

.plugin-comment .reply-to-comment-box .action-holder button{
    background-color: #ffdd00;
    margin-right: 0.3rem;
    height: auto;
    padding: 0.3rem 1rem;
}

.plugin-comment .reply-to-comment-box .action-holder button:hover{
    background-color: #ffae00;
}

.plugin-comment .reply-to-comment-box .action-holder span{
    margin-left: 0.7rem;
}

.plugin-comment .like-button{
    transform: scale(1);
    transition: 0.2s;
    cursor: pointer;
}

.plugin-comment .like-button:hover{
    transform: scale(0.9);
    transition: 0.2s;
}

/*WARNING MESSAGES*/

.comments-plugin-no-more-comments-warning{
    display: none;
}

.comments-plugin-no-more-comments-warning:first-of-type{
    display: block;
}

/*END OF COMMENT PLUGIN*/




