* {
    margin: 0;
    padding: 0;    
}

html, body {
    height: 100%;
    font-family: notosans,roboto,sans-serif;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: inherit;
}

/* 본고딕 폰트 설정 */

@font-face{
	font-family:'notosans';
	font-weight:normal;
	font-style: normal;
	src:url("../font/notosans-regular.eot");
	src:url("../font/notosans-regular.eot?#iefix") format('embedded-opentype'),
		url("../font/notosans-regular.woff2") format('woff2'),
		url("../font/notosans-regular.woff") format('woff');
}
@font-face{
	font-family:'notosans';
	font-weight:300;
	font-style: normal;
	src:url("../font/notosans-medium.eot");
	src:url("../font/notosans-medium.eot?#iefix") format('embedded-opentype'),
		url("../font/notosans-medium.woff2") format('woff2'),
		url("../font/notosans-medium.woff") format('woff');
}
@font-face{
	font-family:'notosans';
	font-weight:600;
	font-style: normal;
	src:url("../font/notosans-bold.eot");
	src:url("../font/notosans-bold.eot?#iefix") format('embedded-opentype'),
		url("../font/notosans-bold.woff2") format('woff2'),
		url("../fontnotosans-bold.woff") format('woff');
}

body, .wrapper {
    overflow: initial;
    /* 상위 요소 overflow 설정 시 하위 요소 sticky 설정 불가 */
}

.content-wrapper {
    background: #fff;
}

a {
    color: #333;
}

a[href^=tel], a[href^=tel]:visited {
    text-decoration: none;
    color: inherit;
}

/* header 설정 */

.main-header {
    /* width: 100%;
    position: sticky;
	top: 0; */
    z-index: 1000;
}

.main-header .navbar-custom-menu, .main-header .navbar-right {
    margin-right: 15px;
}

.sub-header.sticky-top {
    position: -webkit-sticky !important;
	position: sticky !important;
    z-index: 900;
	top: 0;
}

.skin-black-light .main-header .navbar .navbar-nav>li>a,
.skin-black-light .main-header .navbar .navbar-custom-menu .navbar-nav>li>a, 
.skin-black-light .main-header .navbar .navbar-right>li>a
{
    border: 0;
}

.container {
    width: 100%;
    margin-left: 15px;
}

.navbar-brand {
    border: 0 !important;
    margin-right: 15px;
    display: inline-block;
    padding: 0 0 0 15px;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
}

.nav>li>a {
    padding: 12.5px 10px;
    line-height: 25px;
}

.navbar-collapse.pull-left+.navbar-custom-menu {
    right: 0px;
}

.navbar-toggle {
    padding: 16.5px 0px;
    margin-right: 20px;
}

.layout-top-nav .sub-header {
    /* background-color: #f37566f5; */
    background-color: #444444f5;
}

.layout-top-nav .sub-header ul.navbar-nav {
    height: 100%;
}

.layout-top-nav .sub-header li {
    min-width: 12.5rem;
    /* display: inline-block;
    display: inline; */
    float: left !important;
}

.layout-top-nav .sub-header li > a {
    color: #fff;
    text-align: center;
}

.layout-top-nav .sub-header li.active > a {
    background: #3c3b3ade;
}

.layout-top-nav .sub-header li > a {
    padding-top: 5px;
    padding-bottom: 5px;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
}

.layout-top-nav .sub-header li > a:hover {
    background: rgba(0, 0, 0, 0.1);
}

.layout-top-nav .sub-header .navbar {
    margin-bottom: 0px;
    background-color :#4a5363;
}

.layout-top-nav .sub-header .navbar .container {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
}

.layout-top-nav .sub-header .navbar .navbar-nav {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    margin: 0px;
}

.main-banner {
    max-height: 500px;
    padding: 0px;
}
/* 스크롤 버튼 */

button {
    border: none;
    background: none;
}

button.scroll-down a {
    height: 100%;
    padding-top: 60px;
    font-size: 1rem;
    font-weight: 500;
    font-family: roboto;
    letter-spacing: 3px;
    display: block;
    /* color: #222 !important; */
    color: #ff0000 !important;
    text-shadow: 1px 1px 1px #000;
}

button.scroll-down a span {
    position: absolute;
    top: 0;
    left: 50%;
    width: 30px;
    height: 50px;
    margin-left: -15px;
    border: 2px solid #ff0000;
    /* border: 2px solid #222; */
    border-radius: 50px;
    box-sizing: border-box;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
}

button.scroll-down a span::before {
    position: absolute;
    top: 10px;
    left: 50%;
    content: '';
    width: 6px;
    height: 6px;
    margin-left: -3px;
    /* background-color: #222; */
    background-color: #ff0000;
    border-radius: 100%;
    -webkit-animation: scrolling 2s infinite;
    animation: scrolling 2s infinite;
    box-sizing: border-box;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
}

.down-indicators {
    bottom: 90px;
}

@-webkit-keyframes scrolling {
  0% {-webkit-transform: translate(0, 0); opacity: 0;}
  40% {opacity: 1;}
  80% {-webkit-transform: translate(0, 20px); opacity: 0;}
  100% {opacity: 0;}
}

@keyframes scrolling {
 0% {transform: translate(0, 0); opacity: 0;}
 40% {opacity: 1;}
 80% {transform: translate(0, 20px); opacity: 0;}
 100% {opacity: 0;}
}

.text-sm {
    font-size: 12px !important;
}

.btn-gray {
    background-color: gray;
    border-color: gray;
    color: #fff;
}

.btn-gray:hover {
    background-color: #949494;
    border-color: #949494;
    color: #fff;
}

.mgt2 {
    margin-top: 2px;
}

.modal .info-body {
    background-color: #fff !important;
}

.modal .info-body .form {
    color: #444 !important;
}

.modal .box {
    margin-bottom: 0px !important;
}

.modal-header, .modal-footer {
    padding: 10px 15px;
}

.modal .control-label {
    text-align: right;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 22px;
}

.select2-container--default .select2-selection--single {
    border-radius: 0px;
    border-color: #d2d6de;
}

.select2-container--default .select2-selection--single, .select2-selection .select2-selection--single {
    padding-left: 0;
}

.select2-results__option {
    font-size: 12px;
}

.select2-search__field {
    font-size: 12px;
}

span.danger_icon {
    background-color: #dd4b39 !important;
    border: 1px solid #dd4b39 !important;
    color: #fff;
    min-height: 28px;
}

span.success_icon {
    background-color: #008d4c !important;
    border: 1px #008d4c !important;
    color: #fff;
    min-height: 28px;
}

.animationload {
    /* background-color: #fff; */
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;
}

.osahanloading {
    animation: 1.5s linear 0s normal none infinite running osahanloading;
    background: #fed37f none repeat scroll 0 0;
    border-radius: 50px;
    height: 50px;
    left: 50%;
    margin-left: -25px;
    margin-top: -25px;
    position: absolute;
    top: 50%;
    width: 50px;
}
.osahanloading::after {
    animation: 1.5s linear 0s normal none infinite running osahanloading_after;
    border-color: #85d6de transparent;
    border-radius: 80px;
    border-style: solid;
    border-width: 10px;
    content: "";
    height: 80px;
    left: -15px;
    position: absolute;
    top: -15px;
    width: 80px;
}

@keyframes osahanloading {
	0% {
		transform: rotate(0deg);
	}
	50% {
		background: #85d6de none repeat scroll 0 0;
		transform: rotate(180deg);
	}
	100% {
		transform: rotate(360deg);
	}
}


.loading {position:fixed; z-index:2000; overflow:show; margin:auto; top:0; left:0; bottom:0; right:0; width:100%; height:100%;}
.loading:before {content:""; display:block; position:fixed; top:0; left:0; width:100%; height:100%; background-color:rgba(0,0,0,.5);}

.loader_wrap{position:absolute; left:50%; top:50%; width:100px; height:76px; margin-left:-50px; margin-top:-38px;}

.mgt10 {
    margin-top: 10px;
}

ul[id^=tech_list] > li {
    border: 1px solid #ddd;
    border-left: 5px solid #e6e7e8;
    border-radius: 0px;
}

ul[id^=tech_list] > li .tools {
    display: block !important;
    float: right;
    color:#dd4b39
}

ul[id^=tech_list] > li .tools i:first-child {
    margin-right: 30px;
}

ul[id^=tech_list] > li > span > i {
    color: #949494;
}
ul[id^=tech_list] > li .text {
    font-weight: normal;
}

.h28p {
    height: 28px !important;
}

#detlContent {
    min-height: 300px;
}

.description-block>.description-header.mv-header {
    margin-top: 12px;
    max-height: 20px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: block;
    transition: all .25s ease;
    color: #000 !important;
    text-align: left;
}

.mv-image {
    object-fit: cover;
    display: block;
    border-radius: 6px;
    min-height: 150px;
    max-height: 150px;
    margin-left: auto;
    margin-right: auto;
}

.not-allowed {
    cursor: not-allowed;
}

.hans-allowed {
    cursor: pointer;
}

.opacity8 {
    opacity: 0.8;
}

.year_width {
    min-width: 65px;
    text-align: center;
}

#detlContent[class="text-multi"] {
    font-weight: 600;
    font-size: 16px !important;
    color: rgba(0, 0, 0, 0.5);
}

#detlContent[class="text-multi"] {
    font-weight: normal;
    font-size: 12px !important;
}

#detlContent h2 {
    color:rgba(0, 0, 0, 0.4);
}

.tech-area {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;   
    padding-left: 0px !important;
}

.tech-area div {
    flex: 0 0 65px;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
    border: 2px solid #ededed;
    border-radius: 8px;
    margin: 5px;
    height: 60px;
    position: relative;
}

.tech-area div img {
    position: absolute;
    top: 5px;
}

.tech-area div h6 {
    font-size: 10px;
    margin: 0 !important;
    position: absolute;
    bottom: 5px;
}

.prdt-img-area {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    justify-content: center;
    align-items: center;
    border-right: 0;
}

.prdt-img {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.prdt-list {
    border-top: 1px solid #ddd;
    padding: 10px;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    justify-content: center;
    flex-wrap: wrap;
    border-bottom: 0px;
}

.box-body > .row:last-child > .prdt-list {
    border-bottom: 1px solid #ddd;
}

.prdt-list > div:first-child {
    flex: 1 0 auto;
}
.prdt-list > div:last-child {
    flex: 1 0 auto;
}

.prdt-btn-info { 
    padding: 5px 0px !important;
}

.width50 {
    width: 50%;
}

.box.box-primary {
    border-top-color: #0d6dce;
}

.tech-title > div:first-child {
    padding: 10px;
}

.tech-active {
    border-color: #0d6dce !important;
}

.btn-info {
    background-color: #000;
    border-color: transparent;
}

.btn-info:hover, .btn-info:active, .btn-info.hover {
    background-color: #0d6dce;
}

.widget-product .widget-user-username {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.widget-desc {
    padding: 10px 50px;
    min-height: 30px;
}

.widget-product {
    padding: 0px 5px;
    border: 0px !important;
    margin-bottom: 0px;
}

.widget-product .box-body {
    border: 1px solid #ddd;
}

.widget-ttile { 
    padding: 10px 30px;
}

/* box 설정 */
.box {
    border: 0px;
    background: transparent;
}

#secondpage > div[class*=col-] {
    margin-top: 15px;
}

#secondpage .box {
    border: 0px;
}

#secondpage .box-title {
    color: #fff;
    padding: 5px 10px;
    display: block;
    background-image: url('../images/backimage/dark_circles.png');
    /* Background pattern from Toptal Subtle Patterns */
}

#secondpage .box-title a {
    color: #fff;
    line-height: 40px;
    margin-right: 10px;
}

#secondpage .box-title h4 {
    display: inline-block;
}

#secondpage .box-body {
    padding: 0;
    border: 1px solid #111;
}

#secondpage .products-list>.item {
    padding: 8px;
}
#secondpage .product-info {
    margin: 0 10px;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
}
#secondpage .product-title {
    flex: 1 1 90%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-weight: 400;
}

#secondpage .product-info .label {
    flex: 1 1 10%;
    color: #333;
}

#secondpage #second-comp .row > a {
    display: block;
    min-height: 150px;
    padding: 15px;
}

#secondpage #second-comp .row:nth-child(1) > a:nth-child(1) {
    background: #a1abab;
}

#secondpage #second-comp .row:nth-child(1) > a:nth-child(2) {
    background: #d09696;
}

#secondpage #second-comp .row:nth-child(1) > a:nth-child(3) {
    background: #d6d4d4;
}

#secondpage #second-comp .row:nth-child(2) > a:nth-child(1) {
    background: cornsilk;
}

#secondpage #second-comp .row:nth-child(2) > a:nth-child(2) {
    background: aliceblue;
}

#secondpage #second-comp .row > a
#second-comp .box, #second-comp .box-body {
    /* background-color: transparent !important; */
    border: 0;
    margin: 0;
    padding: 10px 0 20px;
}

#second-comp .box-body {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
}
.second-comp-divided {
    border-top: 1px #fff solid;
}

.secont-href {
    color: #fff;
    margin-top: 20px;
    display: inline-block;
    font-size: larger;
    padding: 7px;
    border: 1px solid #4a4a4a;
    text-shadow: none;
    background: rgba(0,0,0,0.4);
}

.second-comp-divided {
    border-top: 1px #6f6f6f solid;
}

#midarea .box {
    border: 0px;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 20px;
    min-height: 200px;
    margin-bottom: 0;
}

#midarea .col-sm-4:nth-child(1) .box {
    background: no-repeat 98% bottom url('../images/icon/green1.svg');
}

#midarea .col-sm-4:nth-child(2) .box {
    background: no-repeat 98% bottom url('../images/icon/green2.svg');
}

#midarea .col-sm-4:nth-child(3) .box {
    background: no-repeat 98% bottom url('../images/icon/green3.svg');
    border-right: 0px;
}

#midarea .box-title {
    padding: 20px 50px 40px;
    display: block;
    background-image: url('../images/backimage/grunge_wall.png');
    /* Background pattern from Toptal Subtle Patterns */
}

#midarea .box h3 {
    color: #0b790b;
    font-weight: 500;
}

.box-header h3 {
    font-weight: 900;
}

.box-title-link {
    font-size: 14px;
    line-height: 20px;
}

.box-title-link span {
    float: right;
    font-size: 14px;
}

#bannerpage, #thirdpage {
    background: #f1f1f1;
    text-align: center;
}

#thirdpage {
    color: #fff;
    text-shadow: 1px 1px 1px #000;
}

#thirdpage h3 {
    font-weight: 400;
}

#thirdpage .col-sm-6 {
    padding: 0;
    background-size: cover;
}

#thirdpage .box {
    min-height: 200px;
    border: 0px;
    background-color: rgba(0,0,0,0.2);
    padding: 10px;
    margin: 0;
}

#thirdpage a {
    color: #fff;
    margin-top: 20px;
    display: inline-block;
    color: #fff;
    margin-top: 20px;
    display: inline-block;
    font-size: larger;
    padding: 7px;
    border: 2px solid #fff;
    text-shadow: none;
    background: rgba(0,0,0,0.2);
}

#thirdpage a:hover {
    text-decoration: underline;
}

#fourthpage {
    background-image: url('../images/backimage/round.png');
    /* Background pattern from Toptal Subtle Patterns */
}

#carousel-bot .item img {
    margin-left: auto !important;
    margin-right: auto !important;
    width: 200px;
    height: auto;
    object-fit: cover;
    vertical-align: middle;
}

#carousel-bot .item {
    height: 75px;
}

#carousel-bot .carousel-inner {
    width: 205px;
    height: 75px;
    left: 50%;
    margin-left: -102px;
}

#detlContent h3 {
    text-align: center;
    margin-top: 20px;
}

pre {
    background-color: #f5f5f59e;
    border: 0px;
    font-family: 'notosans';
    padding: 0 25px 30px;
    margin: 0 0 10px;
}

.modal-dialog-centered {
    display: flex;
    display: -ms-flexbox;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - (.5rem * 2));
}

.modal-dialog-centered .modal-content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
}

.widget-product .widget-user-image > img {
    height: 65px;
}

/* 상단으로 가기 버튼 */

.btn-move {
    width: 34px;
    height: 34px;
}
    
#btnTop {
    display:none;
    bottom: 90px;
    position:fixed;
    right:21px;
    z-index:9999;
    transform: rotate(180deg);
}

.adonis-footer {
    background-color: rgba(0, 0, 0, 0.8);
    color: #ddd;
    padding: 30px 3px;
}

#carousel-top {
    height: 148px;
}

#carousel-top .item {
    max-height: 148px;
}

#carousel-top .item img {
    object-fit: cover;
}

.carousel-control {
    font-size: 24px;
    color: #a99191 !important;
}

@media (min-width: 768px) {
    .intro-box {
        padding: 80px 0 180px;
    }
    .down-indicators {
        bottom: 70px;
    }
    #midbanner .md-bn-item {
        width: auto;
        flex: 0 0 auto;
        min-width: auto;
    }
}

@media (max-width: 767px) {
    .layout-top-nav .sub-header li {
        min-width: 12.5rem;
        display: inline-block;
        text-align: left;
        float: none !important;
    }

    .layout-top-nav .sub-header ul.navbar-nav {
        height: 50px;
    }

    .container {
        margin: 0;
    }

    .navbar-collapse.pull-left+.navbar-custom-menu {
        right: 30px;
    }

    #navbar-collapse ul.nav>li {
        border-bottom: 1px solid #f1f1f1;
    }

    #midarea .box {
        border-right: 0px;
    }

    #midarea .col-sm-4 .box {
        padding: 40px 30px 60px;
    }

    #midarea .box-title {
        padding: 50px;
    }

    #fourthpage {
        padding: 40px 20px;
    }
}

.kacg-brand {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;   
}

.kacg-brand .icon {
    width: 20% !important;
    flex: 1 1 20% !important;
    padding: 0px !important;
}

.brand-text {
    width: 80% !important;
    flex: 1 1 80% !important;
    padding-right: 0px !important;
    padding-left: 8px !important;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-align:start;
    -ms-flex-align:start;
    align-items:flex-start;
    justify-content: center;   
    flex-direction: column;
}

.brand-text h4,.brand-text h6 {
    margin: 0px;
    white-space: nowrap;   
    display: none;
}

.min-h40px {
    min-height: 40px;
}

.bg-default {
    background-color: #fff !important;
}

.join .btn {
    min-width: 120px;
    font-size: 12px;
}

.join .btn-app {
    margin:0 ;
}
.join .btn-app i {
    transition: all 0.98s ease;
}

#login-detl{
    width: 90%;
    margin: 5px auto !important;
}

.wrap-flex-items {
    flex-wrap: wrap;
}

.flex-starts {
    justify-content: flex-start !important;
}

.mouse-scroll-area {
    display: block;
}

@media (min-width: 574px) {
    .brand-text h4,.brand-text h6 {
        display: block;
    }
}

@media (min-width: 576px) {
    .widget-product .widget-user-username {
        text-overflow:initial;
        overflow:visible;
        white-space:normal;
    }
    .tech-area {
        padding-left: 5px !important;
        justify-content: flex-start;
    }
    .prdt-img-area {
        border-right: 1px solid #ddd;
    }

    .dtr-details li {
        list-style-type: none;
        max-width: 100%;
    }

    .brand-text h4,.brand-text h6 {
        display: block;
    }
    .mouse-scroll-area {
        display: none;
    }
}

@media (max-width: 320px) {
    .dtr-details li {
        list-style-type: none;
        max-width: 250px;
    }

    #carousel-top {
        height: 80px;
    }

    #carousel-top .item {
        max-height: 80px;
    }
}

@media (max-width: 576px) {
    .dtr-details li {
        list-style-type: none;
        max-width: 500px;
    }

    #carousel-top {
        height: 80px;
    }

    #carousel-top .item {
        max-height: 80px;
    }
}

.load-item {
    cursor: pointer;
}

@media (max-width: 991px) {
    .content-header>.breadcrumb {
        background: #f3f3f3;
    }
}

.pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover, .pagination>.active>span, .pagination>.active>span:focus, .pagination>.active>span:hover {
    background-color: #0d6dce;
    border-color: #0d6dce;
}

.bg-green-active, .modal-success .modal-header, .modal-success .modal-footer {
    background-color : #444 !important;
}

.no-border {
    border: 0px !important;
}

.cursor-text {
    cursor: text;
}

.visit-count ul {
    list-style: none;
}

a:hover, a:active, a:focus {
    color: #1c79af;
}

.align-middle {
    vertical-align: middle !important;
}

.rlst-image {
    display: inline-block;
    max-height: 80px !important;
}

.mgl-10 {
    margin-left: 10px;
}

.intdBack {background: no-repeat url('../images/sub/intd-back.png') 50% top;}
.company_info {background: no-repeat url('../images/sub/bg_company.jpg') 50% top;}

.intdBack h1, .company_info h1 {font-size: 30px !important;}
.intdBack h3, .company_info h3, .intdBack h2, .company_info h2 {
    font-family: 'notosans' !important; 
    font-weight: 500 !important; 
    font-size: 15px !important;
    line-height: 1.2; 
    margin: 20px 0;
}

.company_info ul {
    list-style:none;
}
.company_info h1, .company_info h2, .company_info h3,
.intdBack h1, .intdBack h2, .intdBack h3 {
    color: #fff !important;
    text-align: left !important;
}

.intdBack .inner, .company_info .inner {
    display: block;
    padding: 30px 5px; 
    width: 100%; 
}

#mtcls_desc {
    border-radius: 0px;
}

#mtcls_desc p {
    margin-bottom: 0px;
}

[class^='tab-pane'] pre {
    background-color: #f5f5f59e;
    border: 0px;
    font-family: 'notosans';
    padding: 30px 25px;
    margin: 0 !important;
    display: inline-flex;
}
[class^='tab-pane'] img.covers {
    display: inline-block;
    object-fit: cover;
}

#sub-cls-desc .tab-content {
    padding: 10px 0px !important;
}

#sub-cls-desc .nav-tabs-custom {
    box-shadow: none !important;
    margin-bottom: 0px;
}

#mtrl-detlContent ul {
    list-style:none ;
}

[id^=techTable_] {
    table-layout: fixed;
}

[id^=mdlgprdtlist_] {
    table-layout: fixed;   
}

.table-no-top {
    border-top: 0px !important;
}
.table-no-left {
    border-left: 0px !important;
}

.h35px {
    height: 35px;
}

.carousel-control.left {
    left: 18%;
}

.carousel-control.right {
    right: 18%;
}

.main-footer {
    border: 0px;
}

#banner-footer {
    border-top: 1px solid #ddd;
}

.col-sm-4.no-padding.no-margin:nth-child(1) {
    background-color: #4a5363;
}

.col-sm-4.no-padding.no-margin:nth-child(2) {
    background-color: #565656;
}

.col-sm-4.no-padding.no-margin:nth-child(3) {
    background-color: #3b5692;
}

.btn-group.open .dropdown-toggle {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.box-footer .btn {
    padding: 10px;
    color: #fff;
}

.box-footer .btn.focus, .btn:focus, .btn:hover {
    color: #fff;
}

.skin-black-light .main-header .navbar .nav>li>a:hover, .skin-black-light .main-header .navbar .nav>li>a:active, .skin-black-light .main-header .navbar .nav>li>a:focus, .skin-black-light .main-header .navbar .nav .open>a, .skin-black-light .main-header .navbar .nav .open>a:hover, .skin-black-light .main-header .navbar .nav .open>a:focus, .skin-black-light .main-header .navbar .nav>.active>a {
    background: #fff;
    font-weight: 900;
}

#banner-footer .box {
    border: 0px;
    margin-bottom:0px;
}
.cert-area {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
}
.cert-area img {
    margin-left: 10px;
    margin-right: 10px;
}

#banner-footer ul.dropdown-menu {
    width: 100%;
    border-radius: 0px;
}

#hrefcafe, #hrefblog,#hrefjoin, #hreflogin, #hrefmtpg, #hreflogout ,#favorite, #hrefMyPg {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 6px 10px !important;
}

#hrefcafe i, #hrefblog i,#hrefjoin i, #hreflogin i, #hrefmtpg i, #hreflogout i ,#favorite i, #hrefMyPg i{
    font-size: 9px !important;
    margin-top: 6px;
}

#hrefcafe span, #hrefblog span,#hrefjoin span, #hreflogin span, #hrefmtpg span, #hreflogout span ,#favorite span, #hrefMyPg span.mypage {
    font-size: 10px !important;
}

#cumtom-right {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
}

.intdBack li {
    list-style: none;
}

.mgr10 {
    margin-right: 10px;
}

.mgr10 div[class^=icheckbox] {
    margin-right: 4px;
}

.sub-rows {
    border: 1px solid rgba(0,0,0,.2);
}

.text-center-important {
    text-align: center !important;
}

.font-10-px {
    font-size: 10px !important;
}

.font-9-px {
    font-size: 9px !important;
}

#detlContent li {
    list-style-type: none !important;
}

.list-content .box{
    height: 270px;
}
.list-content {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    /* justify-content: center; */
}
@media (max-width: 576px) {
    .label-tit.col-sm-2 {
        padding: 0 2px !important;
    }
    .label-tit.col-sm-2 label {
        font-size: 9px !important;
    }

    #secondpage .col-sm-6 {
        -ms-flex:none;
        flex: none;
        max-width: none;
    }

    #midarea .col-sm-4,#second-comp .col-sm-4, .box-footer .col-sm-4{
        -ms-flex:none;
        flex: none;
        max-width: none;
    }
}

.show-border {
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: none;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.show-border .info-box-icon {
    margin-left: 10px;
}
.show-border .info-box-content{
    margin-left: 10px;
}

.box-group div[class*='panel box']:not(:last-child) {
    border-bottom: 1px solid #ddd;
}

.main-footer .container {
    margin-left: 0 !important;
}