@charset "utf-8";

@import url("bootstrap.css");
@import url("font-awesome.css");
@import url("v13-common-style-default.css");
@import url("v13-common-style-webtop.css");

/* 고객명 */

 /** =================================== 
 1.default-change (light-theme)
===================================*/

/* all bg*/
body,
body.webtop {
	background-color: #525252;
    background: url(/public/share/images/main.png) no-repeat center center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

/* all logo*/
.brand,
#credentials_table_header::before,
#interaction_table_header::before,
.main_table table:before,
div#webtop_favorites_outer_container:before,
div#webtop_favorites_outer_container2:before{
    content: url(/public/share/logo/logo.png);
}

/* login-btn-color*/
table#main_table table#credentials_table input.credentials_input_submit, 
input.credentials_input_submit_disabled,
table#main_table table#credentials_table button,
.download_btn {
	color: #ffffff;
	background-color: #3F51B5;
	border-color: #33439a;
}

/* download-btn-color*/
table#main_table table#credentials_table button,
.download_btn {
	color: #ffffff;    
	background-color: #00BCD4;
	border-color: #0097A7;
}

/* color with opacity*/
table#main_table table#credentials_table, 
table#main_table table#interaction_table, 
.main_table {
	background-color: rgba(255, 255, 255, 0.88);
}

/*  webtop-width*/
@media (min-width: 1024px) {
div#webtop_favorites_outer_container,
div#webtop_favorites_outer_container2{
    width: 50%;
    }
}
/** Mobile
===================================*/
@media (min-width: 350px) {
    table#main_table table#credentials_table,
    table#main_table table#interaction_table,
    .main_table,
    div#webtop_favorites_outer_container,
    div#webtop_favorites_outer_container2 {
		border-radius:0px;
	}
}

@media (min-width: 768px) {
    table#main_table table#credentials_table,
    table#main_table table#interaction_table,
    .main_table,
    div#webtop_favorites_outer_container,
    div#webtop_favorites_outer_container2     {
		border-radius:0px;
	}
}

@media (min-width: 1024px) {
    table#main_table table#credentials_table,
    table#main_table table#interaction_table,
    .main_table,
    div#webtop_favorites_outer_container,
    div#webtop_favorites_outer_container2 {
		border-radius:7px; 
    }    
} 
 /** =================================== 
 3-2.contents-add, align-Center
===================================*/
table#main_table table#credentials_table {
    margin-left: calc((100% - 0px)/2);
    border-radius: 0px;
    box-shadow: 0px 10px 13px -12px #777777;
}

.info {
	text-align: left;
	padding: 20px 40px;
	font-size: 15px!important;
	position: absolute;
	width: 500px;
	margin-top: 17vh;
	background: rgba(255, 255, 255, 0.88);
	border-right: 1px solid #464b4c;
	height:520px;
	overflow-y: auto;
	margin-left: calc(((100% - 500px)/2) - 250px);
	box-shadow: 0px 10px 13px -12px #777777;
}

/** Mobile
===================================*/
@media (min-width: 350px) {
    table#main_table table#credentials_table,
    table#main_table table#interaction_table,
    .main_table {
	width: 100%;
	margin-top: 0vh;
	margin-left: 0px;
	box-shadow: none;
	}
	.info {display:none;}
}

@media (min-width: 768px) {
    table#main_table table#credentials_table,
    table#main_table table#interaction_table,
    .main_table {
	width: 100%;
	margin-top: 0vh;
	margin-left: 0px;
	box-shadow: none;
	}
	.info {	display:none;}
}

@media (min-width: 1024px) {
    table#main_table table#credentials_table,
    table#main_table table#interaction_table,
    .main_table {
        width: 500px;
        margin-top: 17vh;
        margin-left: calc((100% - 0px)/2);
    }    
	.info {
		display:block;
		margin-left: calc(((100% - 500px)/2) - 250px);
	}
} 