@charset "utf-8";
@font-face {
  	font-family: "Linotype-HelveticaNeueLTPro-Bd";
  	font-weight: normal;
  	font-style: normal;
  	src: url("/protocol/fonts/Linotype-HelveticaNeueLTPro-Bd.woff2") format("woff2"), 
    	url("/protocol/fonts/Linotype-HelveticaNeueLTPro-Bd.woff") format("woff"), 
    	url("/protocol/fonts/Linotype-HelveticaNeueLTPro-Bd.otf") format("opentype");
}
@font-face {
  	font-family: "NotoSansCJKkr-Bold";
  	font-weight: bold;
  	font-style: normal;
  	src: url("/protocol/fonts/NotoSansCJKkr-Bold.woff2") format("woff2"), 
    	url("/protocol/fonts/NotoSansCJKkr-Bold.woff") format("woff"), 
    	url("/protocol/fonts/NotoSansCJKkr-Bold.otf") format("opentype");
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
}

header {
    /*
    background-color: #c6dcea;
    */
    
    background-color: #c5e8e6;
    
    /*
    padding: 15px 20px;
    */
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    height:35px;
}

.logo {
    color: #333;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.logo img {
    height: 24px;
    margin-right: 8px;
}

.product-name {
    text-align: right;
    font-weight: normal;
    color: #233b4f;
    font-family:'Linotype-HelveticaNeueLTPro-Bd';
    font-style: italic;
}

.hero-banner {
    /*
    background-image: url('/protocol/images/banner.png');
    background-color: #0a2040;
    background-size: cover;
    background-size :100% 100%;
    */
    
    
    color: white;
    
    /*
    padding: calc(11.5vw/1.92) calc(40vw/1.92);
    */
    position: relative;
    overflow: hidden;
    
}
.hero-banner img {width:100%; height:auto;} 

.dna-graphic {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    opacity: 0.8;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-weight: normal;
    margin-bottom: 10px;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    /*
    border-left: 4px solid white;
    */
    padding-left: 15px;
}

.main-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 30px 20px;
}

.intro-text {
    margin-bottom: 40px;
    line-height: 1.8;
    font-family: 'NotoSansCJKkr-Bold';
    font-size:19px;
}

.library-header {
    display: flex;
    /*
    justify-content: space-between;
    */
    justify-content: left;
    align-items: center;
    margin-bottom: 20px;
    gap:2%;
}

.library-title {
    font-size: 1.8rem;
    color: #333;
}

.download-button {
    /*
    background-color: #0a3c78;
    */
    background-color: #00535e;
    
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.download-button:hover {
    background-color: #06264c;
}

.download-icon {
    margin-right: 8px;
}

.filter-container {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.filter-select, .search-input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    min-width: 200px;
    
}

.search-input {
    flex-grow: 1;
    max-width: 200px;
}

.protocol-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: #f5f8fc;
}

.protocol-table th, .protocol-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: center;
}

.protocol-table th {
    background-color: #e1eaf5;
    color: #333;
    font-weight: normal;
}

.protocol-table tr:nth-child(even) {
    background-color: #fff;
}

.protocol-table tr:hover {
    background-color: #e9f2fd;
}

.superscript {
    vertical-align: super;
    font-size: 0.8em;
}

.list_area{
	width: 1600px;
    height: 500px;
    overflow-y: auto !important;
    
    overflow-x: auto !important;
    
	
}


.search-button {
    /*
    background-color: #0a3c78;
    */
    background-color: #00535e;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    display: flex;
    align-items: center;
}
.hero-banner img.banner_m_cls{display: none !important;}

.hero-banner img.banner_pc_cls{display: block !important;}
@media (max-width: 1200px) {
	.main-content .search_area {
		width: 100%;
    	overflow-x: auto;
	}
	.main-content .search_area .filter-container{
		width: 1600px;
    	
	}
	
	.main-content .list_area{
		width: 100%;
    	overflow-x: auto;
	}
	/*
	.main-content .list_area .filter-container{
		width: 1200px;
    	overflow-x: auto;
	}
	*/
	.main-content .list_area .protocol-table{
		width: 1600px;
    	overflow-x: auto;
	}
}
@media (max-width: 768px) {
	.product-name{font-size: 12px !important;}
}


@media (max-width: 640px) {
	.hero-banner img.banner_m_cls{display: block !important;}
 	.hero-banner img.banner_pc_cls{display: none !important;} 
}
@media (max-width: 768px) {
	header .logo img{height: 20px;}
	.pc_dom{display: none !important;}	
	.intro-text{font-size: 13px;}
}


