@font-face {
  font-family: "Proxima Nova";
  src: url("../fonts/ProximaNovaRegular.eot");
  src: url("../fonts/ProximaNovaRegular.woff") format("woff"),
    url("../fonts/ProximaNovaRegular.ttf") format("truetype"),
    url("../fonts/ProximaNovaRegular.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Lato Black";
  src: url("../fonts/Lato-Black.ttf") format("truetype"),
    url("../fonts/Lato-Black.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "Lato Bold";
  src: url("../fonts/Lato-Bold.ttf") format("truetype"),
    url("../fonts/Lato-Bold.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Regular.ttf") format("truetype"),
    url("../fonts/Lato-Regular.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "Lato Light";
  src: url("../fonts/Lato-Light.ttf") format("truetype"),
    url("../fonts/Lato-Light.otf") format("opentype");
  font-display: swap;
}

html,
body {
  font-family: "Proxima Nova", "Open Sans", sans-serif;
  margin: 0;
  padding: 0;
  height: 100%;
  font-size: 16px;
}

/* #page-content {
   padding-bottom: 60px;
} */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Lato Black";
}

.mobile {
  display: block !important;
}

.desktop {
  display: none !important;
}

@media (min-width: 768px) {
  html,
  body {
    font-size: 18px;
  }

  .mobile {
    display: none !important;
  }

  .desktop {
    display: block !important;
  }
}

.container-sbg {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}

.container {
  padding-right: 20px;
  padding-left: 20px;
}

@media screen and (min-width: 768px) {
  .container-sbg {
    margin-right: 50px;
    margin-left: 50px;
  }
}

@media screen and (min-width: 1200px) {
  .container-sbg {
    max-width: 1300px;
    margin: 0 auto;
  }
}

/* HEADER ------------------------------------ */
header {
  background: #fff;
  color: #ff9800;
  padding: 0px 100px;
  display: flex;
  align-items: center;
  font-size: 16px;
  justify-content: space-between;
  /* position: relative; */
  position: fixed;
  box-shadow: 0px 3px 6px #0000000d;
  width: 100%;
  z-index: 999;
}

header .brand {
}

header .brand img {
  height: 45px;
}

header .menu {
  display: flex;
  align-items: center;
}

header .menu .menu-list {
  margin: 0 20px;
  padding: 30px 0;
  position: relative;
}

header .menu .menu-list:hover i {
  transform: rotate(180deg);
}

header .menu .menu-list .mega {
  top: 100%;
  width: 250px;
  left: 0;
  text-align: left;
  z-index: 9;
  display: none;
  background-color: #fafafa;
  position: absolute;
  padding: 10px;
  box-shadow: 0px 3px 6px #0000000d;
}

header .menu .menu-list:hover .mega {
  display: block;
}

header .menu .menu-list .mega-menu {
  padding: 8px 15px;
  display: block;
  margin: 0;
}

header .menu .menu-list .mega-menu a {
  font-family: "Lato";
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}

header .menu .menu-list .mega-menu a:hover {
  color: #014699;
}

header .menu .menu-list.lang-mob {
  display: none;
}

header .option {
  display: flex;
  align-items: center;
}

header .option .search {
  padding: 8px 20px;
  border-right: 1px solid #ff9800;
}

header .option .lang {
  margin-left: 20px;
  font-family: "Lato Bold";
}

header .menu .menu-list i,
header .option i {
  font-size: 14px;
  margin: 0 8px;
  transition: all 0.3s ease-in-out;
}

header .menu .menu-list a,
header .option a {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-family: "Lato Black";
  transition: all 0.3s ease-in-out;
}

header .menu .menu-list a:hover {
  color: #014699;
}

header .menu-brgr {
  display: none;
}

header .search-menu {
  position: relative;
  display: none;
  width: 50%;
  margin-right: 20%;
}

header .search-menu.open {
  display: block;
}

header .search-menu input {
  color: #ff9800;
  border: none;
  border-bottom: 1px solid #ff9800;
  padding: 8px;
  padding-left: 25px;
  width: 100%;
}

header .search-menu input::placeholder {
  color: #00366962;
}

header .search-menu i {
  position: absolute;
  top: 10px;
  left: 0;
}

header .close-search {
  position: absolute;
  display: none;
  top: 0;
  right: 0;
  background: #eff6fd;
  padding: 29px;
  cursor: pointer;
}

header .close-search img {
  width: 20px;
}

header .close-search.open {
  display: block;
}

header .menu.close,
header .option.close {
  display: none;
}

textarea:focus,
input:focus {
  outline: none;
}

header .menu .top-mobile {
  display: none;
}

@media (max-width: 1100px) {
  header .option,
  header .menu {
    display: none;
  }

  header {
    padding: 20px 20px;
  }

  header .menu-brgr {
    display: block;
  }

  header .menu.open {
    display: block;
    position: absolute;
    width: 100%;
    background: #fff;
    left: 0;
    right: 0;
    top: 0;
    text-align: center;
    padding: 20px;
    opacity: 1;
    min-height: 100vh;
  }

  header .menu.open .menu-list a {
    justify-content: center;
  }

  header .menu .menu-list {
    margin: 0 20px;
    padding: 15px 0;
    font-size: 24px;
    font-family: "Lato Black";
  }

  header .menu .menu-list .mega {
    top: 100%;
    width: 100%;
    left: 0;
    text-align: center;
    z-index: 9;
    display: none;
    background-color: #fff;
    position: relative;
  }

  header .menu .menu-list .mega-menu {
    padding: 30px 0px 0px;
    display: block;
    vertical-align: top;
    margin: 0px 2vw;
    font-size: 20px;
    font-family: "Lato";
  }

  header .menu .menu-list i,
  header .option i {
    font-size: 14px;
    margin: 0 0px 0 8px;
    transition: all 0.3s ease-in-out;
  }

  header .menu .menu-list.lang-mob {
    display: block;
    font-size: 16px;
    font-family: "Lato Bold";
    margin-top: 30px;
  }

  header .menu .menu-list.lang-mob .mega-menu {
    padding: 30px 0px 0px;
    display: block;
    vertical-align: top;
    margin: 0px 2vw;
    font-size: 16px;
    font-family: "Lato";
  }

  header .menu .top-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
  }

  header .menu .top-mobile .search-blok {
    margin-right: 30px;
  }

  .search-blok {
    position: relative;
    width: 100%;
  }

  .search-blok input {
    background-color: #f6f7f8;
    padding: 15px;
    padding-right: 40px;
    color: #ff9800;
    width: 100%;
    border: none;
    border-radius: 5px;
  }

  .search-blok i {
    position: absolute;
    right: 15px;
    top: 16px;
    font-size: 20px;
  }

  header .menu .top-mobile .close-mobile img {
    width: 20px;
  }
}

/* end: HEADER ------------------------------------ */
/* FOOTER ------------------------------------ */
footer {
  width: 100%;
  background: #fffbf0;
  padding: 4em 0 1.5em;
}

footer .menu-footer {
  margin-bottom: 20px;
}

footer .menu-footer a {
  margin-bottom: 24px;
  font-family: "Lato Bold";
  display: block;
  font-size: 16px;
}

footer .menu-footer a:last-child {
  margin-bottom: 0;
}

footer .menu-footer .subs {
  margin-top: -14px;
}

footer .menu-footer .subs a {
  margin-bottom: 16px;
  font-size: 14px;
  font-family: "Proxima Nova";
}

footer .menu-footer .subs a:last-child {
  margin-bottom: 0;
}

footer hr {
  margin: 32px 0;
}

footer h6 {
  font-size: 18px;
  font-family: "Lato Bold";
  margin-bottom: 16px;
}

footer h5 {
  font-size: 18px;
  font-family: "Lato Bold";
  margin-bottom: 24px;
  margin-top: 40px;
}

footer p {
  margin-bottom: 32px;
  font-size: 12px;
}

footer .brand img {
  height: 60px;
  margin-bottom: 24px;
}

footer .medsos {
  display: flex;
}

footer .medsos a {
  font-size: 25px;
  color: #ff9800;
  margin-right: 30px;
}

footer .copyright {
  color: #0000007c;
  margin-top: 00px;
  text-align: center;
  font-size: 14px;
}

hr {
  border-top: 1px solid #000000;
}

.bold {
  font-family: "Lato Bold";
}

@media (min-width: 768px) {
  footer p {
    margin-bottom: 0;
    font-size: 12px;
  }

  footer .copyright {
    text-align: center;
    margin-top: 0;
  }

  footer h5 {
    margin-top: 0px;
  }

  footer .desc {
    width: 80%;
  }

  footer hr.desktop {
    margin: 32px -40px;
  }
}

/* end: FOOTER ------------------------------------ */
/* LANDING ------------------------------------ */

.btn {
  font-size: 14px;
  min-width: 170px;
  text-align: center;
  padding: 10px 30px;
  border-radius: 35px;
}

.btn-outline {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  transition: all 0.8s ease-in-out;
}

.btn-outline:hover {
  background: #ff9800;
  border: 1px solid #ff9800;
  color: #fff;
}

.btn-primary {
  background: #ff9800;
  border: 1px solid #ff9800;
  color: #fff;
  transition: all 0.4s ease-in-out;
}

.btn-primary:hover {
  background: #014699;
  border: 1px solid #014699;
  color: #fff;
}

.btn-outline-gr {
  background: transparent;
  border: 1px solid #6f6f6f;
  color: #6f6f6f;
  transition: all 0.8s ease-in-out;
}

.btn-outline-gr:hover {
  background: #6f6f6f;
  color: #fff;
}

.grey {
  background: #fafafa;
}

#landing #section1 {
  padding: 0;
}

#landing #section1 .main-banner {
  position: relative;
  height: 100vh;
}

#landing #section1 .main-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#landing #section1 .main-banner .position {
  position: absolute;
  width: 100%;
  top: 85%;
  left: 0;
  padding: 0;
  text-align: center;
}

#landing #section1 .main-banner .position .content {
  width: 100%;
}

#landing #section1 .main-banner .position .content h1 {
  font-size: 28px;
  color: #fff;
}

#landing #section1 .main-banner .position .content .cta {
  margin-top: 24px;
}

.form-control {
  border: 1px solid #bebebe;
  border-radius: 5px;
  background: #fff;
  font-size: 14px;
  color: black;
  /* padding: 20px; */
}

.form-control::placeholder {
  color: #6f6f6f;
}

.owl-dots {
  margin-top: -150px;
  position: relative;
  width: 100%;
  bottom: 0;
  align-items: center;
  display: flex;
  justify-content: center;
}

.owl-dot {
  height: 10px;
  width: 10px;
  background: #fff !important;
  margin: 10px;
  opacity: 0.7;
  border-radius: 50%;
}

.owl-dot.active {
  height: 25px;
  width: 25px;
  border: 3px solid #fff !important;
  opacity: 1;
  background: transparent !important;
}

button.owl-dot:focus {
  outline: 0;
}

section {
  position: relative;
  padding: 2em 0;
}

.heading {
  font-size: 28px;
  margin-bottom: 18px;
  color: #ff9800;
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-60 {
  margin-top: 60px;
}

.desc-pages {
  font-size: 16px;
}

.fs-20 {
  font-size: 20px;
}

.bg-left {
  position: absolute;
  background: linear-gradient(136deg, #0e5b8d 39%, #3fadf7 100%);
  width: 25%;
  height: 73%;
  left: 0px;
}

.video-area {
  margin-top: 40px;
}

#landing #section2 {
  padding: 3em 0 2em;
}

#landing #section2 .cta a {
  font-size: 16px;
}

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

.img-desc {
  padding: 20px 0;
}

.img-desc img {
  width: 100%;
}

.content1000 {
  max-width: 1000px;
  margin: 0 auto;
}

.content900 {
  max-width: 900px;
  margin: 0 auto;
}

.content800 {
  max-width: 800px;
  margin: 0 auto;
}

.content700 {
  max-width: 700px;
  margin: 0 auto;
}

.content600 {
  max-width: 600px;
  margin: 0 auto;
}

.card-list {
  margin-bottom: 32px;
}

.card-list .img-area {
  margin-bottom: 24px;
  text-align: center;
}

.card-list .img-area img {
  height: 200px;
}

.card-list h6 {
  font-size: 18px;
  margin-bottom: 24px;
  color: #ff9800;
  text-align: center;
  line-height: 30px;
}

.card-list .list {
  padding-left: 18px;
}

.subhead {
  font-size: 18px;
  margin-bottom: 24px;
  color: #ff9800;
}

.card-rincian {
  margin-bottom: 32px;
}

.card-rincian h6 {
  font-size: 18px;
  margin-bottom: 24px;
  color: #ff9800;
  text-align: center;
}

.card-rincian .img-area img {
  width: 100%;
}

@media (min-width: 768px) {
  .card-rincian h6 {
    font-size: 20px;
    margin-bottom: 24px;
    color: #ff9800;
    text-align: center;
  }

  .subhead {
    font-size: 20px;
    margin-bottom: 24px;
    color: #ff9800;
  }

  .card-list {
    margin-bottom: 0px;
  }

  .card-list .img-area {
    margin-bottom: 24px;
    text-align: center;
  }

  .card-list .img-area img {
    height: 250px;
  }

  .card-list h6 {
    font-size: 20px;
    margin-bottom: 24px;
    color: #ff9800;
    min-height: 60px;
    text-align: center;
  }

  #landing #section6 .card-list h6 {
    min-height: 90px;
  }

  .card-list .list {
    padding-left: 18px;
  }

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

  .video-area {
    margin-top: 0px;
  }

  .heading {
    font-size: 40px;
  }

  .desc-pages {
    font-size: 18px;
  }

  .row .padleft {
    padding-left: 40px;
  }

  .row .padright {
    padding-right: 40px;
  }

  section {
    position: relative;
    padding: 4em 0;
  }

  #landing #section1 .main-banner .position .content h1 {
    font-size: 56px;
    color: #fff;
  }

  #landing #section1 .main-banner .position .content {
    width: 60%;
  }

  #landing #section1 .main-banner .position {
    position: absolute;
    width: 100%;
    top: 85%;
    left: 0;
    padding: 0;
    text-align: center;
  }

  #landing #section2 {
    padding: 6em 0 4em;
  }

  .fullsc {
    padding: 0;
  }

  .cta-view {
    display: flex;
    align-items: center;
  }

  .cta-view a {
    font-size: 16px;
    margin-right: 8px;
    text-decoration: underline;
    transition: all 0.5s ease-in-out;
  }

  #landing #section2 .cta a {
    font-size: 20px;
  }
}

@media (min-width: 1200px) {
  #landing #section1 .main-banner .position {
    position: absolute;
    width: 100%;
    top: 85%;
    padding: 0;
    text-align: center;
  }
}

/* end: LANDING ------------------------------------ */
/* DOKUMEN ------------------------------------ */
#dokumen #section1 {
  min-height: 100vh;
  padding-top: 130px;
}

.card-folder {
  text-align: center;
  cursor: pointer;
  padding: 20px;
  margin-bottom: 32px;
  border-radius: 10px;
  transition: all 0.6s ease-in-out;
}

.card-folder:hover {
  background-color: #fafafa;
}

.card-folder .icons {
  font-size: 60px;
  margin-bottom: 8px;
  color: #ff9800;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.card-folder:hover .icons {
  color: #014699;
}

.card-folder .icons h6 {
  font-size: 20px;
  color: #ff9800;
  cursor: pointer;
}

@media (min-width: 768px) {
}

/* end: DOKUMEN ------------------------------------ */

/*  */

.breadcrumb {
  background-color: transparent;
  font-size: 16px;
  padding: 0px;
}

.breadcrumb-item {
  color: blue;
}

header .menu .menu-list .mega-menu a.active {
  color: #014699;
}

/* caoursel */
.carousel-inner > .item > a > img,
.carousel-inner > .item > img,
.img-responsive,
.thumbnail a > img,
.thumbnail > img {
  display: block;
  max-width: 100%;
  height: auto;
}

.carousel {
  position: relative;
}
.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner > .item {
  position: relative;
  display: none;
  -webkit-transition: 0.6s ease-in-out left;
  -o-transition: 0.6s ease-in-out left;
  transition: 0.6s ease-in-out left;
}
.carousel-inner > .item > a > img,
.carousel-inner > .item > img {
  line-height: 1;
}
@media all and (transform-3d), (-webkit-transform-3d) {
  .carousel-inner > .item {
    -webkit-transition: -webkit-transform 0.6s ease-in-out;
    -o-transition: -o-transform 0.6s ease-in-out;
    transition: -webkit-transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out,
      -o-transform 0.6s ease-in-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px;
  }
  .carousel-inner > .item.active.right,
  .carousel-inner > .item.next {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    left: 0;
  }
  .carousel-inner > .item.active.left,
  .carousel-inner > .item.prev {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    left: 0;
  }
  .carousel-inner > .item.active,
  .carousel-inner > .item.next.left,
  .carousel-inner > .item.prev.right {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    left: 0;
  }
}
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}
.carousel-inner > .active {
  left: 0;
}
.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}
.carousel-inner > .next {
  left: 100%;
}
.carousel-inner > .prev {
  left: -100%;
}
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}
.carousel-inner > .active.left {
  left: -100%;
}
.carousel-inner > .active.right {
  left: 100%;
}
.carousel-control {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 15%;
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  background-color: rgba(0, 0, 0, 0);
  filter: alpha(opacity=50);
  opacity: 0.5;
}
.carousel-control.left {
  background-image: -webkit-linear-gradient(
    left,
    rgba(0, 0, 0, 0.5) 0,
    rgba(0, 0, 0, 0.0001) 100%
  );
  background-image: -o-linear-gradient(
    left,
    rgba(0, 0, 0, 0.5) 0,
    rgba(0, 0, 0, 0.0001) 100%
  );
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(0, 0, 0, 0.5)),
    to(rgba(0, 0, 0, 0.0001))
  );
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5) 0,
    rgba(0, 0, 0, 0.0001) 100%
  );
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
  background-repeat: repeat-x;
}
.carousel-control.right {
  right: 0;
  left: auto;
  background-image: -webkit-linear-gradient(
    left,
    rgba(0, 0, 0, 0.0001) 0,
    rgba(0, 0, 0, 0.5) 100%
  );
  background-image: -o-linear-gradient(
    left,
    rgba(0, 0, 0, 0.0001) 0,
    rgba(0, 0, 0, 0.5) 100%
  );
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(0, 0, 0, 0.0001)),
    to(rgba(0, 0, 0, 0.5))
  );
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.0001) 0,
    rgba(0, 0, 0, 0.5) 100%
  );
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
  background-repeat: repeat-x;
}
.carousel-control:focus,
.carousel-control:hover {
  color: #fff;
  text-decoration: none;
  outline: 0;
  filter: alpha(opacity=90);
  opacity: 0.9;
}
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-next,
.carousel-control .icon-prev {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-block;
  margin-top: -10px;
}
.carousel-control .glyphicon-chevron-left,
.carousel-control .icon-prev {
  left: 50%;
  margin-left: -10px;
}
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-next {
  right: 50%;
  margin-right: -10px;
}
.carousel-control .icon-next,
.carousel-control .icon-prev {
  width: 20px;
  height: 20px;
  font-family: serif;
  line-height: 1;
}
.carousel-control .icon-prev:before {
  content: "\2039";
}
.carousel-control .icon-next:before {
  content: "\203a";
}
.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  padding-left: 0;
  margin-left: -30%;
  text-align: center;
  list-style: none;
}
.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #000\9;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #fff;
  border-radius: 10px;
}
.carousel-indicators .active {
  width: 12px;
  height: 12px;
  margin: 0;
  background-color: #fff;
}
.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.carousel-caption .btn {
  text-shadow: none;
}
@media screen and (min-width: 768px) {
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next,
  .carousel-control .icon-prev {
    width: 30px;
    height: 30px;
    margin-top: -10px;
    font-size: 30px;
  }
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -10px;
  }
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -10px;
  }
  .carousel-caption {
    right: 20%;
    left: 20%;
    padding-bottom: 30px;
  }
  .carousel-indicators {
    bottom: 20px;
  }
}

.gradientbiru {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(243, 251, 255, 1) 24%,
    rgba(219, 241, 253, 1) 42%,
    rgba(200, 235, 252, 1) 57%,
    rgba(165, 223, 249, 1) 100%
  );
}

.gradientbirufull {
  background: linear-gradient(
    180deg,
    rgba(165, 223, 249, 1) 0%,
    rgba(165, 223, 249, 1) 100%
  );
}

/* popup */
#thover {
  display: none; /*default*/
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

#tpopup {
  position: absolute;
  width: 500px;
  height: 180px;
  background: #fff;
  left: 50%;
  top: 50%;
  border-radius: 5px;
  /* padding: 60px 0; */
  margin-left: -240px; /* width/2 + padding-left */
  margin-top: -220px; /* height/2 + padding-top */
  text-align: center;
  /* box-shadow: 0 0 10px 0 #000; */
}
#tclose {
  position: absolute;
  background: #7cb7dd;
  background-color: #7cb7dd;
  color: white;
  right: -15px;
  top: -15px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 8px;
  font-weight: bold;
  font-family: "Arial Black", Arial, sans-serif;
  cursor: pointer;
  box-shadow: 0 0 10px 0 #000;
}

.title-list {
  font-size: 20px;
  font-weight: bold;
  color: black;
  min-height: 60px;
}
