@import url('https://fonts.googleapis.com/css?family=Noto+Sans+KR:400');
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+KR:700');

body {
    box-sizing: border-box;
    font-family: 'Noto Sans KR', sans-serif;
}

#main {
    position: absolute;
    width: 100%;
    height: 100vh;
    max-width: 640px; 
    max-height: 640px;
    text-align: center;
    font-size: 12px;    
}


.btn {
    padding: 6px 2px;
    color: rgba(33, 37, 41, 1);
    background-color: rgba(255, 255, 255, 1);
    border: none;
    font-size: 12px;
}

.btnA {
    background-color: rgba(206, 212, 218, 0.3);
}

.btnL {
    border-color: rgba(206, 212, 218, 1);
}

.btn.turtle {
    color: rgba(135, 175, 15, 1);    
    background-color: rgba(255, 255, 255, 1);
}

.btn.turtleA {
    background-color: rgba(135, 175, 15, 0.15);
}

.radius {
    border-radius: 5px;
}

.table {
    margin-bottom: 10px;
}

.table tr {
    border: none;
    border-bottom: 1px solid rgba(246, 246, 246, 1);    
}

.table th {
    padding: 4px 2px;
    border: none;
    border-bottom: 2px solid rgba(246, 246, 246, 1);        
}

.table td {
    padding: 4px 2px;
    border: none;
}

.table td.right {
    padding: 4px 4px 4px 0px;
}

.dropdown-item {
    text-align: center;
    font-size: 12px;
    line-height: 2.0;
}


/*상단 로고*/
#logoGrid {
    height: 5%;
    border-bottom: 0.1px solid rgba(206, 212, 218, 1);
}

#logoGrid img {
    height: 100%;
}


/*하단 버튼*/
#bottomGrid {
    height: 8%;
    display: grid;
}

#bottomGrid .btn {
    border-top: 1px solid rgba(225, 225, 225, 1);
    border-radius: 0px;
    background-color: rgba(255, 255, 255, 1);
    font-size: 13px;
}

#bottomGrid .btn.turtleA {
    border-top: 2px solid rgba(135, 175, 15, 1);    
    color: rgba(135, 175, 15, 1);
    font-weight: 700;
}


/*모달*/
.black-background {
    width: 100%;
    height: 100%;
    max-width: 640px; 
    max-height: 640px;
    display: none;
    position: fixed;
    padding: 10px;
    background-color: rgba(33, 37, 41, 0.5);
    z-index: 3;
}

.white-background {
    max-width: 480px;    
    margin: auto;
    padding: 10px;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 5px;
}

.modalName {
    margin-bottom: 10px;
    padding: 10px 0px;
    color : rgba(35, 35, 35, 1);  
    font-size: 14px;
    font-weight: 700;    
}

.modalInfo {
    margin-bottom: 10px; 
}

.modalClose .btn {
    padding: 6px 2px;
    background-color: rgba(245, 245, 244, 1);
    border: 0.1px solid rgba(206, 212, 218, 1);
    color: rgba(64, 64, 64, 1);
    font-size: 13px;
}


/*그리드*/
.one {
    display: grid;    
}

.two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 2px;
}

.three {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 2px;    
}

.four {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-column-gap: 2px;    
}

.five {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-column-gap: 2px;    
}

/*기본속성*/
.click {
    cursor: pointer;
}

.left {
    text-align: left;
}

.tab {
    padding-left: 4px;
}

.right {
    text-align: right;
}

.large {
    font-size: 13px;    
}

.small {
    font-size: 11px;
}

.bold {
    font-weight: 700;
}

.under {
    text-decoration: underline;
}

.through {
    text-decoration: line-through;
}

.turtle {
    color: rgba(135, 175, 15, 1);
}

.black {
    color : rgba(35, 35, 35, 1);
}

.dgray {
    color: rgba(64, 64, 64, 1);
}

.gray {
    color: rgba(163, 163, 163, 1);
}

.red {
    color: rgba(221, 19, 27, 1);
}

.blue {
    color: rgba(0, 123, 255, 1);
}

.turtleB {
    background-color: rgba(135, 175, 15, 0.15);
}

.grayB {
    background-color: rgba(245, 245, 244, 1);
}

.redB {
    background-color: rgba(221, 19, 27, 0.15);
}