/*******************************
* MODAL AS LEFT/RIGHT SIDEBAR
* Add "left" or "right" in modal parent div, after class="modal".
* Get free snippets on bootpen.com
*******************************/
	.modal.left .modal-dialog,
	.modal.right .modal-dialog {
		position: fixed;
		margin: auto;
		width: 80%;
		height: 100%;
		-webkit-transform: translate3d(0%, 0, 0);
		    -ms-transform: translate3d(0%, 0, 0);
		     -o-transform: translate3d(0%, 0, 0);
		        transform: translate3d(0%, 0, 0);
        
	}

	.modal.left .modal-content,
	.modal.right .modal-content {
		height: 100%;
		overflow-y: auto;
        border:none;
        border-radius:0;
	}
	
	.modal.left .modal-body,
	.modal.right .modal-body {
		padding: 0;
	}

/*Left*/
	.modal.left.fade .modal-dialog{
		left: -320px;
		-webkit-transition: opacity 0.3s linear, left 0.3s ease-out;
		   -moz-transition: opacity 0.3s linear, left 0.3s ease-out;
		     -o-transition: opacity 0.3s linear, left 0.3s ease-out;
		        transition: opacity 0.3s linear, left 0.3s ease-out;
	}
	
	.modal.left.fade.in .modal-dialog{
		left: 0;
	}
        
/*Right*/
	.modal.right.fade .modal-dialog {
		right: -320px;
		-webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
		   -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
		     -o-transition: opacity 0.3s linear, right 0.3s ease-out;
		        transition: opacity 0.3s linear, right 0.3s ease-out;
	}
	
	.modal.right.fade.in .modal-dialog {
		right: 0;
	}

/* ----- MODAL STYLE ----- */
	.modal-content {
		border-radius: 0;
		border: none;
	}

	.modal-header {
		border-bottom-color: #EEEEEE;
		background-color: #FAFAFA;
	}

/* ----- v CAN BE DELETED v ----- */
body {
	background-color: #E6E6E6;
}

.demo {
	padding-top: 60px;
	padding-bottom: 110px;
}

.btn-demo {
	margin: 15px;
	padding: 10px 15px;
	border-radius: 0;
	font-size: 16px;
	background-color: #FFFFFF;
}

.btn-demo:focus {
	outline: 0;
}

.demo-footer {
	position: fixed;
	bottom: 0;
	width: 100%;
	padding: 15px;
	background-color: #212121;
	text-align: center;
}

.demo-footer > a {
	text-decoration: none;
	font-weight: bold;
	font-size: 16px;
	color: #fff;
}





/* mypage.css */

#btnMyPageModal{
    background: #8e0000;
    color:#fff;
}

#myModalLabel{
    text-align: center;
    font-weight: bold;
}

#bg_mypage{
    width:100%;
    height: auto;
    margin: 0;
    padding: 0;        
}

#mypage_main{
    position:relative;
}

#mypage_info{
    position:absolute;
    top:0;
    left:0;
    padding:15px;
}

.mypage_label{
    color:white;
    font-size:11px;
}

.mypage_coin{
    color:yellow;
    font-size:13px;
    font-weight: bold;
}

.mypage_coin p{
    display: inline-block;
    font-size:11px;
    font-weight: normal;
}

.mypage_id{
    color:yellow;
    font-size:11px;        
}

.mypage_addr{
    color:white;
    font-size:11px;
}    

#btn_edit{
    position:absolute;
    bottom:10px;
    right:0;
    color:white;
    background: #000;
    border-style: none;
    border-radius: 3px;
    width: 50px;
    height: 20px;
    font-size:10px;
    font-weight: bold;
    margin-right: 10px;
}

#mypage_menu{
    border-bottom:1px solid #f6f6f6;
}

#mypage_menu ul{
    width:100%;
    height:auto;
    margin:0;
    padding-left:20px;
}

#mypage_menu ul li {
    list-style: none;
    width:100%;
    height: 50px;
    margin-bottom:0;
    border-bottom: 1px solid #f6f6f6;
    line-height: 50px;
    position:relative;
    font-size:13px;
}

#mypage_menu ul a:last-child li{
    border-bottom:none;
}

#mypage_menu a{
    color:black;
    text-decoration: none;
}

#mypage_menu hr {
    width:100% !important;
    height: 10px !important;
    background: #f6f6f6 !important;
    margin:0 !important;
    padding:0 !important;
    border: none !important;
}


.icon_arrow{
    width:22px;
    height:22px;
    position: absolute;
    right:10px;
    top:14px;
}

.btn_close{
    width:24px;
    height: 24px;
}

    
    
/* Media Query */
@media screen and (max-width:350px){       
    #mypage_info{        
        line-height:14px;
    }    
     
    .mypage_coin{
        height: 20px;        
        font-size:11px;
    }
}


@media screen and (max-width:360px){   
    #mypage_info{
        padding-top:12px;        
    }
    
    .mypage_label{
        font-size:10px;
        line-height: 14px;
    }
    
}

@media screen and (min-width:768px){   
    #mypage_info{
        padding:25px;        
    }
    
    #mypage_info, .mypage_label{
        font-size:13px;
    }
    
    .mypage_coin{
        font-size:20px;
    }
    
    .mypage_id, .mypage_addr{
        font-size:13px;
    }
}

