.elementor-widget-ntj-video-player .elementor-widget-container {
  display: inline-block;
  width: 100%;
}

.elementor-widget-ntj-video-player .elementor-widget-container .nv-video {
  background-color: #f4f7f9;
  position: relative;
  transition: width 0.2s cubic-bezier(0.26, 0.76, 0.58, 1),
    height 0.2s cubic-bezier(0.26, 0.76, 0.58, 1),
    transform 0.38s cubic-bezier(0.26, 0.76, 0.58, 1);
}

.elementor-widget-ntj-video-player .elementor-widget-container .nv-video .nv-player-title {
  visibility: hidden;
  position: absolute;
  background-color: #f4f7f9;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
}

.elementor-widget-ntj-video-player .elementor-widget-container .nv-video .nv-player-title>div {
  width: 100%;
  padding-right: 10px;
  padding-left: 10px;
}

.elementor-widget-ntj-video-player .elementor-widget-container .nv-video.nv-is-sticky {
  position: fixed;
  top: 15px;
  right: auto;
  max-width: 280px;
  width: 280px;
  z-index: 100;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.15);
}

.elementor-widget-ntj-video-player .elementor-widget-container .nv-video.nv-is-sticky .ntj-nv-mute,
.elementor-widget-ntj-video-player .elementor-widget-container .nv-video.nv-is-sticky .ntj-nv-volume-bar,
.elementor-widget-ntj-video-player .elementor-widget-container .nv-video.nv-is-sticky .ntj-nv-duration {
  display: none;
}

.elementor-widget-ntj-video-player .elementor-widget-container .nv-video.nv-state-playing:not(.nv-is-sticky) .nv-player-title {
  visibility: visible;
  opacity: 1;
  transition: all 350ms ease-out;
}

.elementor-widget-ntj-video-player .elementor-widget-container:hover .nv-video.nv-state-playing .nv-player-title {
  visibility: hidden;
  opacity: 0;
}

.elementor-widget-ntj-video-player .elementor-widget-container .nv-interface {
  position: relative;
}

@media screen and (min-width: 1120px) {
  .elementor-widget-ntj-video-player .elementor-widget-container .nv-video.nv-is-sticky {
    transform: translateX(80%);
  }
}

@media screen and (min-width: 1300px) {
  .elementor-widget-ntj-video-player .elementor-widget-container .nv-video.nv-is-sticky {
    transform: translateX(115%);
  }
}

@media screen and (max-width: 480px) {
  .elementor-widget-ntj-video-player .elementor-widget-container .nv-video .nv-interface {
    padding-left: 15px;
  }

  .elementor-widget-ntj-video-player .elementor-widget-container .nv-video.nv-is-sticky {
    top: auto;
    bottom: 0;
    max-width: 240px;
    max-height: 175px;
    transform: translateY(-15px);
  }
}

.nv-video *:focus,
.nv-video-stream *:focus {
  outline: none;
}

.nv-video button::-moz-focus-inner,
.nv-video-stream button::-moz-focus-inner {
  border: 0;
}

.nv-video,
.nv-video-stream {
  font-size: 16px;
  font-family: Verdana, Arial, sans-serif;
  line-height: 1.6;
  color: #666;
  overflow: hidden;
}

.nv-video video,
.nv-video img {
  vertical-align: bottom;
}

.nv-video .nv-controls a {
  display: block;
  float: right;
  overflow: hidden;
  cursor: pointer;
  display: inline-block;
  color: #262929;
}

.nv-video .nv-play,
.nv-video .nv-pause,
.nv-video .nv-mute,
.nv-video .nv-unmute,
.nv-video .nv-full-screen,
.nv-video .nv-video-play-icon {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  vertical-align: middle;
  border-radius: 5px;
}

.nv-video .nv-play svg,
.nv-video .nv-pause svg,
.nv-video .nv-mute svg,
.nv-video .nv-unmute svg,
.nv-video .nv-full-screen svg,
.nv-video .nv-video-play-icon svg {
  width: 16px;
  height: auto;
  vertical-align: text-bottom;
}

.nv-video .nv-video-play-icon {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: inline-block;
  height: 65px;
  width: 65px;
  line-height: 65px;
}

.nv-video .nv-video-play-icon svg {
  transform: translateX(-1px) translateY(-2px);
}

.nv-video .nv-video-play-icon:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  border-radius: 50%;
  transition: opacity 0s ease, transform 0s ease, border 0s ease;
  border: 2px solid rgba(255, 255, 255, 0.38);
  opacity: 1;
  visibility: hidden;
}

.nv-video .nv-video-play-icon:hover::after {
  visibility: visible;
  opacity: 0;
  transform: scale(1.3);
  transition-duration: 0.5s;
}

.nv-video .nv-progress {
  padding: 0;
  margin-right: 0;
  margin-left: 0;
  width: 100%;
}

.nv-video .nv-seek-bar {
  width: 0;
  cursor: pointer;
  position: relative;
  height: 7px;
  background: #464849;
  border-radius: 1px;
  overflow: hidden;
  backface-visibility: hidden;
}

.nv-video .nv-play-bar {
  width: 0;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}

.nv-video .nv-volume-bar {
  float: left;
  position: relative;
  width: 50px;
  height: 7px;
  cursor: pointer;
  background: #262929;
  border-radius: 1px;
}

.nv-video .nv-volume-bar-value {
  width: 0;
  height: 100%;
  border-radius: 1px;
  transition: width 350ms ease-out;
}

.nv-video .nv-play-bar,
.nv-video .nv-volume-bar-value {
  background-size: 7px 7px;
  background-color: #238ff7;
  background-image: linear-gradient(45deg,
      rgba(255, 255, 255, 0.3) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, 0.3) 50%,
      rgba(255, 255, 255, 0.3) 75%,
      transparent 75%,
      transparent);
}

.nv-video.nv-state-playing .nv-play-bar {
  animation: player-progress 0.75s linear infinite;
}

@keyframes player-progress {
  0% {
    background-position: 100%;
  }

  100% {
    background-position: -7px;
  }
}

/* ! Back To map  */
.ntj-back-to-top {
  position: fixed;
  bottom: 40px;
  left: 40px;
  display: none;
  z-index: 999999;
}

.ntj-back-to-top-btn {
  background-color: var(--ntj-secondary-color-200);
  /* border: 3px solid  var(--ntj-secondary-color-200); */
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

.ntj-back-to-top {
  position: fixed;
  bottom: 40px;
  left: 40px;
  display: none;
  z-index: 999999;
  width: 60px;
  height: 60px;
}

.ntj-back-to-top-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--ntj-secondary-color-200);
  color: white;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
}

.ntj-progress-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ntj-progress-bg {
  fill: none;
  stroke: #ddd;
  stroke-width: 5;
}

.ntj-progress-bar {
  fill: none;
  stroke: var(--ntj-secondary-color-200);
  stroke-width: 5;
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  transition: stroke-dashoffset 0.2s linear;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}

@media (max-width: 768px) {
  .ntj-back-to-top {
    position: fixed;
    bottom: 10px;
    left: 10px;
    display: none;
    z-index: 999999;
    width: 40px;
    height: 40px;
    border-radius: 50%;
  }

  .ntj-progress-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
  }

  .ntj-back-to-top-btn {
    width: 20px;
    height: 20px;
    padding: 0;
  }

  .ntj-back-to-top-btn i {
    font-size: 8px;
  }
}