* {
    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-red-light .main-header .navbar {
    background-color: #222;
}

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

/* @media (min-width: 576px) {
    margin-left: 0px;
} */

.navbar-brand {
    margin-right: 15px;
    display: inline-block;
    padding: 0 0 0 15px;
}

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

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

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

@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;
    }
}

.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-color: #ea6250de; */
    background-color: #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;
}

.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;
    height: auto;
}
/* 스크롤 버튼 */

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 !important;
}

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;
}

.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 설정 */
#secondpage > div[class*=col-] {
    margin-top: 15px;
}

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

#secondpage .box {
    background: rgba(0, 0, 0, 0.1);
    border: 0px;
    border-top: 2px solid #6b0003;
    color: #fff;
}

#secondpage .box-title {
    color: #fff;
    padding: 5px 10px;
    display: block;
    background-image: url('../../images/backimage/gray_sand.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;
}

#midarea {
    padding-bottom: 15px;
}

#midarea .box-title {
    padding: 20px 50px 40px;
    display: block;
    background-image: url('../../images/backimage/texturetastic_gray.png');
}

#fourthpage {
    background-image: url('../../images/backimage/rockywall.png');
}

#midbanner {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

#midbanner a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
#midbanner .md-bn-item {
    min-height: 200px;
    width: 50% !important;
    min-width: 50%;
    flex: 0 0 50%;
}

#midbanner a:hover .txt_box{
    background: none;
}
#midbanner a:hover .txt_box h3 {
    text-shadow: 1px 1px 1px rgba(0, 10, 20, 0.8);
}

#midbanner a:hover .txt_box h6 {
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.6);
}

#midbanner a:hover .inner_box {
    transform: scale(1.1);
    transition: all .25s ease;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25 ease-in-out;
}

#midbanner .inner_box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size:cover !important;
}
#midbanner .md-bn-item .txt_box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 20, 0.8);
    z-index: 1;
    color: #fff;
    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;
}
#midbanner .md-bn-item .txt_box h3 {
    font-weight: 600;
}
#midbanner .md-bn-item .txt_box > .vertical_bar {
    display: block;
    background: #ccc;
    width: 30px;
    height: 2px;
    margin: 0 auto 10px;
}

.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;
}

#productbanner {
    background: center url(/asset/images/backimage/materials.jpg);
}

#videobanner {
    background: center url(/asset/images/backimage/ecofriendly.jpg);
}
#fivepage {
    color: #fff;
    text-shadow: 1px 1px 1px #000;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}
#fivepage .box {
    min-height: 200px;
    border: 0px;
    background-color: rgba(0,0,0,0.2);
    padding: 10px;
    margin: 0;
}

#fivepage h3 {
    font-weight: 400;
}

#fivepage .col-sm-6 {
    width:50%;
    padding: 0;
    background-size: cover;
}

#fivepage .col-sm-6:first-child {
    width: 20% !important;
    max-width: 20% !important;
    float: left;
    min-height: 200px;
}

#fivepage .col-sm-6:last-child {
    width: 80% !important;
    max-width: 80% !important;
    float: right;
    /* text-align: center; */
    background-color: #fff;
}

#fivepage .col-sm-6:last-child .box {
    background-color: #fff;
    color: #3f3f3f;
    text-shadow: none;
    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;
}

#fivepage .col-sm-6:last-child .box h3 {
    margin-top: 0;
}

#contact-us {
    background: center url(/asset/images/backimage/contact-us-1.jpg);
}

#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 {
    height: 75px;
}

#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;
    background-image: url('../../images/backimage/navy_blue.png');
    /* Background pattern from Toptal Subtle Patterns */
}

#carousel-top {
    height: 148px;
}

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

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

@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;
    }
}

.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 {
    min-width: 40px !important;
    flex: 0 0 20% !important;
    padding: 0px !important;
}

.brand-text {
    min-width: 80% !important;
    flex: 0 0 80% !important;
    padding-left: 5px !important;
    padding-right: 20px !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) {
    .img-area {
        max-height: 287px;
    }
    .img-area img {
        width: 60% !important;
        height: auto;
        flex: 0 1 60% !important;
    }
    .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;
}

.yn-href {
    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;
}

.yn-href .info-box {
    min-height: 80px;
    padding: 10px;
    /* height: 170px; */
}

.yn-href .info-box .info-header {
    min-height: 60px;
    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;
}

.yn-href .info-box .info-body {
    min-height: 70px;
    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;
}

.yn-href .info-box .info-header h4 {
    font-weight: 500 !important;
    margin: 0px !important;
}

#top-banners {
    /* max-height: 600px; */
    height: auto;
}

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

.pd-bt10 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.main-prdt-image {
    width: 100%;
    height: auto;
    border-radius: 0 !important;
}

.prdr-rnk-list {
    text-align: center;
}

.prdr-rnk-list li {
    /* float: left; */
    display: inline-block;
    float: none;
}

.prdt-rnk-border {
    border: 1px solid #ccc;
    margin: 3px 3px;
    text-align: left !important;
    max-height: 300px;
    padding: 5px;
}

.prdt-rnk-border img {
    height: 135px;
    object-fit: cover;
    background-color: #fff;
}

.prdt-rnk-border .prdt-rnk-text {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
    color:rgba(0, 0, 0, 0.8);
    padding: 10px 0 !important;
}

.text-white {
    color: #fff;
}

.prdt-rnk-name {
    font-weight: 600;
}

.prdt-rnk-name h4 {
    margin-top: 10px !important;
    margin-bottom: 2px !important;
}

.h500 {
    min-height: 500px !important;
    max-height: 500px !important;
    height:  500px !important;
}

.topbanner-images {
    height: 500px !important;
    object-fit: cover;
    margin : 0px auto !important;
}

#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;
}

.main-icons {
    width: 40px;
}

.margin-left-10 {
    margin: 0 0 0 10px !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, #thirdpage .col-sm-6{
        -ms-flex:none;
        flex: none;
        max-width: none;
    }

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

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