/* Landing page */
.landing-page {
  background: rgba(33, 167, 220, 0.7);
  max-width: 500px;
  margin: 100px auto;
  border-radius: 4px;
  box-shadow: 0 4px 10px 4px rgba(19, 35, 47, 0.3);
}

.tab-group {
  list-style: none;
  margin-bottom: 40px;
}

.tab-group:after {
  content: "";
  display: table;
  clear: both;
}

.tab-group li a {
  display: block;
  text-decoration: none;
  padding: 15px;
  font-size: 20px;
  float: left;
  width: 50%;
  text-align: center;
  cursor: pointer;
  transition: 0.5s ease;
  background: rgba(33, 167, 220);
}

.tab-group li:hover {
  background: rgba(33, 167, 220, 0.7);
  color: #ffffff;
}

.tab-group .active a {
  background: #64c1e6;
  color: #ffffff;
}

.tab-content {
  padding: 10px 80px;
}

.tab-content>div:last-child {
  display: none;
}

.landing-page h1 {
  text-align: center;
  color: #ffffff;
  font-weight: 300;
  font-size: 25px;
  margin-bottom: 40px;
}

.landing-page label {
  font-size: 22px;
  padding: 10px 0;
  color: #fff;
}

.landing-page input {
  font-size: 22px;
  display: block;
  width: 100%;
  height: 100%;
  padding: 5px 10px;
  background: none;
  background-image: none;
  border: 1px solid #000;
  color: #ffffff;
  margin: 10px 0;
  border-radius: 0;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.landing-page input:focus {
  outline: 0;
  border-color: #fff;
}

.field-wrap {
  margin-bottom: 40px;
}

input.button {
  margin-top: 50px;
  padding: 15px 0;
  font-size: 2rem;
  text-transform: uppercase;
  background: #21A7DC;
  color: #ffffff;
  display: block;
  width: 100%;
}

.button:hover,
.button:focus {
  cursor: pointer;
  background: #81f7d7;
}

/* Landing page end */

/* Loading page style */
.loading {

  z-index: 20;
  position: relative;
  width: 100%;
  height: 100vh;
  background: rgba(33, 167, 220, 0.2);
  text-align: center;
}

.loading img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Loading page style end */


.header {
  padding: 10px 0;
}

.header li {
  display: inline-block;
  line-height: 40px;
  margin: 0 10px;
  list-style: none;
}

.header li a {
  line-height: 40px;
  margin: 0 10px;
}

.dropdown-container {
  display: inline-block;
}

.btn {
  background: none;
  outline: none;
  border: none;
  display: inline-block;
  text-align: center;
  box-sizing: border-box;
  padding: 5px 10px;
  border: 1px solid #fff;
}

.btn:hover {
  border: 1px solid gray;
  color: #FFF;
  background-color: #21A7DC;
  border-radius: 5px;
}

.btn.btn-delete {
  display: block;
  background-color: #21A7DC;
  position: absolute;
  bottom: 5px
}

.dropdown-list {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 10;
  min-width: 120px;
}

.dropdown-list.show {
  width: 120px;
  display: block;
}

.dropdown-list button {
  background: none;
  outline: none;
  border: none;
  padding: 0px 5px;
  width: 100%;
  line-height: 38px;
  cursor: pointer;
  text-align: left;
}

.dropdown-list button:hover {
  background-color: #efe7e7;
}

.font-size-input input[type=number] {
  width: 60px;
  padding-left: 5px;
}

.header li .fa {
  margin: 0 2.5px;
  width: 25px;
  height: 25px;
  text-align: center;
  line-height: 25px;
}

.activeTool {
  border-radius: 5px;
  background: gray;
}

[data-tooltip] {
  position: relative;
  cursor: default;
}

[data-tooltip]::after {
  position: absolute;
  color: #fff;
  background-color: #000;
  left: -30px;
  width: 70px;
  bottom: -30px;
  padding: 0 5px;
  content: attr(data-tooltip);
  border-radius: 15px;
  font-size: 9px;
  visibility: hidden;
  z-index: 5;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.2s;
}

[data-tooltip]:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

/* Main content style (ie slide) */

.slide-list {
  overflow: hidden;
  overflow-y: auto;
  height: 100%;
  border: 1px solid #AAA;
}

.slide-list .slide-body {
  border: none;
}

.slide-list .slide-body {
  margin-top: 10px;
  cursor: pointer;
  position: relative;
}

.slide {
  border: 1px solid gray;
  padding-top: 20px;
  height: 100%;
  display: none;
}

.slide-wrapper .slide-body {
  margin: 0 8%;
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.4);
}

.slide.activeSlide {
  display: block;
}

.main-content {
  padding: 10px;
  position: relative;
  box-sizing: border-box;

}

div[contenteditable=true]:empty:before {
  content: attr(placeholder);
  display: block;
  color: #000;
}


div[contenteditable=true] {
  border: 1px dashed #AAA;
  width: 100%;
  padding: 5px;
  height: 100%;
}

div.title[contenteditable=true],
div.user-note[contenteditable=true] {
  border: 1px solid rgb(33, 167, 220);
}

div[contenteditable="true"]:hover {
  background-color: rgba(33, 167, 220, 0.5);
}

/* Thumbnail style */

.thumbnail {
  height: 18vh;
  margin: 30px auto;
  width: 80%;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.thumbnail .delete {
  display: none;
}

.thumbnail .delete.single {
  display: none !important;
}

.thumbnail:hover {
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15), 0 3px 4px rgba(0, 0, 0, 0.13);
}

.thumbnail.active {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25), 0 5px 10px rgba(0, 0, 0, 0.22);
}

.thumbnail.active .delete {
  display: inline;
  position: absolute;
  right: -4px;
  padding: 3px;
  border: 0.5px solid;
  border-radius: 50%;
  text-align: center;
  line-height: 11px;
  font-size: 13px;
  cursor: pointer;
  z-index: 5;
  color: #fff;
  background-color: red;
}

.add {
  position: fixed;
  width: 25px;
  height: 25px;
  bottom: 30px;
  line-height: 26px;
  background-color: #21A7DC;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
}

/* styling scrollbar  */
::-webkit-scrollbar {
  width: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.resizer {
  position: absolute;
  right: -4px;
  bottom: -4px;
  cursor: nwse-resize;
  width: 10px;
  display: none;
  height: 10px;
  background-color: "#fff";
  border: 2px solid #AAA;
  border-radius: 50%;
}

.dragger {
  position: absolute;
  width: 100%;
  top: 0;
  height: 5px;
  cursor: grab;
}

.fullscreen {
  background-color: #fff;
}

.fullscreen .slide-body {
  padding: 40px;
}

input[type="file"] {
  display: none;
}

.import-file {
  display: inline-block;
  cursor: pointer;
  width: 100%;
  padding-left: 5px;
}


/* Noitification bar  */

.notification {
  min-width: 200px;
  right: -200px;
  padding: 15px;
  top: 40px;
  margin: 0 auto;
  text-align: center;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  color: white;
  font-size: 16px;
  text-transform: capitalize;
  position: absolute;
  z-index: 10;
  transition: right 0.15s;

}

.notification.active {
  display: block;
  right: 0;
}

.notification.success {
  background-color: #60CC7B;
}

.notification.error {
  background-color: #FD3F3F;
}

@media (max-width:768px) {
  .slide-wrapper .slide-body {
    margin: 0 2%;
  }

  .add {
    width: 15px;
    height: 15px;
    line-height: 15px;
  }
}
