

* {
  box-sizing: border-box;
}

.coolBeans {
  border: 2px solid currentColor;
  border-radius: 3rem;
  color: white;
  padding: 10px 0px 10px 0px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  transition: 0.2s transform ease-in-out;
  will-change: transform;
  z-index: 0;
}
.coolBeans::after {
  background-color: #49BEAA;
  color: white;
  border-radius: 3rem;
  content: '';
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-100%, 0) rotate(10deg);
  transform-origin: top left;
  transition: 0.2s transform ease-out;
  will-change: transform;
  z-index: -1;
}
.coolBeans:hover::after {
  transform: translate(0, 0);
}
.coolBeans:hover {
  border: 2px solid transparent;
  color: white;
  transform: scale(1.2);
  will-change: transform;
}





/*.hover:hover {
  background-color: #4CAF50 !important; 
  color: white !important;
}*/

body{

	font-size: 1.25rem;

}

.btn {
	font-size: 1.25rem;
}

.badge{
	color: #FFF;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: 10px;
	background-color: #41A8DE;
	font-size: 100%;
}
.badge2{
	color: #FFF;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: 10px;
	background-color: #ED767A;
	font-size: 100%;
}

#title{
	margin-top: 10px
}

/* mixin for multiline */
#text {
	height: 70;
  /*white-space: nowrap;*/
    overflow: hidden;
    margin-bottom: 10px
    /*text-overflow: ellipsis;
    max-width: 40ch;*/
}

#cardTitle{
	border-radius: 30px;
}

#textandbtn{
	display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#btns{
	display: flex;
    justify-content: space-between;
}



.ellipsis {
	 display: block;
  /* Fallback for non-webkit */
  display: -webkit-box;
  /* Fallback for non-webkit */
  margin: 0 auto;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: wrap;
  text-overflow: ellipsis;
}

.btn{
position: relative;
    right: 0px;
    bottom: 0px;	
}


.textField
{
	height: 38px;
	width: 100%;
	font-size: 15px;
	border : 0.5px solid #CCCCCC;
	background-color: #F4F6F7;
	text-align: start;
	margin-top: 2px;
	padding:11px;
}

.validate
{
	height: 43px;
	width: 100%;
	font-size: 14px;
	color: white;
	font-weight: bold;
	background-color: #00BCD4;
	text-align: center;
	border : 0px;
	margin-top: 30px;
	align-content: 
}

.label
{
	font-size: 12px;
	color: #333333;
	margin-bottom: 0px;
	margin-top: 15px;
	margin-left: 2px;
	height: auto;
}

#total{
	width: 100%;
	background-color: #EEEEEE;
	padding: 20px;
	display: flex;
	flex-direction: column;
}

.totalText{
	font-size: 15px;
	color: #111111;
	font-weight: bold;
}

.loader {
  border: 12px solid #f3f3f3; /* Light grey */
  border-top: 12px solid #41A8DE; /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 1s linear infinite;
}

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

html{scroll-behavior:smooth}

  .back-to-top {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    font-size: 24px;
    padding: 5px;
    cursor: pointer;
    z-index: 1;
  }