@import url('https://fonts.googleapis.com/css?family=Merriweather:300,700,300italic,700italic|Source+Sans+Pro:900');
.card {
	background: #F7F7F7;
	border: 1px solid ;
  padding:0.5em !important;
 border-radius: 5px; 
}

.newcard {
	background: #e0e9f9;
	border: 1px solid #ff9554;
 border-radius: 5px; 	
  padding:0.5em !important;
}

.editcard {
	background: #e0e9f9;
  padding:0.5em !important;
}

div.circlednumber {
  border-radius: 0.6em;
  -moz-border-radius: 0.6em;
  -webkit-border-radius: 0.6em;
  border: solid 1px #8b9dc3;
  color: #8b9dc3;
  display: inline-block;
  font-weight: bold;
  line-height: 1.1em;
  text-align: center;
  width: 1.1em; 
}



div.circlednumberhidden {
  border-radius: 0.6em;
  -moz-border-radius: 0.6em;
  -webkit-border-radius: 0.6em;
  border: solid 1px  #ff9554;
  color:  #ff9554;
  display: inline-block;
  font-weight: bold;
  line-height: 1.1em;
  text-align: center;
  width: 1.1em; 
}


#short-time-msg {color: #3B5998;background:#F7F7F7;   border: solid 1px #FF0000; font-size: 0.8em; padding: 0.3em;width=90%; margin: auto;text-align: center;position: fixed; top: 2px;left: 30%;border-radius: 3px;}

input[type="file"] {
  position: absolute;
  left: 0;
  opacity: 0;
  top: 0;
  bottom: 0;
  width: 100%;
}

#uploadlabel {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 95%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3B5998; 
  border: 3px dotted #8b9dc3; 
  border-radius: 10px;
  color: #FFFFFF;

}

label {
  display: inline-block;
  position: relative;
  height: 50px;
  width: 320px;
 margin: auto;   
}

#uploadlabel.dragover {
  border: 3px dotted  #ff9554;
}



table {
  border-collapse: collapse;
}

td, th {
  border-bottom: 1px solid #3B5998;
  padding: 0.6rem;
  text-align: left;
}


.scrollToTopBtn {
  color: #3B5998;
  cursor: pointer;
  font-size: 1.4em;
  box-shadow: none;
  /* place it at the bottom left corner */
  position: fixed;
  bottom: 5px;
  left: 0px;
  /* keep it at the top of everything else */
  z-index: 100;
  /* hide with opacity */
  opacity: 0;
  /* also add a translate effect */
  transform: translateY(100px);
  /* and a transition */
  transition: all .5s ease
}

.showBtn {
  opacity: 1;
  transform: translateY(0)
}

footer {
  display: flex;
  justify-content: flex-end;
  padding: 16px
}



.addnewcardbtn {
  cursor: pointer;
  font-size: 3em;
  box-shadow: none;
  position: fixed;
  top: 38px;
  left: 2px;
  /* keep it at the top of everything else */
  z-index: 100;
  opacity: 1;
  text-decoration: none !important;
  box-shadow: none !important; /* underlying button has a blue border as shadow; remove it */
  
}

.addnewcardbtn:hover {
	animation: pulse 1s infinite; /* based on an idea from https://www.florin-pop.com/blog/2019/03/css-pulse-effect/ */
}

@keyframes pulse {
	0% {
		transform: scale(0.8);
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
	}

	70% {
		transform: scale(1);
		box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
	}

	100% {
		transform: scale(0.8);
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
	}
}



	

/* call to action button */

.button-wrapper {
	display:flex;
	flex-direction: row; 
	justify-content: center;
	flex-wrap: wrap;
	align-items: flex-start; 
	align-content: space-between;
	
}


.button-payment {
	padding: 10px;
	display:flex;
	flex-direction: column; 
	justify-content: center;
	flex-wrap: wrap;
	align-items: center;
	align-content: center;

	
}

@keyframes TransitioningBackground {
  0% {
    background-position: 1% 0%;
  }
  50% {
    background-position: 99% 100%;
  }
  100% {
    background-position: 1% 0%;
  }
}
.subscribe-button {
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  width: 300px;
  height: 60px;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(270deg, #3B5998, #3B5998);
  background-size: 400% 400%;
  animation: TransitioningBackground 10s ease infinite !important;
  transition: 0.6s !important;

}
.subscribe-button::before {
  content: "";
  display: block;
  position: absolute;
  background: rgba(255, 255, 255, 0.5);
  width: 60px;
  height: 100%;
  top: 0;
  filter: blur(30px);
  transform: translateX(-100px) skewX(-15deg);
}
.subscribe-button::after {
  content: "";
  display: block;
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  width: 30px;
  height: 100%;
  top: 0;
  filter: blur(5px);
  transform: translateX(-100px) skewX(-15deg);
}
.subscribe-button:hover {
  background-image: linear-gradient(to left, #3B5998, #3B5998) !important;
  transform: scale(1.1);
  cursor: pointer;
}
.subscribe-button:hover::before, .subscribe-button:hover::after {
  transform: translateX(300px) skewX(-15deg);
  transition: 0.7s;
}



#survcontainer {
    }

#survcontainer #question {
        display: block;
        padding: 5px;
        margin-bottom: 10px;
        padding: 10px;
        font-size: 1em;
    }
    #survcontainer div {
        font-weight: normal;
        background: #B7CCF7;
        margin-bottom: 15px;
        padding: 10px;
        font-size: 1em;
        color: #3B5998;
        border-left: 5px solid #3B5998;
        width: 300px;
        -webkit-border-radius: 0.5em;
        -moz-border-radius: 0 0.5em 0.5em 0;
        border-radius: 0 1.5em 1.5em 0;
    }
    #survcontainer div a {
        border-radius: 0.3em;
        text-decoration: none;
        color: #FFFFFF;
        padding: 5px 15px;
        background: #3B5998;
        margin: 0 20px;
    }
    #survcontainer div a:hover {
        color: #ff9554;
    }
	
	

	
.tablecell  {
	text-align: center; 
	border: thin solid #3B5998;
	vertical-align: middle;
}

.tablecell a {
  display: block;
}

.tablecell:hover {
  background: #F7F7F7;
  cursor: pointer;
}	



@keyframes wiggle {
    0% { transform: rotate(0deg); }
   80% { transform: rotate(0deg); }
   85% { transform: rotate(5deg); }
   95% { transform: rotate(-5deg); }
  100% { transform: rotate(0deg); }
}
div.wiggle {
  display: inline-block;
  animation: wiggle 2.5s infinite;
}

div.wiggle:hover {
  animation: none;
}


.numberCircle {
    width: 50%;
    height: 1.4em;
    margin: 1em auto;
    margin-left: auto;
    margin-right: auto;	
    border-radius: 20%/50%;
    background-color: #3B5998;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 10px;
	padding-right: 10px;
  color: #FFFFFF;
  font-weight: bold;
  font-size: 1.4em;
  text-align: center;

}

.icontext {
 font-size: 0.4em;
 line-height: 1em;
 display: inline-block;

   text-align: center;
  vertical-align: middle;
}

.icontextorange {
 font-size: 0.4em;
 line-height: 1em;
 display: inline-block;
 color: #ff9554;
   text-align: center;
  vertical-align: middle;
}



.badge{
	font-size: 0.8em;
	color:#ff9554;
    border-radius: 50%;
    padding-left:10px;
}


#chatbox {
	text-align:left;
	margin:0 auto;
	margin-bottom:15px;
	padding:5px;
	background:#B7CCF7;
	height: 300px;
	overflow:auto; }

#votebox {
	text-align:left;
	margin:0 auto;
	margin-bottom:15px;
	padding:5px;
	background:#B7CCF7;
	height: 500px;
	overflow:auto; }

	
.existingcommentsdate {
	padding:1px;
	color:#3B5998;
	font-size:0.7em;
	padding-right: 5px;
}	

.existingcommentsname {
	padding:1px;
	color:#ff9554;
	font-size:0.8em;
	padding-right: 5px;
}	

.existingcommentscomment {
	padding:1px;
	font-size:1em;
	color:#3B5998;	
	padding-right: 5px;
}	

.voteentry
 {
	font-size: 1em;
	color: #3B5998;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
	padding: 5px;
	line-height: 1.6em;
	background: #e0e9f9;
	margin-bottom: 10px;
	text-decoration: none !important;
	border: 1px solid #3B5998;
	border-radius: 5px;

 }

.votescore
 {
    border-radius: 50%;
    padding: 4px;

    background: #B7CCF7;
    border: 1px solid #3B5998;
    color: #3B5998;
    text-align: center;

 }	
 

.bignumbertext {
     text-transform: uppercase;
	text-align: center;	 
    font-family: verdana;
    font-weight: 900;
    color: #3B5998;

}




 /* Dropdown Button from https://www.w3schools.com/howto/howto_css_button_split.asp*/
.ddbtn {
  background-color: #3B5998;
  color:  #FFFFFF !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  font-size: 0.8em;
  padding-left: 5px !important;
  padding-right: 5px !important;
  

}


.ddbtntopmenu {
  background-color: #3B5998;
  color: #FFFFFF  !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  position: absolute;
  top: -10px;

}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: absolute;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  top: 15px;
  background-color: #B7CCF7;
  min-width: 120px;
  font-size: 0.9em;
		font-family: "Source Sans Pro", Helvetica, sans-serif;
  text-transform: uppercase;
  white-space: nowrap;
  font-weight: 300 !important;
  z-index: 200;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: #3B5998;
  padding: 8px 8px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ff9554;color: #B7CCF7}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.ddbtn:hover, .dropdown:hover .ddbtn  {
  background-color: #ff9554;
  color: #B7CCF7 !important; 
} 


/* Dropdown Content in top menu bar (Hidden by Default) */
.dropdownmenubar-content {
  display: none;
  position: absolute;
  background-color: #DFE3EE;
  min-width: 120px;
  font-size: 0.9em;
	font-family: "Source Sans Pro", Helvetica, sans-serif;
  text-transform: uppercase;
  white-space: nowrap;
  font-weight: 300 !important;
  z-index: 1;
}

/* Links inside the dropdown */
.dropdownmenubar-content a {
  color: #3B5998;
  padding: 8px 8px;
  text-decoration: none;
  display: block;
}



/* Change color of dropdown links on hover */
.dropdownmenubar-content a:hover {background-color: #ff9554;color: #B7CCF7; }

/* Show the dropdown menu on hover */
.dropdownmenubar-content {
  display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.ddbtn:hover, .dropdown:hover .ddbtn  {
  background-color: #ff9554;color: #B7CCF7; 
} 

      /* Always set the map height explicitly to define the size of the div
       * element that contains the map. */
      #map {
        height: 100%;
      }
  
  


.fontsize80p {
	font-size:0.8em;
}	

.paddingtop {
	padding-top: 20px;
}	

.text-shine
 {
	font-weight: 900;
	font-size: 2.2em;
	color: #FFFFFF;
	font-family: "Source Sans Pro", Helvetica, sans-serif;

}

.inputfield {
	height: 2em !important;
	line-height: 2em !important;
	font-size: 0.9em !important;
	font-family: inherit;
   font-weight:300;
	padding-left: 5px;
	padding-right: 5px;
	box-sizing: border-box;
}	

.lightgreybackground{
	  background-color: #B7CCF7;
	  padding: 5px;
}



.pulse {

  width: 0.8em;
  height: 0.8em;
  margin-top: 0.4em;
  border-radius: 50%;
  vertical-align: center;
  display: inline-block; 
  background: #ff9554;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(204,169,44, 0.4);
  animation: pulse 3s infinite;
  margin-left: 5px;
  float: right;
}
.pulse:hover {
  animation: none;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
  }
  70% {
      -webkit-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
  }
  100% {
      -webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
    box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
  }
  70% {
      -moz-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
      box-shadow: 0 0 0 10px rgba(204,169,44, 0);
  }
  100% {
      -moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
      box-shadow: 0 0 0 0 rgba(204,169,44, 0);
  }
}

