/********************
* デッキ作成画面CSS
*********************/
/** モーダル */
.content{
    margin: 0 auto;
    padding: 0px;
}
.titleName {
	position: relative;
	background: linear-gradient(to right, #0082ff, #aed0ff);
	padding: 8px 5px 8px 30px;
	font-size: 20px;
	font-weight:bold;
	color: white;
	border-radius: 0 5px 5px 0;
}
.titleName:before {
	font-family: "Font Awesome 5 Free";
	content: "\f044";
	display: inline-block;
	line-height: 40px;
	position: absolute;
	padding: 0em;
	color: white;
	background: #0082ff;
	font-weight: 900;
	font-size: 28px;
	width: 53px;
	text-align: center;
	height: 53px;
	line-height: 50px;
	left: -30px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	border-radius: 50%;
	box-shadow: 0px 2px 1px rgba(0, 0, 0, 0.29);
	border-bottom: solid 2px #4967b4;
}
.modal{
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100%;
}
.modal__bg{
    background: rgba(0,0,0,0.8);
    height: 100vh;
    position: absolute;
    width: 100%;
}
.modal__content{
    background: #fff;
    left: 50%;
    padding: 20px;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 400px;
}
