
:root {
    /*--main-bg-color: palevioletred;*/
    --panel-bg-color: #ebedef;
    --default-font-size : 0.9em;
}

html {
    font-family: 'Malgun Gothic', 'NanumGothic';
    font-size: var(--default-font-size);
    overflow: hidden;
}

body {
    font-family: 'Malgun Gothic', 'NanumGothic';
    overflow:hidden;
    background-color: var(--main-bg-color);
}


/*@media screen and (max-width: 1650px) {
    body {
        overflow: auto;
    }
}
*/

.item_name_tag {
    padding: 0.25em 0.4em;
    font-weight: 700;
    line-height: 1;
    text-transform: none;
    white-space: nowrap;
    border-radius: 4px;
    letter-spacing: 0;
    background-color: #e6ecef;
    color: #3a474d;
    min-width: 80px;
    margin-right: 5px;
}

@media screen and (max-width: 1650px) {
    .pointcursor {
        font-size: 0.5rem;
        margin: 0px;
    }
}

@media screen and (max-width: 960px) {
    .mobilenotsupport {
        display: none;
        visibility: collapse;
    }    
}

.scrollable-container {
    max-width: 100%;
    overflow-x: auto;
}

.fixed-width-content {
    min-width: 1850px;
}

RadzenFieldset {
    background-color: var(--panel-bg-color);
}

/*°Ë»çÀÌ¹ÌÁö ½æ³×ÀÏ*/
.product-title {
    min-height: 50px;
    color: whitesmoke;
    background-color: black;
    font-size: 20px;
    font-weight: bold;
    line-height: 20px;
    letter-spacing: -0.02em;
}


.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}


.hor-flex-container {
    display: flex;
}

.hor-flex-item {
    flex: none;
    /* flex: 0 0 auto */
}

.hor-flex-item-gnb {
    margin-left: auto;
}


.ver-flex-container {
    display: flex;
    flex-direction:column;
}

.ver-flex-item {
    flex: none;
    /* flex: 0 0 auto */
}

.ver-flex-item-gnb {
    margin-left: auto;
}


.pointcursor {
    cursor: pointer;
    font-weight: 900;
}


.pointcursor:hover {
    background: green;
}





#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

Hide server connection messages
.components-reconnect-show, .components-reconnect-failed, .components-reconnect-rejected, .components-reconnect-modal, #blazor-error-ui {
    /*display: none !important;*/
    color: #000;
}

.list-container {
    padding: 10px;
    text-align: center;
}

.list {
    justify-content: center;
    column-gap: 10px;
    orphans: 1;
    widows: 1;
    column-count: 2;
    max-width: 805px;
    margin: 0 auto;
}

.text-list {
    column-count: 1;
}

.text-card {
    display: inline-block;
    width: calc(100% - 20px);
    height: 60px;
    line-height: 60px;
    margin: 10px;
    box-shadow: 0px 1px 3px rgba(0,0,0,0.5);
}

    .text-card h4 {
        color: #666;
    }

.img-card {
    width: 100%;
    height: auto;
    margin: 5px 0 0;
    box-shadow: 0px 1px 3px rgba(0,0,0,0.5);
}


@media (hover: hover) {
    .img-card:hover {
        filter: brightness(110%);
        transform: scale(1.015);
    }

    .img-card:active {
        filter: brightness(90%);
        transform: scale(1);
    }

    .model-close-btn:hover {
        background: rgba(255,255,255,0.8);
    }

    .model-close-btn:active {
        background: rgba(200,200,200,0.8);
    }
}

@media (max-width:650px) {
    .list {
        column-gap: 5px;
    }

    .list-container {
        padding: 5px;
    }

    .list img {
        margin: 0;
    }

    .modal-body img {
        max-width: 100vw;
    }

    #imagePreviewModalCloseBtn {
        width: 100px;
    }

    .model-close-btn {
        width: 80px;
    }
}

@media (min-width: 850px) {
    .list {
        column-count: 3;
        max-width: 1210px;
    }
}

@media (min-width: 1250px) {
    .list {
        column-count: 4;
        max-width: 1615px;
    }
}

@media (min-width: 1650px) {
    .list {
        column-count: 5;
        max-width: 2020px;
    }
}

@media (min-width: 2050px) {
    .list {
        column-count: 6;
        max-width: 2425px;
    }
}

@media (max-width: 575.98px) {
    .gridlayout-item {
        font-size: 0.9em;
    }
}


