@import url("https://fonts.googleapis.com/icon?family=Material+Icons");
@font-face {
  font-family: noto;
  src: url("https://cdn.rococpy.com/fonts/NotoSans/KR/NotoSansKR-Regular.otf");
}

* {
	margin: 0px; 
	padding: 0px; 
	box-sizing: border-box;
  font-family: noto;
}

body, html {
	height: 100%;
  background: linear-gradient(45deg, #4158d0, #c850c0);
}

a {
	margin: 0px;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

a:focus {
	outline: none !important;
}

a:hover {
	text-decoration: none;
}

button{
  cursor: pointer;
}

main{
  transition: 0.3s all;
  height: 100%;
}

.wrap{
  overflow: hidden;
  max-width: 500px;
  background: white;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.material-icons{
  font-size: 1.6rem;
}

.header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  width: 100%;
  height: 50px;
  background: blueviolet;
  color: white;
}

.header > div{
  display: flex;
}

.toggle-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: 0.6rem;
  cursor: pointer;
}

.modal{
  transition: 0.3s all;
  position:absolute;
  left: 0;
  top: 0;
  width:100%;
  height:100%;
  opacity: 0;
  visibility: hidden;
}

.modal.show{
  visibility: visible;
  opacity: 1;
}

.modal-contents{
  transition: 0.3s all;
  position:absolute;
  top: 50%;
  left: 50%;
  transform:translate(-50%, -50%) scale(1.3);
  width:80%;
  height:80%;
  opacity: 0;
  visibility: hidden;
  background:rgba(0, 0, 0, 0.7);
}

.modal-contents.show{
  visibility: visible;
  opacity: 1;
  transform:translate(-50%, -50%) scale(1);
  border-radius: 15px;
}

.modal-contents{
  color: white;
}

.modal-contents-header{
  padding:1rem 0.5rem;
  display:flex;
  align-items: center;
  justify-content:space-between;
}

.modal-contents-header-btns {
  display:flex;
  align-items: center;
}

.modal-contents{
  padding: 0 0.5rem;
}

.modal-contents-body{
  padding: 0 0.5rem;
  height: calc(100% - 70px);
  overflow: auto;
}

.modal-div{
  margin-bottom: 1rem;
  font-size: 14px;
}

.modal-div input {
  color: white;
  background-color: transparent;
  transition: 0.3s all;
  border: none;
  border-bottom: 1px solid #9e9e9e;
  border-radius: 0;
  outline: none;
  height: 3rem;
  width: 100%;
  font-size: 16px;
  margin: 0 0 8px 0;
  padding: 0;
}

.modal-div input:focus {
  border-bottom: 1px solid #26a69a;
  -webkit-box-shadow: 0 1px 0 0 #26a69a;
  box-shadow: 0 1px 0 0 #26a69a;
}

.modal-contents-header-btns{
  display: flex;
  align-items: center;
}

.table{
  height: calc(100% - 86px);
  padding: 16px;
  overflow-y: scroll;
}

table{
  margin-top: 16px;
  width: 100%;
  text-align: center;
  color: #858796;
}

thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #e3e6f0;
}

td, th {
  border: 1px solid #e3e6f0;
  padding: 0.25rem;
}

td:nth-child(1), th:nth-child(1),
td:nth-child(2), th:nth-child(2) {
  width: 40%;
}

.history {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 1rem 0.5rem;
  border-bottom: 1px solid white;
}

.changelog{
  width: 100%;
  border: none;
  border-bottom: 1px solid #9e9e9e;
  background-color: transparent;
  padding: 0.5rem;
  color: #858796;
}

.Full-button {
  height: 45px;
  width: 100%;
  background-color: transparent;
  color: white;
  border: none;
  border-bottom: 1px solid #9e9e9e;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer{
  text-align: center;
  margin-top: 0.2rem;
}