﻿:root {
    --black: hsl(230, 25%, 4%);
    --black-bis: hsl(230, 25%, 8%);
    --black-ter: hsl(230, 25%, 15%);
    --grey-darker: hsl(230, 25%, 20%);
    --grey-dark: hsl(230, 25%, 26%);
    --grey: hsl(220, 25%, 48%);
    --grey-light: hsl(220, 25%, 72%);
    --grey-lighter: hsl(220, 25%, 88%);
    --grey-lightest: hsl(220, 25%, 92%);
    --white-ter: hsl(220, 25%, 96%);
    --white-bis: hsl(220, 23%, 98%);
    --white: hsl(0, 0%, 100%);
    --orange: hsl(14, 100%, 53%);
    --yellow: hsl(46, 98%, 62%);
    --green: hsl(150, 42%, 53%);
    --turquoise: hsl(171, 100%, 41%);
    --cyan: hsl(196, 86%, 58%);
    --blue: hsl(235, 94%, 63%);
    --purple: hsl(260, 60%, 57%);
    --red: hsl(348, 86%, 61%);
    /*  */
    --primary-dark: #6d28d9;
    --primary: #8b5cf6;
    --primary-light: #ddd6fe;
    --primary-lighter: #f5f3ff;
    --danger: var(--red);
    --danger-light: hsl(14, 100%, 63%);
    /*  */
    --text-color: var(--black);
    --border-light-color: var(--grey-lighter);
    --border-color: var(--grey-light);
    --border-dark-color: var(--grey);
    --border-darker-color: var(--grey-darker);
    --thead-bg-color: var(--white-bis);
    --thead-border-bottom-color: var(--grey-lightest);
    --tr-hover-bg-color: #f0f9ff;
    --td-hover-bg-color: #e0f2fe;
    --tr-edit-border-color: var(--border-color);
    --tr-edit-bg-color: var(--white-ter);
    --tr-edit-tb-hover-bg-color: var(--grey-lightest);
    --tr-edit-selected-bg-color: var(--primary-lighter);
    --tr-edit-selected-tb-hover-bg-color: var(--primary-light);
    --tr-selected-border-color: var(--primary);
    --tr-selected-bg-color: var(--primary-lighter);
    --tr-selected-tb-hover-bg-color: var(--primary-light);
    /*  */
    --control-color: #94a3b8;
}



/* Grid */
.grid {
    position: relative;
    clear: both;
    width: 100%;
}

    .grid * {
        box-sizing: border-box;
    }

.grid-count {
    line-height: 1;
}

.grid-body {
    position: relative;
    border: 1px solid var(--border-light-color);
}

.grid-right {
    width: 100%;
}

.grid-header-right {
    overflow-x: hidden;
}

.grid-body-command-settings {
    position: absolute;
    top: 0;
    right: 0;
    width: 8px;
    height: 26px;
}


    .grid-body-command-settings.on {
        color: #fff;
        background: #6366f1;
    }

    .grid-body-command-settings span {
        position: absolute;
        top: 2px;
        left: -6px;
        font-size: 20px;
        font-weight: 700;
        transform: scaleX(-0.8);
    }

.is-changed {
    position: relative;
}

    .is-changed::after {
        content: "";
        position: absolute;
        top: 0px;
        left: 0;
        width: 0;
        height: 0;
        border-top: 10px solid var(--primary);
        border-left: 0 solid var(--primary);
        border-right: 12px solid transparent;
    }

.grid-item-right {
    position: absolute;
    top: 0px;
    left: 0px;
}

.grid-width-auto .grid-item-right {
    overflow-x: scroll;
}

/* 스크롤바 */
.grid-header-right::-webkit-scrollbar, .grid-item-right::-webkit-scrollbar {
    width: 8px !important;
}

.grid-width-auto .grid-item-right::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.grid-width-auto .grid-item-right::-webkit-scrollbar-thumb {
    background: hsl(220, 10%, 80%); /* 스크롤바 색상 */
    border-radius: 4px; /* 스크롤바 둥근 테두리 */
}

    .grid-width-auto .grid-item-right::-webkit-scrollbar-thumb:hover {
        background: hsl(220, 13%, 77%);
    }

    .grid-width-auto .grid-item-right::-webkit-scrollbar-thumb:active {
        background: hsl(220, 13%, 75%);
    }

.grid-header-right::-webkit-scrollbar, .grid-width-auto .grid-item-right::-webkit-scrollbar-track {
    background: var(--white-ter); /*스크롤바 뒷 배경 색상*/
}

.grid-body::after {
    position: absolute;
    bottom: 0;
    right: 0;
    content: '';
    width: 8px;
    height: 8px;
    background: var(--grey-lightest); /*스크롤바 코너 색상*/
}

.grid-width-auto table {
    width: 100%;
}

.grid-header-right, .grid-item-right {
    overflow-y: scroll;
}

    .grid-header-right::-webkit-scrollbar {
        width: auto;
    }

    .grid-header-right::-webkit-scrollbar-track {
        background: linear-gradient(hsl(220, 2%, 98%), hsl(220, 4%, 92%)) 0% 0% no-repeat padding-box;
    }

    .grid-header-right::-webkit-scrollbar-button {
        display: none;
    }

.grid-body table, table.grid-body {
    table-layout: fixed;
    border-collapse: collapse;
    background-color: hsl(0, 0%, 100%);
    empty-cells: show;
}

.grid-body thead {
    font-size: 12px;
    letter-spacing: 0;
    color: var(--text-color);
}

.grid-body tbody {
    font-size: 12px;
    letter-spacing: 0;
    color: var(--text-color);
}

.grid-body .item.scroll {
    overflow-y: auto;
    overflow-x: hidden;
    width: 100%;
    height: 400px;
}

.grid-body .template {
    display: none;
}

    .grid-body .template.develop {
        display: table-row-group;
    }

.grid-body tbody .checkbox {
    display: contents;
}

    .grid-body tbody .checkbox input[type=checkbox] {
        margin-bottom: 2px;
    }

.grid-body input {
    margin: 0;
}

.grid-body tbody tr.show {
    display: inherit;
}

.grid-body tbody.item tr td:first-child {
    text-align: center;
}

.grid-body th {
    height: 24px;
    overflow: hidden;
    font-weight: 600;
    white-space: nowrap;
    text-align: center !important;
    vertical-align: middle;
}

    .grid-body th[data-column-group~="1"] {
        border-bottom-width: 1px;
    }

    .grid-body th .header-wrap {
        position: relative;
        width: 100%;
        height: 100%;
    }

        .grid-body th .header-wrap .checkbox {
            position: sticky;
            top: 1px;
        }

        .grid-body th .header-wrap .required {
            display: flex;
            width: 6px;
            height: 100%;
        }

    .grid-body th .item span.grid-sort {
        cursor: pointer;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .grid-body th .header-wrap .item .required::after {
        left: -6px;
    }

.grid-body th .header-wrap .item {
    height: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
    align-items: center;
}

.grid-header-expand {
    padding: 0 2px;
    height: 18px;
}

    .grid-header-expand .material-symbols-outlined {
        line-height: 1 !important;
    }

.grid-header-collapse {
    padding: 0 2px;
    height: 18px;
}

    .grid-header-collapse .material-symbols-outlined {
        line-height: 1 !important;
    }

.grid-column.column0 .header-wrap .item > span {
    width: 14px;
    display: inline-block;
}

.grid-body td {
    position: relative;
    padding: 2px;
    height: 25px;
    overflow: hidden;
    border-top: 1px solid var(--border-light-color);
    border-right: 1px solid var(--border-light-color);
    text-align: center;
    vertical-align: middle;
    word-break: break-all;
    white-space: nowrap;
    line-height: 1.25;
}

/* 스트라이프 */
.grid-item.stripe tr:nth-child(even) {
    background-color: #f1f5f9;
}

/* 세로줄 */
.grid-item.hidden-border-top td {
    border-top: 0;
}

/* 가로줄 */
.grid-item.hidden-border-right td {
    border-right: 0;
}

.grid-body tbody.item tr:hover td:hover, .grid-body tbody.item tr.hover td:hover {
    background-color: var(--td-hover-bg-color);
}

/*
.grid-body td input[type=text], .grid-body td select, .grid-body td textarea {
    padding: 0 4px;
    width: 100%;
    border: 1px solid var(--control-color);
    border-radius: 4px;
    background-color: hsl(0, 0%, 100%);
}*/

.grid-body td input:focus, .grid-body td input:active, .grid-body td select:focus, .grid-body td select:active, .grid-body td textarea:focus, .grid-body td textarea:active {
    border-color: var(--border-darker-color);
    outline: none;
}

.grid-body td textarea {
    padding: 4px;
}

.grid-body tbody.item tr td:first-child, .grid-body tbody.item tr td:first-child[style="display:none;"] + td, .grid-body tbody.item tr td:first-child[style="text-align:left; display:none;"] + td, .grid-body tbody.item tr td:first-child[style="text-align:center; display:none;"] + td, .grid-body tbody.item tr td:first-child[style="text-align:right; display:none;"] + td {
    border-left: 1px solid transparent;
}

.grid-body .grid-right tbody.item tr td:last-child {
    border-right: 1px solid transparent;
}

.grid-body tbody.item tr:last-child td, .grid-body tbody.item tr.last td {
    border-bottom: 1px solid var(--border-light-color);
    margin-bottom: 1px;
}

.grid-body tbody.item tr:hover td, .grid-body tbody.item tr.hover td {
    background-color: var(--tr-hover-bg-color);
}

/*.grid-body tbody.item tr:hover td:first-child, .grid-body tbody.item tr:hover td:first-child[style="display:none;"] + td, .grid-body tbody.item tr:hover td:first-child[style="text-align:left; display:none;"] + td, .grid-body tbody.item tr:hover td:first-child[style="text-align:center; display:none;"] + td, .grid-body tbody.item tr:hover td:first-child[style="text-align:right; display:none;"] + td, .grid-body tbody.item tr.hover td:first-child, .grid-body tbody.item tr.hover td:first-child[style="display:none;"] + td, .grid-body tbody.item tr.hover td:first-child[style="text-align:left; display:none;"] + td, .grid-body tbody.item tr.hover td:first-child[style="text-align:center; display:none;"] + td, .grid-body tbody.item tr.hover td:first-child[style="text-align:right; display:none;"] + td {
        border-left-color: var(--border-light-color) !important;
    }

    .grid-body tbody.item tr:hover td:last-child, .grid-body tbody.item tr.hover td:last-child {
        border-right-color: var(--border-light-color) !important;
    }*/

.grid-body tbody.item tr:hover .edit, .grid-body tbody.item tr.hover .edit {
    color: var(--primary);
}

.grid-body tbody.item tr:hover .delete, .grid-body tbody.item tr.hover .delete {
    color: var(--danger);
}

.grid-body tbody.item tr.selected td {
    /*border-top: 1px solid var(--primary) !important;
    border-bottom: 1px solid var(--primary) !important;*/
    background-color: var(--primary-lighter);
}

    /*.grid-body tbody.item tr.selected td:first-child, .grid-body tbody.item tr.selected td:first-child[style="display:none;"] + td, .grid-body tbody.item tr.selected td:first-child[style="text-align:left; display:none;"] + td, .grid-body tbody.item tr.selected td:first-child[style="text-align:center; display:none;"] + td, .grid-body tbody.item tr.selected td:first-child[style="text-align:right; display:none;"] + td {
        border-left-color: var(--primary) !important;
    }

    .grid-body tbody.item tr.selected td:last-child {
        border-right-color: var(--primary) !important;
    }*/

    .grid-body tbody.item tr.selected td:hover, .grid-body tbody.item tr.selected td:focus, .grid-body tbody.item tr.selected td:focus-visible, .grid-body tbody.item tr.selected td.selected {
        background-color: var(--primary-light) !important;
    }

.grid-body tbody.item tr.selected .edit {
    color: var(--primary);
}

.grid-body tbody.item tr.selected .delete {
    color: var(--danger);
}

.grid-body tbody.item tr.edit {
    outline: none;
}

    .grid-body tbody.item tr.edit td {
        background-color: var(--tr-edit-bg-color);
    }

        .grid-body tbody.item tr.edit td:hover {
            background-color: var(--tr-edit-tb-hover-bg-color);
        }

    .grid-body tbody.item tr.edit.selected td {
        /*border-top: 1px solid var(--tr-edit-border-color) !important;
        border-bottom: 1px solid var(--tr-edit-border-color) !important;*/
        background-color: var(--tr-edit-selected-bg-color);
    }

        /*.grid-body tbody.item tr.edit.selected td:first-child, .grid-body tbody.item tr.edit.selected td:first-child[style="display:none;"] + td, .grid-body tbody.item tr.edit.selected td:first-child[style="text-align:left; display:none;"] + td, .grid-body tbody.item tr.edit.selected td:first-child[style="text-align:center; display:none;"] + td, .grid-body tbody.item tr.edit.selected td:first-child[style="text-align:right; display:none;"] + td {
            border-left-color: var(--tr-edit-border-color) !important;
        }

        .grid-body tbody.item tr.edit.selected td:last-child {
            border-right-color: var(--tr-edit-border-color) !important;
        }*/

        .grid-body tbody.item tr.edit.selected td:hover {
            background-color: var(--tr-edit-selected-tb-hover-bg-color) !important;
        }

.grid-body tbody.item tr.delete {
    outline: none;
}

    .grid-body tbody.item tr.delete td {
        background-color: var(--danger-light);
    }

    .grid-body tbody.item tr.delete .cancel {
        color: var(--danger);
    }

.grid-column {
    border-right: 1px solid var(--border-light-color);
    border-bottom: 3px solid var(--thead-border-bottom-color);
    background-color: var(--thead-bg-color);
}

    .grid-column.hover {
        border-bottom-color: var(--primary);
        transition-duration: 0.3s;
        transition-timing-function: ease-out;
    }

    .grid-column .left, .grid-column .right {
        display: block;
        position: absolute;
        z-index: 1;
        width: 6px;
        height: 100%;
        cursor: w-resize;
    }

    .grid-column .left {
        top: 0px;
        left: 0px;
    }

    .grid-column .right {
        top: 0px;
        right: 0px;
    }

    .grid-column .item {
        width: 100%;
        height: 100%;
        padding: 0 4px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        display: flex;
        cursor: pointer;
        justify-content: center;
        align-items: center;
    }

    .grid-column .icon {
        display: flex;
        align-items: center;
        position: absolute;
        top: 0;
        right: 0;
        z-index: 1;
        height: 100%;
        white-space: normal;
        color: var(--control-color);
        background-color: var(--thead-bg-color);
    }

        .grid-column .icon .grid-filter .material-symbols-outlined {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 16px;
            height: 16px;
            padding-top: 1px;
            font-size: 12px;
            cursor: pointer;
        }

            .grid-column .icon .grid-filter .material-symbols-outlined:hover {
                color: var(--text-color);
            }

        .grid-column .icon .grid-sort-direction .material-symbols-outlined {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 12px;
            height: 16px;
        }

div.grid-column {
    display: inline-block;
    height: 20px;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
}

.grid-column-band {
    border-right: 1px solid var(--border-light-color);
    border-bottom: 1px solid var(--thead-border-bottom-color);
    background-color: var(--thead-bg-color);
}

.grid-row-command .material-symbols-outlined {
    padding: 0 6px;
    margin-bottom: 2px;
    font-size: 13px;
    vertical-align: middle;
}

.grid-group-zone {
    width: 100%;
    height: 40px;
    padding: 6px;
    background-color: #fff;
    border: 1px solid #e2e8f0;
    border-bottom: 0;
}

    .grid-group-zone .grid-column {
        height: 28px;
        width: 100px;
        border: none;
        background: rgb(99 102 241 / 15%);
        border-radius: 4px;
        font-size: 13px;
        font-weight: 500;
        color: #6366f1;
    }

.grid-group-zone-help {
    font-size: 13px;
    color: var(--control-color);
    line-height: 2;
}

.grid-group-row {
    cursor: pointer;
    text-align: center;
}

.grid-body .grid-group-row-blank {
    border-top-width: 0px;
    border-bottom-width: 0px;
}

    .grid-body .grid-group-row-blank * {
        display: none;
    }

.grid-tree-toggle {
    display: inline-block;
    vertical-align: middle;
}

    .grid-tree-toggle + span {
        vertical-align: middle;
    }

.bullet.is-arrow {
    display: flex;
    color: var(--control-color);
}

    .bullet.is-arrow .icon {
        line-height: 18px !important;
    }

        .bullet.is-arrow .icon.system-arrow {
            font-size: 24px;
            color: var(--grey);
        }

    .bullet.is-arrow.is-selected .icon {
        transform: rotateZ(90deg);
    }

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    width: 100%;
}

    .pagination > a {
        display: flex;
        color: #64748b;
        cursor: pointer;
    }

        .pagination > a:hover {
            color: #0f172a;
        }

.pagination-link {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    min-width: 20px;
    height: 20px;
    border: 1px solid var(--border-light-color);
    font-size: 12px;
    cursor: pointer;
    border-radius: 4px;
}

    .pagination-link:hover {
        background-color: #e2e8f0;
    }

.pagination-list {
    display: flex;
    column-gap: 4px;
    order: 3 !important;
    margin: 0 4px;
}

    .pagination-list .is-current {
        border-color: var(--primary);
        background-color: var(--primary);
        color: hsl(0, 0%, 100%);
        cursor: pointer;
    }

        .pagination-list .is-current:hover {
            filter: brightness(0.9);
        }

.pagination-first {
    order: 1 !important;
}

.pagination-previous {
    order: 2 !important;
}

.pagination-next {
    order: 4 !important;
}

.pagination-end {
    order: 5 !important;
}

.first-enabled {
    background-position: -42px 0px;
    width: 23px;
    height: 23px;
}

.first-disabled {
    background-position: -42px -25px;
    width: 23px;
    height: 23px;
}

.prev-enabled {
    background-position: -92px 0px;
    width: 23px;
    height: 23px;
}

.prev-disabled {
    background-position: -92px -25px;
    width: 23px;
    height: 23px;
}

.next-enabled {
    background-position: -117px 0px;
    width: 23px;
    height: 23px;
}

.next-disabled {
    background-position: -117px -25px;
    width: 23px;
    height: 23px;
}

.last-enabled {
    background-position: -67px 0px;
    width: 23px;
    height: 23px;
}

.last-disabled {
    background-position: -67px -25px;
    width: 23px;
    height: 23px;
}

/* gantt */
.gantt-wrap, .gantt-plan-bar {
    position: absolute;
}

    .gantt-wrap .gantt-plan-bar .gantt-plan-bg {
        display: flex;
        justify-content: space-between;
        height: 25px;
        border-radius: 2px;
    }

    .gantt-wrap .gantt-plan-bar.hover .gantt-plan-bg {
        transform: scaleY(1.5);
    }

    .gantt-wrap .gantt-plan-bar .gantt-plan-bg .bar-size {
        position: relative;
        width: 0;
        background-color: rgba(255, 255, 255, .3);
        cursor: col-resize;
        transition: all .2s;
    }

        .gantt-wrap .gantt-plan-bar .gantt-plan-bg .bar-size:first-child {
            border-top-left-radius: 2px;
            border-bottom-left-radius: 2px;
        }

        .gantt-wrap .gantt-plan-bar .gantt-plan-bg .bar-size:last-child {
            border-top-right-radius: 2px;
            border-bottom-right-radius: 2px;
        }

    .gantt-wrap .gantt-plan-bar.hover .gantt-plan-bg .bar-size {
        width: 12px;
    }

        .gantt-wrap .gantt-plan-bar.hover .gantt-plan-bg .bar-size::before {
            content: '';
            position: absolute;
            top: calc(50% - 4px);
            left: 4px;
            width: 4px;
            height: 8px;
            border-left: 1px solid #fff;
            border-right: 1px solid #fff;
            cursor: col-resize;
        }

    .gantt-wrap .gantt-plan-bar .gantt-plan-title {
        position: absolute;
        top: 5px;
        width: 100%;
        padding: 0 6px;
        font-size: 12px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        word-break: break-all;
        color: #fff;
        transition: all .2s;
    }

    .gantt-wrap .gantt-plan-bar.hover .gantt-plan-title {
        width: calc(100% - 24px);
        left: 12px;
        padding: 0 8px;
    }

    .gantt-wrap .gantt-result-bar {
        position: absolute;
        top: 22px;
        height: 4px;
        border-radius: 2px;
        filter: brightness(0.7);
    }

        .gantt-wrap .gantt-result-bar + .gantt-plan-bar .gantt-plan-bg {
            height: 20px;
        }

        .gantt-wrap .gantt-result-bar + .gantt-plan-bar .gantt-plan-title {
            top: 2px;
        }

.grid-corner {
    position: absolute;
    display: block;
    border: 1px solid #fff;
    padding: 2px;
    background-color: var(--primary-dark);
    cursor: crosshair;
    pointer-events: auto;
}

.grid-mover {
    position: absolute;
    display: block;
    border: 1px solid #fff;
    padding: 2px;
    background-color: var(--primary-dark);
    cursor: move;
    pointer-events: auto;
}

@keyframes linearmove-top {
    100% {
        background-position: 6px 0, -6px 100%;
    }
}

@keyframes linearmove-right {
    100% {
        background-position: 100% 6px, 6px 0;
    }
}

@keyframes linearmove-bottom {
    100% {
        background-position: -6px 100%, 6px 0;
    }
}

@keyframes linearmove-left {
    100% {
        background-position: 100% 6px, 6px 0;
    }
}

div[class|="grid-range"] {
    position: absolute;
    display: block;
    background: var(--primary-dark);
    outline: none;
    /*cursor: move;*/
    pointer-events: auto;
}

.grid-range-top.is-dotted {
    background: linear-gradient(90deg, var(--primary-dark) 50%, transparent 50%) 0 0 / 6px 1px repeat-x;
    animation: linearmove-top 0.3s infinite;
}

    .grid-range-top.is-dotted.is-move {
        animation: linearmove-top 0.3s infinite;
    }

.grid-range-right.is-dotted {
    background: linear-gradient(0, var(--primary-dark) 50%, transparent 50%) 100% 0 / 1px 6px repeat-y;
}

    .grid-range-right.is-dotted.is-move {
        animation: linearmove-right 0.3s infinite;
    }

.grid-range-bottom.is-dotted {
    background: linear-gradient(90deg, var(--primary-dark) 50%, transparent 50%) 0 100% / 6px 1px repeat-x;
}

    .grid-range-bottom.is-dotted.is-move {
        animation: linearmove-bottom 0.3s infinite;
    }

.grid-range-left.is-dotted {
    background: linear-gradient(0, var(--primary-dark) 50%, transparent 50%) 0 0 / 1px 6px repeat-y;
}

    .grid-range-left.is-dotted.is-move {
        animation: linearmove-left 0.3s infinite reverse;
    }


/* main.css */
.grid .delete::before, .grid .delete::after {
    display: none;
}

.grid .modal-close, .grid .delete {
    -webkit-touch-callout: inherit;
    -webkit-user-select: inherit;
    -moz-user-select: inherit;
    -ms-user-select: inherit;
    user-select: inherit;
    -moz-appearance: inherit;
    -webkit-appearance: inherit;
    background-color: inherit;
    border: inherit;
    border-radius: inherit;
    cursor: pointer;
    pointer-events: inherit;
    display: table-row;
    flex-grow: inherit;
    flex-shrink: inherit;
    font-size: inherit;
    height: inherit;
    max-height: inherit;
    max-width: inherit;
    min-height: inherit;
    min-width: inherit;
    outline: inherit;
    position: inherit;
    vertical-align: inherit;
    width: inherit;
}

.grid-mark-rtd::before {
    position: absolute;
    top: -2px;
    right: -1px;
    content: "◥";
    font-size: 8px;
    color: rgb(99, 102, 241);
}

.grid-mark-change::before {
    position: absolute;
    top: -2px;
    right: -1px;
    content: "◥";
    font-size: 8px;
    color: #00D5BD;
}

/*
.grid-mark-change::before {
    position: absolute;
    top: 5px;
    right: 4px;
    font-size: 16px;
    color: #6366f1;
    content: "update";
    font-family: 'Material Icons';
    line-height: 1;
    background: #fff;
}*/
