.blue_color,
.blue,
.blue a,
a.blue {
    color:#1976D2;
}
.red_color,
.red,
.red a,
a.red {
    color:#DE2525;
}
.gray_color,
.gray,
.gray a,
a.gray {
    color:#999;
}
.white_color,
.white,
.white a,
a.white {
    color:#fff;
}
.bg-green {
    background-color:#24c195;
}
.bg-orange {
  background-color: #ff8030;
}
.bg-yellow {
    background-color:#ffa307;
}
.bg-black {
    background-color:#0a0a0a;
}
.bg-red {
    background-color:#f75b5b;
}
.icon img {
    opacity: 0.5;
}
.width50 {
    width:50% !important;
}
.width50-3 {
    width:calc(50% - 3px) !important;
}
.width100,
.w100 {
    width:100% !important;
}
.h100 {
    height: 100% !important;
}
.min_w100 {
    min-width: 100px;
}
.w95 {
    width:95% !important;
}
.w90 {
    width:90% !important;
}
.w85 {
    width:85% !important;
}
.w80 {
    width:80% !important;
}
.w75 {
    width:75% !important;
}
.w70 {
    width:70% !important;
}
.w65 {
    width:65% !important;
}
.w60 {
    width:60% !important;
}
.w80px {
    min-width: auto;
    width: 80px !important;
}
.textcenter {
    text-align: center !important;
}
.textright {
    text-align: right !important;
}
img.img24 {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-top: -3px;
}
img.img18 {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-top: -3px;
}
.cursor {
    cursor:pointer;
}
.floatright {
    float: right;
}

/* Flex */
.flex {
    display: flex;
}
.flex_center {
    display: flex;
    align-items: center;
}
.flex_center_between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.flex_between {
    display: flex;
    justify-content: space-between;
}
.flex_center_center {
    display: flex;
    align-items: center;
    justify-content: center;
}
.flex_top {
    display: flex;
    align-items: flex-start;
}
.flex_bottom {
    display: flex;
    align-items: flex-end;
}
.flex_end {
    display: flex;
    justify-content: flex-end;
}
/* Grid */
.grid {
    display: grid;
}
.grid_2col {
    display: grid;
    grid-template-columns: 1fr 1fr ;
    grid-column-gap: 8px;
    align-items: center;
}
.grid_2col_6gap {
    display: grid;
    grid-template-columns: 1fr 1fr ;
    grid-column-gap: 6px;
    align-items: center;
}
.grid_2col_13gap {
    display: grid;
    grid-template-columns: 1fr 1fr ;
    grid-column-gap: 13px;
    align-items: center;
}
.grid_3col {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 8px;
    align-items: center;
}
.grid_4col {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-column-gap: 8px;
    align-items: center;
}
.grid_2col_2row {
    display: grid;
    grid-template-columns: 1fr 1fr ;
    grid-column-gap: 8px;
    grid-row-gap: 8px;
}
.gap6px {
    grid-column-gap: 6px;
}

.relative {
    position: relative !important;
}
.fixed {
    position: fixed !important;
}
.none {
    display: none;
}
.underline {
    text-decoration: underline;
}

/* Font */
.font12 {
    font-size: 12px;
}
.font13 {
    font-size: 13px;
}
.font14 {
    font-size: 14px;
}
.font15 {
    font-size: 15px;
}
.font16 {
    font-size: 16px;
}
.font18 {
    font-size: 18px;
}
.font20 {
    font-size: 20px;
}
.font600_12_646464 {
    font-family: SamsungOne-600;
    font-size: 12px;
    color: #646464;
}
strong {
    font-family: 'SamsungOne-800';
}
.font600,
.weight600 {
    font-family: 'SamsungOne-600';
}
.font700,
.weight700 {
    font-family: 'SamsungOne-700';
}
.font800,
.weight800 {
    font-family: 'SamsungOne-800';
}
.m0 {
    margin: 0px !important;
} 
.mt0 {
    margin-top: 0px !important;
}
.mt20 {
    margin-top: 20px !important;
}
.mb0 {
    margin-bottom: 0px !important;
}
.mb2 {
    margin-bottom: 2px !important;
}
.mb5 {
    margin-bottom: 5px !important;
}
.mb7 {
    margin-bottom: 7px !important;
}
.mb8 {
    margin-bottom: 8px !important;
}
.mb10 {
    margin-bottom: 10px !important;
}
.mb14 {
    margin-bottom: 14px !important;
}
.mb15 {
    margin-bottom: 15px !important;
}
.mb16 {
    margin-bottom: 16px !important;
}
.mb18 {
    margin-bottom: 18px !important;
}
.mb20 {
    margin-bottom: 20px !important;
}
.mb24 {
    margin-bottom: 24px !important;
}
.mb25 {
    margin-bottom: 25px !important;
}
.mb28 {
    margin-bottom: 28px !important;
}
.mb30 {
    margin-bottom: 30px !important;
}
.mb35 {
    margin-bottom: 35px !important;
}
.mb40 {
    margin-bottom: 40px !important;
}
.mb48 {
    margin-bottom: 48px !important;
}
.mb50 {
    margin-bottom: 50px !important;
}
.mb60 {
    margin-bottom: 60px !important;
}
.mr0 {
    margin-right: 0 !important;
}
.mr5 {
    margin-right: 5px !important;
}
.mr6 {
    margin-right: 6px !important;
}
.mr8 {
    margin-right: 8px !important;
}
.mr10 {
    margin-right: 10px !important;
}
.mr20 {
    margin-right: 20px !important;
}
.mr22 {
    margin-right: 22px !important;
}
.mr25 {
    margin-right: 25px !important;
}
.mr30 {
    margin-right: 30px !important;
}
.ml5 {
    margin-left: 15px !important;
}
.ml10 {
    margin-left: 10px !important;
}
.pt0 {
    padding-top: 0 !important;
}
.pl20 {
    padding-left: 20px !important;
}
.pr20 {
    padding-right: 20px !important;
}
.pb0 {
    padding-bottom: 0px !important;
}
.pb10 {
    padding-bottom: 10px !important;
}
.block {
    display:block !important;
}
.indent15 {
    padding-left: 15px;
}
.top_line {
    border-top: 1px solid rgba(0,0,0,0.12);
}
.bottom_line {
    border-bottom: 1px solid rgba(0,0,0,0.12) !important;
}
.border0 {
    border:0 !important;
}
.left_align {
    right:auto;
    left:0;
}
.right_align {
    left:auto;
    right:0;
}
.center_align {
    margin:0 auto;
}
.margin_right,
.margin_right_auto,
.left_margin {
    margin-right: auto !important;
}
.margin_left,
.margin_left_auto,
.right_margin {
    margin-left: auto !important;
}
.right0 {
    left:auto;
    right:0 !important;
}
.right10 {
    left:auto;
    right:10px !important;
}
.dimm {
    opacity:0.3;
}
/* border */
.border {
    display: block;
    width:100%;
    height:1px;
    border: 0;
    border-bottom: 1px;
    border-color: #757575;
    margin-top: 3px;
    margin-bottom: 4px;
}
.border.selected {
    border-color: #1976D2;
}
.dotted {
    border-style: dotted;
}
.dashed {
    border-style: dashed;
}
.solid {
    border-style: solid;
}
.double {
    border-style: double;
}
.border.double {
    border-bottom: 3px;
    border-color: #757575;
    border-style: double;
}
.groove {
    border-style: groove;
}
.ridge {
    border-style: ridge;
}
.inset {
    border-style: inset;
}
.outset {
    border-style: outset;
}
.middle {
    vertical-align: middle;
}

.font12 {
    font-family: SamsungOne-600;
    font-size: 12px;
}
.cursor {
    cursor: pointer;
}
.back_btn {
    width:20px;
    height:20px;
    cursor: pointer;
    vertical-align: middle;
    margin-top: -3px;
}
.gray_area {
    background: #EFEFEF;
    padding:30px 30px 40px;
    min-height: 230px;
    overflow-y: auto;
}

.left50 {
    left:50%;
    -webkit-transform: translateX(-50%); 
    transform: translateX(-50%);
}
.inline_block {
    display:inline-block !important;
}
.mr_auto{
    margin-right:auto
}

/* toolttp control */
.left0 {
    transform: translateX(0%) !important;
}
.left10 {
    transform: translateX(-10%) !important;
}
.left20 {
    transform: translateX(-20%) !important;
}
.left30 {
    transform: translateX(-30%) !important;
}
.left40 {
    transform: translateX(-40%) !important;
}
.left60 {
    transform: translateX(-60%) !important;
}

@media screen and (max-width:1024px) {
    .edit_img .font18 {
        font-size: 11px;
    }
}

/* spinner */
.loader {
    position: absolute;
    width: 60px;
    height: 60px;
    font-size: 0;

    background-image : url('../images/image/loading_sprite_02.png');
    background-size: 600px 360px;
    animation:  playX 0.15s steps(10) infinite,
                playY 0.9s steps(6) infinite;
}

@keyframes playX {
    from{background-position-x:0px;}
    to{background-position-x:-600px;}
}
@keyframes playY {
    from {background-position-y: 0px;}
    to {background-position-y: -360px;}
}