@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");
.show {
  display: block;
}

.hide {
  display: none;
}

.app-container {
  width: 100%;
  overflow: hidden;
  margin: auto;
  border: 1px solid #000;
}

body {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  color: #282828;
}

a {
  text-decoration: none;
  color: #282828;
}

header {
  margin-bottom: 30px;
  padding: 15px 20px;
}
header .username {
  font-weight: bold;
  margin: 0 16px 0;
}
header nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
header nav .nav-btn,
header nav .close-menu-btn {
  background: none;
  border: none;
  font-size: 20px;
}

h1 {
  font-size: 20px;
  margin: 0 15px 20px 15px;
}

.card {
  border-radius: 10px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  margin-bottom: 20px;
  margin: 20px;
}
.card .card-img {
  border-radius: 10px 10px 0px 0px;
}
.card .card-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px 10px 0 0;
}
.card .card-body {
  padding: 14px;
}
.card .card-body h6,
.card .card-body p {
  margin: 0;
}
.card .card-body h6 {
  font-size: 14px;
  margin-bottom: 6px;
  color: #009677;
  text-transform: uppercase;
  font-weight: 700;
}
.card .card-body p {
  font-weight: bold;
  font-size: 12px;
}
.card .card-body .link-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #F1F2F2;
}
.card .card-body .link-list-item:last-of-type {
  border-bottom: none;
}
.card .card-body .link-list-item .icon {
  padding: 0 20px 0 5px;
}
.card .card-body .link-list-item p {
  margin: 0;
}
.card .card-body .link-list-item .btn {
  font-size: 12px;
  background: #50B848;
  color: #F1F2F2;
  font-weight: 700;
  margin-left: auto;
}
.card .card-footer {
  background: #fff;
  display: flex;
  justify-content: flex-end;
}
.card .card-footer .btn {
  font-size: 12px;
  background: #50B848;
  color: #F1F2F2;
  font-weight: 700;
  margin-left: 0.5rem;
}
.card .card-footer .btn-save {
  color: #009677;
  background: #F1F2F2;
}

.stretched {
  margin-bottom: 20px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-top: 1px solid #F1F2F2;
  background: #fff;
}
.stretched .icon {
  background: #009677;
  color: #fff;
  font-size: 50px;
  padding: 13px 27px;
}
.stretched p {
  margin: 0;
  font-size: 14px;
  width: 55%;
}
.stretched a {
  color: #8DC63F;
  border: none;
}
.stretched a:hover {
  color: #8DC63F;
}

.video .video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.video .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.menu-wrap {
  min-height: 100vh;
  background-color: rgba(0, 0, 0, 0.55);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: -1;
  right: -100%;
  transition: all ease 0.3s;
}
.menu-wrap.open {
  right: 0;
  z-index: 999;
}
.menu-wrap .menu-container {
  position: absolute;
  background: #141414;
  width: 65%;
  max-width: 300px;
  min-height: 100vh;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.menu-wrap .menu-container .close-menu {
  color: #FFF;
  position: absolute;
  right: 26px;
  font-size: 18px;
  top: 38px;
  cursor: pointer;
}
.menu-wrap .menu-container ul {
  list-style-type: none;
  margin: 88px 0 0;
  padding: 0;
}
.menu-wrap .menu-container ul li {
  border-bottom: 1px solid #282828;
}
.menu-wrap .menu-container ul li a {
  color: #FFF;
  padding: 20px;
  display: flex;
  color: #DCDDDE;
  font-size: 14px;
  font-weight: 600;
}
.menu-wrap .menu-container ul li a.active {
  color: #009677;
}
.menu-wrap .menu-container ul li a .menu-item-icon {
  width: 50px;
  text-align: center;
}
.menu-wrap .menu-container ul li a .menu-item-icon i {
  font-weight: 900;
}
.menu-wrap .menu-container .install {
  background: #50B848;
  color: #282828;
  padding: 30px 20px;
  position: relative;
  bottom: 0;
  width: 100%;
  margin-top: 0;
}
.menu-wrap .menu-container .install h2 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}
.menu-wrap .menu-container .install button {
  background: #282828;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 12px;
  color: #FFF;
}
.menu-wrap .menu-container .install i {
  font-size: 32px;
  opacity: 0.4;
  color: #282828;
}/*# sourceMappingURL=style0.css.map */