:root {
  --color-main-text: #565656;
  --color-bg: #181818;
}

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  color: var(--color-main-text);
  font-family: 'Cabin', arial, sans-serif;
}

p {
  font-size: 16px;
  line-height: 28px;
}

input, textarea {
  outline-width: 0;
}

.color-title-text {
  color: #ffffff;
}

.color-main-text {
  color: #464646;
}

.full-height {
  height: 100%;
}

.d-flex {
  display: flex;
}

.justify-end {
  justify-content: flex-end;
}

.justify-between {
  justify-content: space-between;
}

.align-items-center {
  align-items: center;
}

.article-container {
  flex: 1;
  overflow: hidden;
  position: relative;
  background-color: var(--color-bg);
}

.article {
  height: 100%;
  position: relative;
  overflow-y: scroll;
  margin-right: -16px;
}

.article-container::before {
  content: '';
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;
  opacity: .05; 
  background-image: url('assets/images/bg01.jpg');
  background-size: cover;
}
.topbar {
  position: relative;
  margin-bottom: 10px;
}

.topbar::after {
  content: '';
  position: absolute;
  bottom: 0;
  height: 1px;
  width: 100%;
  background-color: #ffffff;
}

#parent {
  padding-left: 20px;
  padding-right: 22px;
  height: 100%;
}

.map-container {
max-width: 600px;
flex: 1;
height: 100%;
}

#map {
height: 100%;
}


.btn {
  border: 1px solid grey;
  margin: 10px;
  color: inherit;
  font-size: inherit;
  cursor: pointer;
}

.btn-save {
  height: 26px;
}

.input {
  box-sizing: border-box;
  padding: 2px 10px;
  height: 26px;
  background-color: inherit;
  border: 0;
  width: 400px;
  user-select: none;
  position: relative;
  font-size: inherit;
  border: 1px solid grey;
  margin-left: 30px;
  margin-right: 5px;
  color: white;
  font-size: 13px;
}

.editor {
  outline-width: 0;
}

.txt-align-center {
  text-align: center;
}