@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --theme-color: #000000;
  --theme-color-second: #eec436;
  --theme-color-third: #0e1f0b;

  --heading-font: "Playfair Display", serif;
  --paragraph-font: "Urbanist", sans-serif;
  --span-font: 'spanist';



  --shadow-small: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-base: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-large: 0 10px 20px rgba(0, 0, 0, 0.2);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;

}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  outline: none;
  font-size: 17px;
  color: #1e1e1e;
  background-color: #fff;
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  font-family: "Urbanist", sans-serif;
  /* color: var(--theme-color) !important; */
}


a {
  color: #0055f1;
  text-decoration: none;
  transition: all 0.5s;

}

a:hover {
  text-decoration: none;
  transition: all .6s;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  margin-bottom: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
}

.span-font {
  font-family: var(--span-font);
}

p {
  margin: 0;
  line-height: 27px;
  margin-bottom: 15px;
  font-size: 16px;
}

ul li {
  margin-bottom: 0px;
}

.img-fluid {
  display: block;
  width: 100%;
  max-width: 100%;
}

.li {
  display: inline-block;
  padding: 0px 5px;
}

ul {
  list-style: none;
  padding: 0;
}

h1 {
  font-size: 59px;
}

h2 {
  font-size: 50px;
}

h3 {
  font-size: 45px;
}

h4 {
  font-size: 25px;
}

h3.menu-h3-small {
  font-size: 25px;
  color: #000;
}

h5 {}

h6 {}


.bg-cover {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.gap {
  margin-bottom: 30px;
}

section {
  padding: 80px 0px;
}

.form-control:focus {
  border-color: #ced4da;
  outline: 0;
  box-shadow: none;
}

input {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

textarea {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

select {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
  color: #c1c0bd;
}

/* navbar----------- */


@-webkit-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@-moz-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

* {
  box-sizing: border-box;
}

.m-backtotop {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: fixed;
  bottom: -50px;
  right: 0;
  width: 50px;
  height: 50px;
  background: var(--theme-color);
  border-radius: 0;
  text-align: center;
  border: 2px solid var(--theme-color-second);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  overflow: hidden;
  color: #fff;
  display: none;
}

.m-backtotop.active {
  bottom: 60px;
  opacity: 1;
}

.m-backtotop>div {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.m-backtotop>div.arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
  z-index: 999;
}

.m-backtotop>div.text {
  font-size: 0.5rem;
  line-height: 10px;
  text-transform: uppercase;
  font-weight: 900;
  font-family: "Open Sans", sans-serif;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(50%) translateX(-50%);
  opacity: 0;
  margin-top: 1px;
}

.m-backtotop:hover {
  transform: scale(1.1);
  bottom: 0px;
  cursor: pointer;
  background: black;
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.1);
}

.m-backtotop:hover>div.arrow {
  transform: translateY(-150%) translateX(-50%);
  opacity: 0;
}

.m-backtotop:hover>div.text {
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

/* Progress bar styles */
.m-backtotop .progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--theme-color-second);
  transition: height 0.2s ease-in-out;
}

.py-5 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.py-6 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.py-7 {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

.py-8 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.py-9 {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}

.py-10 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.gap-p p {
  margin-bottom: 0px;
}


/* ---------------------- */


/* ---------------------- */
.small {
  display: none;
}




a.navbar-brand img {
  width: 102px;
}

.sticky-top-1.sticky a.navbar-brand img {
  width: 90px;
}

.header_menu li a {
  color: #000000;
  font-size: 16px;
  text-transform: uppercase;
  padding: 29px 19px;
  display: inline-block;
}

.header_menu li a:hover {
  color: var(--theme-color-second);
}

.hd_info {
  display: flex;
  align-items: center;
  gap: 10px;

  flex-wrap: wrap;
}

a.comon-btn {
  background: #ffffff6b;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  padding: 12px 6px;
  border-radius: 5px;
  width: 12rem;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid #fff;
}

a.comon-btn:hover {
  background: var(--theme-color-third);
  color: #fff;
}

a.btn-2 {
  border: 1px solid var(--theme-color-third);
  color: var(--theme-color-third);
  background-color: #0e1f0b44;
}

a.btn-white {
  background: #fff;
  color: #1e1e1e;
}

.header_menu li a {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  padding: 29px 19px;
  display: inline-block;
  font-weight: 500;
}

.navbar li:hover a {
  color: var(--theme-color-second);
}

.navbar li:hover .dropdown-menu {
  transition: .3s;
  opacity: 1;
  visibility: visible;
  top: 100%;
  transform: rotateX(0deg);
}

@media all and (min-width: 992px) {
  .navbar .dropdown-menu-end {
    right: 0;
    left: auto;
  }

  .navbar li .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    margin-top: 0;
  }

  .navbar li:hover a {
    color: var(--theme-color-second);
  }

  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }

  .navbar .dropdown-menu.fade-up {
    top: 180%;
  }

  .navbar li:hover .dropdown-menu {
    transition: .3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }
}

ul.dropdown-menu.fade-up li a:hover {
  color: #fff !important;
  background: var(--theme-color-second);
}

#main_header ul.dropdown-menu.fade-up li:last-child {
  border-bottom: 0px;
}

#main_header ul.dropdown-menu.fade-up li {
  border-bottom: 1px solid #c1c0bd;
  margin: 0 0 0 0;
}

ul.dropdown-menu.fade-up li a {
  color: #000 !important;
  font-size: 14px;
  display: block;
  width: 100%;
  padding: 11px 12px;
}

ul.dropdown-menu.fade-up {
  border: none;
  background: #fff;
  padding: 0 0;
  min-width: inherit;
  width: 200px;
  border-radius: 0px;
}

.link-sm-2 i {
  top: -9px !important;
}

.link-sm-2 {
  position: relative;
}


.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%
}

.sticky-top-1.sticky {
  background: #fff !important;
  z-index: 9999999999999;
}



.banner h5 {
  font-family: var(--paragraph-font);
  text-transform: uppercase;
}

.banner h1 {
  text-transform: uppercase;
  color: var(--theme-color-second);
  margin: 0;
}

.banner h4 {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 25px;
}

.banner {
  padding: 125px 0 10px 0;
}

a.banner-call {
  line-height: normal;
  display: inline-block;
}

a.banner-call h6 {
  margin-bottom: 0;
  font-family: var(--paragraph-font);
  text-transform: uppercase;
  color: #000;
  font-size: 22px;
}

a.banner-call h5 {
  font-weight: bold;
  font-size: 35px;
  color: #fff;
}

.banner .heading {
  margin-bottom: 55px;
}

.banner .location {
  color: #fff;
  display: flex;
  gap: 10px;
}

.banner .location i {
  color: var(--theme-color-second);
}

p a {
  color: var(--theme-color-second);
}

/* home-sec-2 */

.home-sec-2 h2 span {
  color: var(--theme-color-second);
}

.home-sec-2 h4 {
  text-transform: uppercase;
  font-family: var(--paragraph-font);
  letter-spacing: 3px;
}

/* .0e1f0b */
.video-box {
  background-color: var(--theme-color-third) !important;
  color: #fff;
}

.map {
  line-height: 0;
}

.map iframe {
  width: 100%;
}

.video-box h3 span {
  color: var(--theme-color-second);
  font-size: 40px;
}

.video-box h4 {
  margin-bottom: 15px;
  font-size: 30px;
}

.signature-service {
  background-color: #e7eae3;
}

.signature-service h2 {
  color: var(--theme-color-third);
}

.signature-service .sign-box {
  color: #000000;
}

.our-service .service-box {
  position: relative;
}

.our-service .service-box .over-lay {
  position: absolute;
  width: 100%;
  left: 0;
}

.our-service .service-box .over-lay h4 {
  margin-bottom: 0;
  color: var(--theme-color-second);
}

.our-service .service-box .over-lay p {
  font-size: 14px;
  line-height: normal;
}

.our-service .service-box h4 {
  font-size: 28px;
}

.our-service .service-box .over-lay a.comon-btn {
  padding: 8px;
  width: 10rem;
}

.our-service .service-box#bottom .over-lay {
  bottom: 0;

}

.our-service .service-box#top .over-lay {
  top: 0;

}

.our-service .heading h5 {
  font-family: var(--paragraph-font);
  text-transform: uppercase;
  font-size: 25px;
  color: #000;
  margin-top: 25px;
}

.our-service .heading h5 a {
  color: green;
}

.home-sec-3 .heading h5 {
  font-family: var(--paragraph-font);
  text-transform: uppercase;
  font-size: 20px;
  color: #000;
  margin-top: 20px;
}

section.home-sec-3.bg-cover p a {
    color: blue;
}

.home-sec-3 .heading h5 a {
  color: #000;
}

.home-sec-4 h2,
.home-sec-5 h2 {
  color: var(--theme-color-third);
}

.home-sec-6 h2 {
  color: var(--theme-color-second);
}

.home-sec-7 {
  background-color: #e7eae3;
}

.home-sec-7 h3 {
  color: var(--theme-color-third);
}

.home-sec-7 .heading h5 {
  font-family: var(--paragraph-font);
  text-transform: uppercase;
  font-size: 25px;
  color: #000;
  margin-top: 25px;
}

.home-sec-7 .heading h5 a {
  color: green;
}

.satisfied-center {
  background-color: #e7eae3;
}

.satisfied-center h2 {
  color: var(--theme-color-third);
}

.satisfied-center .rating-box .img-box {
  width: 55px;
  height: 55px;
  overflow: hidden;
  border-radius: 600px;
}

.satisfied-center .rating-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  justify-content: space-between;
}

.satisfied-center .rating-box span {
  background-color: #eec436;
  font-size: 14px;
  width: 50px;
  display: flex;
  justify-content: center;
  gap: 2px;
  border-radius: 600px;
  padding: 2px 10px;
}

.satisfied-center .review-box .content {
  height: 140px;
  overflow-y: scroll;
  margin-bottom: 18px;
}

.satisfied-center .review-box .content p {
  font-style: italic;
}

.satisfied-center .google-box p {
  font-size: 14px;
  line-height: normal;
}

.satisfied-center .google-box p span {
  font-size: 12px;
}

.satisfied-center .google-box {
  display: flex;
  align-items: center;
  margin-top: 10px;
  justify-content: space-between;
}

.satisfied-center .google-box .img-box {
  width: 20px;
  height: 20px;
  overflow: hidden;
}

.satisfied-center .google-box .img-box img {
  height: 100% !important;
}

.satisfied-center .owl-nav img {
  width: 20px;
}

.satisfied-center button.owl-prev {
  position: absolute;
  top: 30%;
  left: -53px;
}

.satisfied-center button.owl-next {
  position: absolute;
  top: 30%;
  right: -53px;
}

.home-sec-8 {
  color: #fff;
  padding-top: 165px;
  background-position: bottom !important;

}

.home-sec-8 h2 span {
  color: var(--theme-color-second);
  display: block;
}

.faq-sec {
  background-color: #e7eae3;
}

.faq-sec h3 {
  color: var(--theme-color-third);
}

.faq-sec h3 span {
  display: block;
}

.faq-sec #accordionExample {
  background-color: transparent;
}

.faq-sec .accordion-item {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #666;
  box-shadow: none;
}

.faq-sec .accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  background-color: #fff;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, border-radius .15s ease;
  font-family: var(--paragraph-font);
  font-weight: 600;
  color: var(--theme-color-third);
  background: transparent;
  box-shadow: none;
}

.faq-sec .accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-image: url("../image/sort-down.png");
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform .2s ease-in-out;
}

.instagram {
  background-color: #e7eae3;
}

.map {
  line-height: 0;
}

.map iframe {
  width: 100%;
}

.footer {
  padding: 80px 0;
  color: #fff;
  background-position: bottom !important;
}

.footer .ft-nav p a {
  color: #fff;
  opacity: 0.9;
}

.footer .ft-nav h6 {
  font-family: var(--paragraph-font);
  font-size: 20px;
  font-weight: 500;
}

.footer .ft-nav ul li a {
  color: #c1c0bd;
  font-size: 15px;
}

.footer .ft-nav ul li {
  /*margin-bottom: 15px;*/
  margin-bottom: 10px;
}

.footer .ft-nav ul li:last-child {
  margin-bottom: 0;
}

.footer .social {
  display: flex;
  gap: 10px;
}


.footer .social a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  width: 45px;
  background-color: #ffffff4b;
  color: #fff;
  border-radius: 600px;
}

.inner-banner h1 {
  color: var(--theme-color-second);
  text-transform: uppercase;
}

.inner-banner {
  color: #fff;
}

.inner-banner .breadcrumb {
  font-family: var(--heading-font);
}

.inner-banner .breadcrumb a {
  color: #e7eae3;
}

.inner-banner {
  padding: 175px 0;
}

.satisfied-center p span {
  font-size: 18px;
}

.contact-us {
  background-color: #e7eae3;
}

.contact-us h3 {
  color: var(--theme-color-third);
}

.contact-us form input {
  padding: 14px;
  border: 1px solid #000;
}

.contact-us form textarea {
  padding: 14px;
  border: 1px solid #000;
  height: 155px;
}

.contact-us form button {
  padding: 14px;
  width: 100%;
  border: none;
  background-color: #666;
  color: #fff;
  font-size: 15px;
}

.contact-us .card i {
  font-size: 60px;
  color: var(--theme-color-second);
  margin-bottom: 15px;
}

.contact-us .card {
  height: 300px;
}

.contact-us .card a {
  color: #666;
}

.contact-us .card h5 {
  font-family: var(--paragraph-font);
  margin-bottom: 15px;
  text-transform: uppercase;
}

.fixed_info {
  display: flex;
  justify-content: space-around;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 9999;
}

.fixed_info .book-main {
  background-color: var(--theme-color-third);
  display: inline-flex;
  width: 100%;
  text-align: center;
  padding: 16px 5px;
  color: #fff;
  text-transform: uppercase;
  justify-content: center;
  gap: 15px;
  align-items: center;
  font-weight: 600;
}

.fixed_info .book-main.green-btn {
  background-color: var(--theme-color-second);
  color: #000;
}

.v-line {
  width: 1px;
  background-color: var(--theme-color-third);
  margin: 0 auto;
  display: block;
}

.menu-sec h3 {
  color: var(--theme-color-third);
}

.menu-sec p span {
  font-size: 19px;
  display: block;
  margin-bottom: 25px;
}


.menu-sec p b {
  font-size: 18px;
}

.menu-sec .menu-list li {
  display: flex;
  gap: 5px;
  margin-bottom: 5px;
}

.menu-sec .menu-list li:last-child {
  margin: 0;
}

.menu-sec .menu-list li i {
  font-weight: bold;
  color: #eec436;
  ;
}

.fixed-right {
  width: fit-content;
  position: fixed;
  top: 45%;
  right: -30px;
  transform: rotate(90deg);
  z-index: 999;
}

.fixed-right a {
  background-color: var(--theme-color-third);
  color: var(--theme-color-second);
  /* width: 12rem; */
  display: inline-block;
  padding: 8px 19px;
  /* height: 200px; */
  text-transform: uppercase;
  line-height: 1;
}


.arcylic-1 {
  background-color: #e7eae3;
}

.arcylic-1 h3 {
  color: var(--theme-color-third);
}

.arcylic-1 h6 {
  font-family: var(--paragraph-font);
  font-size: 30px;
}

.arcylic-1 h6 a {
  color: #0e1f0b;
}

.arclic-2 h6 {
  font-family: var(--paragraph-font);
  font-weight: 600;
  font-size: 25px;
}

.spa-pedicure p span a {
  color: #0e1f0b !important;
}

.spa-pedicure p span {
  font-size: 22px;
}

.spa-pedicure-3 ul li {
  display: flex;
  gap: 10px;
}

.spa-pedicure-3 ul li i {
  color: var(--theme-color-second);
  font-size: 35px;
}

.footer a img {
  width: 150px !important;
}

#satisfied-center .review-box {
  color: #000;
}

#nail-box h6 {
  font-size: 19px;
  font-weight: 700;
}

.text-large {
  font-size: 25px;
  color: var(--theme-color-second);
}

#portfolio .img-box {
  background-color: #000;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  line-height: 0
}

#portfolio .img-box .over-lay {
  position: absolute;
  top: 50%;
  width: 100%;
  left: 0;
  right: 0;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transition: .3s
}

#portfolio .img-box .over-lay a {
  display: flex;
  background-color: #fff;
  color: #000;
  font-size: 20px;
  height: 30px;
  width: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 60px
}

#portfolio .img-box:hover .over-lay {
  position: absolute;
  top: 50%;
  width: 100%;
  left: 0;
  right: 0;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 10px;
  opacity: 1;
  visibility: visible;
  transition: .3s
}

#portfolio .img-box img {
    opacity: 1;
    transition: .3s;
    height: 325px;
    object-fit: cover;
}

#portfolio .img-box:hover img {
  opacity: .5;
  transition: .3s
}

#portfolio .content {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center
}

.bg-layer {
   color: var(--theme-color-third);
  background-color: #0e1f0b44;
}


form.wpcf7-form.init p {
    margin-bottom: 0;
}


ul.inner_area_list {
    list-style: disc;
    padding-left: 35px;
}



/* Booking Form- CSS  */

.icon-circle {
    width: 60px;
    height: 60px;
    background-color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle i {
    font-size: 28px;
    color: #eec436!important;
}
.rating-box {
    border: 1px solid #d7cdcd;
    padding: 10px 15px;
    border-radius: 4px;
}
.rating-box p i {
    font-size: 25px;
    position: relative;
    top: 3px;
}

.rating-box p{
	display:flex;
	gap:5px;
	align-items:center;
	justify-content:center;
}

.contact-us .flex-box{
	display: flex;
}
.contact-us input.me-2 {
    width: inherit;
    height: inherit;
}

.contact-us .flex-box label{
	font-size:14px;
}
#newsletter .wpcf7-list-item.first.last label {
    display: flex;
    align-content: ;
    align-items: center;
    gap: 5px;
}

#newsletter .wpcf7-list-item.first.last input {
    width: inherit;
}

#bookingForm .flex-box input[type=radio] {
    width: inherit !important;
    height: inherit !important; 
}

.tnp-submit {
    padding: 14px !important;
    width: 100% !important;
    border: none !important;
    background-color: gold !important;
    color: #000 !important;
    font-size: 18px !important;
}

.tnp-email{
	padding: 14px !important;
	border: 1px solid #000 !important;
	border-radius: .25rem !important;
}

ul.salon-policy-page {
    padding-left: 25px;
}
ul.salon-policy-page a {
    color: var(--theme-color-second);
}

.tnp.tnp-subscription {
    margin-top: -20px !important;
}

/* === Lite YouTube Facade (global) === */
.yt-lite{
  position:relative;display:block;background:#000;cursor:pointer;
  /* Fallback aspect ratio via padding-top; overridden below if browser supports aspect-ratio */
}
.yt-lite::before{
  content:"";display:block;padding-top:56.25%; /* 16:9 fallback */
  position:absolute;inset:0;background-size:cover;background-position:center;
}
@supports (aspect-ratio: 16/9){
  .yt-lite{aspect-ratio:16/9}
  .yt-lite::before{padding-top:0;position:absolute;inset:0}
}
.yt-lite>.yt-play{
  width:68px;height:48px;background:rgba(0,0,0,.5);border:0;border-radius:14%;
  box-shadow:0 1px 2px rgba(0,0,0,.1);position:absolute;top:50%;left:50%;
  transform:translate(-50%,-50%);cursor:pointer
}
.yt-lite>.yt-play::before{
  content:"";border-style:solid;border-width:11px 0 11px 19px;
  border-color:transparent transparent transparent #fff;display:block;margin-left:24px
}
/* Optional per-video poster (replace VIDEO_ID) */
.yt-lite[data-ytid="VIDEO_ID"]::before{
  background-image:url("https://i.ytimg.com/vi/VIDEO_ID/hqdefault.jpg");
}

/*model*/
.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
}
body.modal-open {
 padding: 0!important;
}
.modal .btn-close {
    font-size: 14px;
    color: black;
    position: relative;
    top: -6px;
}
.modal-header {
   
    padding: 5px 13px;
   
}
.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 0.4rem;
}