.ng-lightbox.default {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: #0A0A82;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
  box-sizing: border-box;
}
.ng-lightbox.default * {
  box-sizing: border-box;
}
.ng-lightbox.default .ng-lightbox-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-flow: column;
  padding: 0;
  width: 95%;
  max-height: 95%;
  overflow: visible;
  max-width: 640px;
  color: #0A0A82;
  text-align: center;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.ng-lightbox.default .inner-wrapper {
  display: flex;
  flex-flow: row;
  width: 100%;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .ng-lightbox.default .ng-lightbox-inner {
    padding-left: 0;
    width: 75%;
  }
}
.ng-lightbox.default .ng-lightbox-inner .close-popup {
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: -40px;
  right: -40px;
  z-index: 10;
  overflow: hidden;
  text-indent: -1000px;
  border: 0;
  background: none;
  box-shadow: 0 0;
  transition: opacity 350ms ease-in-out;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .ng-lightbox.default .ng-lightbox-inner .close-popup {
    top: -40px;
    right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .ng-lightbox.default .ng-lightbox-inner .close-popup {
    top: -40px;
    right: 0;
    left: 0;
    margin: 0 auto;
  }
}
.ng-lightbox.default .ng-lightbox-inner .close-popup:after, .ng-lightbox.default .ng-lightbox-inner .close-popup:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #fff;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: background-color 350ms ease-in-out;
}
.ng-lightbox.default .ng-lightbox-inner .close-popup:after {
  width: 40px;
  height: 3px;
}
.ng-lightbox.default .ng-lightbox-inner .close-popup:before {
  width: 3px;
  height: 40px;
}
.ng-lightbox.default .ng-lightbox-inner .close-popup:hover:after, .ng-lightbox.default .ng-lightbox-inner .close-popup:hover:before {
  background-color: #ffe9d9;
}
.ng-lightbox.default .ng-lightbox-inner .thumb-wrapper {
  position: relative;
  overflow: hidden;
  height: 300px;
  -webkit-clip-path: polygon(50% 0, 100% 0, 100% 0, 100% 0, 99% 100%, 45% 100%, 2% 100%, 0 35%, 2% 0);
          clip-path: polygon(50% 0, 100% 0, 100% 0, 100% 0, 99% 100%, 45% 100%, 2% 100%, 0 35%, 2% 0);
}
@media only screen and (max-width: 767px) {
  .ng-lightbox.default .ng-lightbox-inner .thumb-wrapper {
    height: 200px;
  }
}
.ng-lightbox.default .ng-lightbox-inner .thumb-wrapper img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.ng-lightbox.default .ng-lightbox-inner .content {
  position: relative;
  padding: 30px 30px 40px;
  font: 400 14px/2 "Lato", "Arial", sans-serif;
  color: #0A0A82;
  background: #fff;
  z-index: 2;
  -webkit-clip-path: polygon(99% 0%, 99% 30%, 99% 94%, 99% 94%, 3% 100%, 2% -3%, 2% 0%);
          clip-path: polygon(99% 0%, 99% 30%, 99% 94%, 99% 94%, 3% 100%, 2% -3%, 2% 0%);
}
@media only screen and (max-width: 767px) {
  .ng-lightbox.default .ng-lightbox-inner .content {
    padding: 20px;
    font-size: 15px;
  }
}
.ng-lightbox.default .ng-lightbox-inner h3 {
  font: 50px/1.2 "Savate", "Arial", sans-serif;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .ng-lightbox.default .ng-lightbox-inner h3 {
    font-size: 24px;
  }
}
.ng-lightbox.default .ng-lightbox-inner h4 {
  font: normal 16px/1.2px "Lato", "Arial", sans-serif;
  text-transform: uppercase;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .ng-lightbox.default .ng-lightbox-inner h4 {
    font-size: 14px;
  }
}
.ng-lightbox.default .ng-lightbox-inner p {
  margin-bottom: 10px;
}
.ng-lightbox.default .ng-lightbox-inner .buttons {
  margin-top: 5px;
}
.ng-lightbox.default .ng-lightbox-inner .buttons a {
  text-decoration: none;
  font-family: "Lato", "Arial", sans-serif;
  font-size: 14px;
}
