@import './cloud.css';
@import url('https://fonts.googleapis.com/css2?family=Abhaya+Libre:wght@800&display=swap');

/* default */
.rel {
  position: relative;
}

@media only screen and (max-width: 768px) {
  .hidden-xs {
    display: none;
  }
}

/* end default */

/* grid */
.e-container-fluid {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* end grid */

/* navbar */
.e-navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}

.e-navbar.dark {
  background-color: #212529;
}

.e-navbar .e-navbar-title {
  color: white;
  text-align: center;
  font-family: 'Abhaya Libre', serif;
  font-size: 32px;
  margin-bottom: 0;
  line-height: 1;
}

/* end navbar */

/* contents */
.e-contents {
  display: flex;
  min-height: calc(100vh - 52px - 28px);
  position: relative;
  flex-direction: column;
}
.e-contents-mobile {
  min-height: calc(100vh - 52px - 28px);
  position: relative;
  flex-direction: column;
}

@media only screen and (min-width: 768px) {
  .e-contents {
    flex-direction: row;
  }
}

/* left panel */
.e-left-panel {
  background: #fff;
}

.e-top-panel {
  background: #000;
    padding: 10px;
    border-right: 1px solid #ddd;
}

.e-letter-thumb {
  padding-bottom: 10px;
}

.e-letter-thumb img {
  width: 100%;
}

.e-letter-thumb p {
  text-align: center;
  margin-bottom: 0;
}

.e-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  border-bottom: 1px solid #ddd;
}

.e-menu li {
  flex-grow: 1;
}

.e-menu li+li {
  border-left: 1px solid #ddd;
}

.e-menu li a {
  display: block;
  padding: 16px 16px;
  font-size: 24px;
  line-height: 1;
  text-align: center;
}

.e-menu li a:hover {
  cursor: pointer;
  background-color: #fafafa;
}

@media only screen and (min-width: 768px) {
  .e-left-panel {
    width: 200px;
    min-width: 200px;
    padding: 10px;
    border-right: 1px solid #ddd;
  }

  .e-menu {
    display: block;
    border-bottom: none;
  }

  .e-menu li+li {
    margin-top: 10px;
  }

  .e-menu li a {
    text-align: left;
  }
}

/* end left panel */

.e-center-contents {
  flex-grow: 1;
  height: calc(100vh - 52px - 56px - 28px);
}

.e-center-contents.e-canvas-container {
  height: 100%;
}

.e-center-contents .tab-pane {
  height: 100%;
}

.e-content-video {
  width: 100%;
  height: 100%;
}

@media only screen and (min-width: 768px) {
  .e-center-contents {
    height: calc(100vh - 52px - 28px);
  }
}

/* canvas area */

.e-canvas-area {
  height: 100%;
}

.e-canvas-area .e-canvas-btns {
  position: absolute;
  bottom: 100px;
  z-index: 99;
}

.e-canvas-area .e-sample-img {
  position: absolute;
  height: 100%;
}

.e-drawing-area {
  height: 100%;
  width: 100%;
  z-index: 2;
  position: fixed;
}

img{
    vertical-align: middle;
    position: fixed;
    z-index: 0;

}
/* end canvas area */

/* end contents */

/* footer */
.e-footer {
  background-color: #212529;
  padding-top: 5px;
  padding-bottom: 5px;
}

.e-footer .e-footer-text {
  font-size: 18px;
  color: white;
  text-align: center;
  font-family: 'Abhaya Libre', serif;
  margin-bottom: 0;
  line-height: 1;
}


/* end footer */