*{font-family: "IBM Plex Sans", "Noto Sans KR", "Noto Sans JP", "Nanum Gothic", "Malgun Gothic", sans-serif;}

:root{
    --bg-color: rgba(68,85,221,0.1);
    --doc-color: #FAFAFA;
    --tab-color: #33AAFF;
    --tab-active-color: #0077DD;
    --strike-color: #999999;
}


body{
    background-color: var(--doc-color);
    font-size: 0.875rem;
    line-height: 1.73;
}

input{font-family: inherit;}

.material-icons{
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;  /* Preferred icon size */
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
  
    /* Support for all WebKit browsers. */
    -webkit-font-smoothing: antialiased;
    /* Support for Safari and Chrome. */
    text-rendering: optimizeLegibility;
  
    /* Support for Firefox. */
    -moz-osx-font-smoothing: grayscale;
  
    /* Support for IE. */
    font-feature-settings: 'liga';
}

.material-icons-plain{
    font-family: 'Material Icons';
    font-size: 1em;
}

span{
    color: #282828;
    text-decoration: none;
}

a:link{
    color: #BB0011;
    text-decoration: none;
}
a:active{
    color: #CCCCCC;
    text-decoration: none;
}
a:visited{
    color: #777777;
    text-decoration: none;
}
a:hover{
    color: #AAAAAA;
    text-decoration: none;
}

abbr{cursor: help;}

table,th,tr,td{border-collapse: collapse;}

code,code > *{font-family: ui-monospace,SFMono-Regular,"SF Mono","Menlo","Consolas","Liberation Mono",monospace !important;}

#content-body{
    width: 100%;
    max-width: 96vw;
    margin: 1em auto;
    background-color: var(--bg-color);
    width: 100%;
}

#document-body,#document-footer{
    width: 720px;
    max-width: 90%;
    margin: auto;
}

#document-body h1{font-size: 2rem;}

#container-body{
    padding-left: 20px;
    padding-right: 20px;
    max-width: 100%;
    margin-bottom: 4em;
    padding-bottom: 5vh;
}

#search-form{
    display: inline-flex;
    position: relative;
    justify-content: center;
    align-items: center;
    max-width: 60vw;
}

.search-input{
    text-align: left;
    border-radius: 7px;
    padding: 5px;
    font-size: 16px;
    max-width: 60vw;
}

#search-form input{
    width: 100%;
    padding: 7px;
}

#search-form button{
    position: absolute;
    font-size: 16px;
    border-radius: 7px;
    width: 2.75em;
    top: 3px;
    bottom: 3px;
    right: 3px;
}

[class^="fa-"]{
    color: #881188 !important;
}


.dev-images{text-align: center;}

.services-table{
    text-align: center;
    margin-top: 1.5em;
}

.services-table table{
    width: 640px;
    height: auto;
    margin: auto;
    max-width: 96%;
    /*
    background-color: var(--doc-color);
    border-radius: 1.25em;
    */
}

.services-head{width: 50%;}

.services-table td{
    vertical-align: top;
    margin-bottom: 2.5em;
}

.services-head{
    font-size: 1.125em;
    padding: 0.5em;
}

@media only screen and (min-width: 769px){
    .services-table td{height: 7.65em;}
}

@media only screen and (max-width: 768px) {
    
    /* Force table to not be like tables anymore */
	.services-table table, 
	.services-table thead, 
	.services-table tbody, 
	.services-table th, 
	.services-table td, 
	.services-table tr { 
		display: block;
	}
 
	/* Hide table headers (but not display: none;, for accessibility) */
	.services-table thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
 
	.services-table td { 
		border: none;
		position: relative;
		padding-left: 30%;
		white-space: normal;
		text-align: center;
        margin-bottom: 2.5em;
	}
 
	.services-table td:before { 
        font-size: 1.125em;
		position: absolute;
		top: 1em;
		left: 1em;
        bottom: 2em;
		width: 50%; 
		padding-right: 1.5em; 
		white-space: nowrap;
		text-align: left;
		font-weight: bold;
	}
 
	.services-table td:before {content: attr(data-label);}
}