.card_container{
	display:flex;
	flex-direction: row;
	overflow:hidden;
}

.new_card{
	display:flex;
	align-items: center;
	justify-content: center;
	flex-direction: row;
	font-family:normalFontPopins;
	font-size:13px;
	border-top: 1px #e2e8f0 solid;
	border-left: 1px #e2e8f0 solid;
	border-right: 1px #e2e8f0 solid;
	margin-right:10px;
	padding:5px;
	min-width: 200px;
	transition: 0.5s;
	flex-wrap: nowrap;
	overflow-x: hidden;
    overflow-y: hidden;
    cursor:pointer;
    border-radius: 5px 5px 0px 0px;
}

.left {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    padding-top:85px;
}

.right {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
   padding-top:85px;
}

.cover {
    position: fixed;
    background-color:rgb(241,244,254);
    right:0;
    left:0;
    padding-top: 85px;
    padding: 0px 30px;
    border-bottom: 1px #e2e8f0 solid;
    z-index:998;
}

.new_card_disabled{
	background:rgb(83, 63, 120);
	color:rgb(193,182,217);
}

.new_card_enabled{
	background: rgb(177,163,116);
	color: white;
}

.new_card:first-child{
	margin-right:10px;
}

/*.new_card:hover{
	background:rgb(102,102,102);
	color:white;
}*/