
body {
  font-family: 'Montserrat', sans-serif;
  color: #444444;
  overflow-x: hidden !important;
  background-color: var(--mainbg);
}

a {
  color: #ff0000;
}

a:hover {
  color: #73c5eb;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
}


.carousel
{
  max-height: 70vh;
  overflow: hidden;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #37517e;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #37517e;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}
.back-btn{
  color: #05d48f;
}
.back-btn:hover{
  color: #05d48f;
}
.swal2-cancel{
  background: var(--secondarybg) !important;
}
.swal2-confirm{
  background: transparent linear-gradient(90deg, #6b3ad8 0%, #7467e9 100%) !important;
}
.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: var(--secondarybg);
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #209dd8;
  color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  box-shadow: 0px 0px 14px #ccc;
    background: #fff;
}

#header.header-scrolled, #header.header-inner-pages {
  background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 10px #eee;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: auto;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #fff;
  transition: 0.3s;
  font-size: 15px;
  letter-spacing: 0.5px;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #47b2e4;
}

.nav-menu .drop-down ul {
  border-radius: 8px;
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #0c3c53;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #47b2e4;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Get Startet Button */
.get-started-btn {
  margin-left: 25px;
  color: #fff;
  border-radius: 50px;
  padding: 6px 25px 7px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
  border: 2px solid #47b2e4;
  font-weight: 600;
}

.get-started-btn:hover {
  background: #31a9e1;
  color: #fff;
}

@media (max-width: 768px) {
  .get-started-btn {
    margin: 0 48px 0 0;
    padding: 6px 20px 7px 20px;
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  top: 20px;
  right: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #fff;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #37517e;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #47b2e4;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(40, 58, 90, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 60vh;
  background: #37517e;
  background-image: url(../img/hero-bac-img.png);
  background-size: cover;
}

#hero .container {
  padding-top: 72px;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 85px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 50px;
  color: #fff;
}

#hero h2 {
  color: #243561;
    font-size: 55px;
    font-family: Gabriola;
    font-weight: 600;
}

#hero .btn-get-started {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: #47b2e4;
}

#hero .btn-get-started:hover {
  background: #209dd8;
}

#hero .btn-watch-video {
  font-size: 16px;
  display: inline-block;
  padding: 10px 0 8px 40px;
  transition: 0.5s;
  margin: 10px 0 0 25px;
  color: #fff;
  position: relative;
}

#hero .btn-watch-video i {
  color: #fff;
  font-size: 32px;
  position: absolute;
  left: 0;
  top: 7px;
  transition: 0.3s;
}

#hero .btn-watch-video:hover i {
  color: #47b2e4;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}


@media (max-width: 991px) {
  #hero {
    height: 100vh;
    text-align: center;
  }
  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }
  #hero .hero-img {
    text-align: center;
  }
  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 38px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 30px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
  #hero .btn-get-started {
    font-size: 16px;
    padding: 10px 24px 11px 24px;
  }
  #hero .btn-watch-video {
    font-size: 16px;
    padding: 10px 0 8px 40px;
    margin-left: 20px;
  }
  #hero .btn-watch-video i {
    font-size: 32px;
    top: 7px;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  /* overflow: hidden; */
}

.section-bg {
  background-color: #f3f5fa;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #37517e;
}

.section-title h2::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #47b2e4;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}
.msg-alert-box
{
  background-color: #000;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: #070707;
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: #f3f5fa;
  text-align: center;
  font-size: 15px;
  color: #444444;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: #37517e;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #47b2e4;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: #209dd8;
}

#footer .footer-top {
  padding: 20px 0 20px 0;
  background: #0000;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
  color: #37517e;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
}
.footer-bottom
{
 background: #1e1e1e;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #fff;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #fe3902;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #fe3902;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #fe3902;
  color: #fff;
  text-decoration: none;
}

#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
}

#footer .copyright {
  float: left;
}

#footer .credits {
  float: right;
  font-size: 13px;
}

#footer .credits a {
  transition: 0.3s;
}

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  #footer .copyright, #footer .credits {
    text-align: center;
    float: none;
  }
  #footer .credits {
    padding-top: 4px;
  }
}

/*----------my css-----------*/
.main-heading
{
text-align: center;
width: 100%;
}
.main-heading h2
{
  font-size: 24px;
  color: var(--superheading);
  font-weight: 600;
}
.main-heading img
{
width: 30px;
margin-right: 12px;
margin-top: -5px;
}
.main-heading p
{
  color:#535353;
    font-weight: 500;
    font-size: 18px;
    width: 60%;
    margin: auto;
    margin-top: 10px;
}

.card
{
  box-shadow: 0px 0px 6px #e9e9e9;
  width: 100%;
  border:none;
}
.card-cont
{
  text-align: left;
  padding: 20px 13px;
}
.card-cont h3
{
color: var(--secondarybg);
    text-align: left;
    font-size: 22px;
    font-weight: 600;
}
.card-cont p
{
 color: #737373;
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}
.head-img
{
  position: relative;
}
.price
{
  background: var(--secondarybg) !important;
    width: auto;
    height: 50px;
    z-index: 10;
    padding:0 5px;
    line-height: 3.5;
    font-size: 14px;
    font-weight: 600;
    color: var(--whitecolor);
    position: absolute;
    top: 0;
    left: 30px;
}
.card-cont h4
{
  font-size: 15px;
  color: #243561;
}
.card-cont span
{
  font-weight: 700;
}

.skills-list ul {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    margin: 0px;
    padding: 0px;
    list-style: none;
}

.skills-list ul li {
    float: left;
    margin-right: 0.5%;
    margin-left: 0.5%;
    margin-top: 0.5em;
}

.skills-list ul li input[type="checkbox"] {
    display: none;
}
.tab-custom1 input {
    border-radius: 100px !important;
    height: 45px;
}

.skills-list ul li input[type="checkbox"]:checked + label {
    background: #ff0000;
    color: #fff;
}
.skills-list ul li label {
    color: #000;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    transition: all .2s linear;
    -webkit-transition: all .2s linear;
    text-align: center;
    border: 1px solid #fff;
    border-radius: 50px;
    background: #ededed;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 6px;
}
.skills-list
{
  margin-top: 15px;
}

.party-info h2
{
font-size: 22px;
color: #fe3902;
font-weight: 700;
}
.party-info h3
{
font-size: 22px;
    font-weight: 700;
    color: #243561;
}
.party-info p
{
  font-size: 16px;
  font-weight: 700;
  color: #243561;
  text-transform: uppercase;
}
.party-info h6
{
  font-size: 15px;
  color: #424242;
  font-weight: 500;
  margin-bottom: 0;
  margin-top: 5px;
  line-height: 1.5;
}
.b-border
{
  border-bottom: 1px solid #ccc;
    width: 100%;
    margin: auto;
}
.w-r-width
{
  width: 100%;
  margin: auto;
}
.card-cont h5
{
  font-size: 19px;
    color: #243561;
    font-weight: 600;
}
.pc-m h4
{
  margin-top: 15px;
}
.pd-all
{
  padding: 40px 30px;
}
.pd-all1
{
  padding: 15px 8px;
}

.mmt-3
{
  margin-top: 3em;
}
.cont-mar
{
  margin-top: 30px;
}
.invite-guest
{
  background: #ff0000;
  border:1px solid #ff0000;
 color: #fff;
 width: 150px;
}
.invite-guest:hover
{
  background: #ff0000;
  border:1px solid #ff0000;
  color: #fff;
}
.fb-pad
{
  padding: 21px 0 100px 0;
}
/*------fixed bootom-------*/
.fixed-bottom {
   position: fixed;
   left: 0;
   bottom: 0;
   width: 100%;
   background-color: #fff  ;
   color: #000;
   }
   .arrow-btn
   {
    background: #fff;
    border: 1px solid #7a7a7a;
   }
   .summary
   {
    width: 100%;
   }
   .t-txt
   {
    font-size: 18px;
    font-weight: 600;
    margin-left: 13px;
   }
   .cancel-btn
   {
    background: #fff;
    border: 1px solid #ff0000;
    width: 100%;
    padding: 9px 0;
    border-radius: 10px;
   }
   .confirm-btn
   {
    background: #ff0000;
    color: #fff;
    border:0px solid #ff0000;
    width: 100%;
    padding: 9px 0;
    border-radius: 10px;
   }
   .pd-20
   {
    padding: 15px 0;
   }
   .modal-header
   {
    display: inline-block;
   }
   /*--------------order confirm modal--------*/
   #order-confirm .modal-title
   {
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    color: #000;
   }
   #order-confirm .modal-header
   {
    border:none;
   }
   #order-confirm .modal-body
   {
    text-align: center;
    font-size: 14px;
    color: #807e7e;
    font-weight: 500;
   }
   #order-confirm .modal-footer
   {
    text-align: center;
    margin: auto;
    border: none;
   }
   #order-confirm .modal-footer .btn-yes
   {
    background: green;
    color: #fff;
    width: 135px;
   }
   #order-confirm .modal-footer .btn-no
   {
    background: red;
    color: #fff;
    width: 135px;
   }
/*------send-invitation modal--------*/
#send-invitation .modal-header
{
  background: #e9e8e8;
  text-align: center;
  
}
#send-invitation .modal-title
{
  color: #ff0000;
  font-weight: 600;
}
#send-invitation label
{
  font-weight: 600;
  font-size: 14px;
}
#send-invitation input
{
  font-size: 14px;
  height: 100%;
  width: 100%;
}
.add-more
{
  font-size: 15px;
  font-weight: 600;
  color: #ff0000;
  cursor: pointer;
  margin-top: 15px;
}
.add-more span
{
  color: #243561;
}
.send-invitation-btn
{
  background: #243561;
  color: #fff;
}
.send-invitation-btn:hover
{
 color: #fff; 
}
#send-invitation .modal-footer
{
  border:none;
}
#send-invitation .icofont-close
{
color: #243561;
font-size: 20px;
}
.price-details p{
  color: var(--textcolor);
}
/*------Payment-------*/
.payment
{
  margin-top: 2em;
}
.payment h4
{
font-size: 16px;
font-weight: 600;
color: var(--textcolor);
}
.radio-btns label
{
color: var(--textcolor);
}
#check-apply-coupon
{
  margin: 0px !important;
  width: 100%;
  padding: 7px 5px;
  font-size: 11px;
  border-radius: 3px;
  margin-bottom: 0px !important;
}
#coupon-input
{
  margin: 0px !important;
}
.gift-txt
{
  font-size: 12px !important;
  font-weight: 600 !important;
  margin-bottom: 5px !important;
}
.radio-btns
{
  padding-left: 0;
  margin-top: 15px;
}

.radio-btns li
{
  list-style: none;
    display: inline-block;
    padding-right: 50px;
    font-size: 15px;
    color: #8a8a8a;
    font-weight: 500;
}
.radio-btns input
{
  margin-right: 13px !important;
}

.payment-methode ul
{
  padding-left: 0;
}

.payment-methode li
{
  list-style: none;
  display: inline-block;
  padding-right: 20px;
}
.payment-methode button
{
  background: #f7f6f6;
  border: 1px solid #ccc;
  width: 125px;
  height: 73px;
  border-radius: 10px;
}
.payment-methode button span
{
  font-size: 14px;
  font-weight: 500;
  color: #878a9d;
}
.payment-methode button i
{
  font-size: 30px;
  color: #878a9d;
}
.check
{
  background: #ff0000;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 1.5;
    border: 2px solid #fff;
    color: #fff;
    border-radius: 100%;
    position: absolute;
    top: -10px;
    right: 12px;
}
.payment-methode button:focus
{
  border:2px solid red;
  box-shadow: none;
}
.payment-pd
{
  padding: 30px 30px;
}
.payment-methode
{
  margin-top: 25px;
}
.b-r
{
  border:2px solid #ff0000 !important;
}
.card-information input
{
  border:none;
  padding: 0;
  font-size: 13px;
  padding-left: 20px;
  font-size: 14px!important;
  font-weight: 500!important;
  color: #727272!important;
}
.card-information input:focus
{
  box-shadow: none;
}

.card-information select
{
  border:none;
  padding: 0;
  font-size: 13px;
  padding-left: 20px;
}
.card-information select:focus
{
  box-shadow: none;
}
.card-information label
{
  margin-bottom: 0;
  font-size: 14px;
}
.animated-input
{
  border:1px solid var(--bordercolor);
  border-radius: 5px;
  position: relative;
  height: 45px;
  width: 100%;
  font-size: 14px!important;
  font-weight: 500!important;
  color: var(--textcolor)!important;
}
.form-control:disabled, .form-control[readonly] {
  height: 100%;
}
.animated-input label
{
  position: absolute;
    top: -11px;
    left: 10px;
    background: #fff;
    font-size: 15px;
    font-weight: 600;
    color: var(--textcolor);
    padding: 0 10px;
    z-index: 1;
}
#payment-save #stripe2-card-expiry
{
  padding-left: 20px;
}
#payment-save .StripeElement
{
  padding-left: 20px;
}

::placeholder 
{
  
  font-size: 14px!important;
  font-weight: 500!important;
  color: #727272!important;
}
.animated-input select
{
  font-size: 14px!important;
  font-weight: 500!important;
  color: #727272!important;
}
.card-information .form-check-label
{
  font-size: 14px;
    font-weight: 500;
    color: #8a8a8a;
}
.cncl-pay
{
  background: #eeeeee;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    padding: 12px 0;
 }
 .make-pay
 {
  background: var(--secondarybg);
  font-size: 14px;
  font-weight: 500;
  width: 100%;
  padding: 12px 0;
 }
 .order-summary table
 {
  width: 100%;
 }
 .order-summary h6
 {
font-size: 16px;
font-weight: 600;
color: #ff0000;
 }
  .order-summary h5
  {
    font-size: 15px;
    font-weight: 600;
    padding-right: 25px;
  }
.remove-coupon
{
position: absolute;
top: -3px;
right: 0;
font-size: 18px !important;
}


  input,
textarea {
  border: 1px solid #eeeeee;
  box-sizing: border-box;
  margin: 0;
  outline: none;
  padding: 10px;
}

input[type="button"] {
  -webkit-appearance: button;
  cursor: pointer;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.input-group {
  clear: both;
  margin: 15px 0;
  position: relative;
}

.input-group input[type='button'] {
  background-color: #fff;
    min-width: 35px;
    width: auto;
    transition: all 300ms ease;
    border: none;
    height: 30px;
}

.input-group .button-minus,
.input-group .button-plus {
  font-weight: bold;
  height: 38px;
  padding: 0;
  width: 38px;
  position: relative;
}

.input-group .quantity-field {
  position: relative;
    height: 31px;
    left: 0;
    text-align: center;
    width: 40px;
    display: inline-block;
    font-size: 13px;
    margin: 0 0 5px;
    resize: vertical;
    background: #ffe3db;
    z-index: 1;
    border: none;
    top: -1px;
}

.button-plus {
  left: -13px;
}

input[type="number"] {
  -moz-appearance: textfield;
  -webkit-appearance: none;
}
.input-group
{
  display: inline;
  display: inline;
    border: 1px solid #ccc;
    padding: 6px 0;
    background: #fff;
    border-radius: 3px;
}
.order-summary table td
{
  padding: 10px 4px;
}
.gift-txt, .tax-cont
{
  color: #243561!important;
}
.tax-cont
{
  color: #243561!important;
  font-size: 16px !important;
  font-weight: 600 !important;
}
#tax-section h5
{
  color: #243561!important;
  font-size: 16px !important;
  font-weight: 600 !important;
}
.newsletter
{
  display: flex;
    background: transparent;
    border: none;
}
.gift-box input
{
width: 170px !important;
font-size: 14px;
height: 40px;
background:#ebebeb;
}
.gift-box button
{
  background: #ff0000;
  border:1px solid #ff0000;
  font-size: 14px;
  font-weight: 500;
  height: 40px;
}

.gift-box button:hover
{
  background: #ff0000;
  border:1px solid #ff0000;
}
.gift-box
{
  margin-top: 30px;
}
.order-total
{
  width: 100%;
}
.order-total h5
{
  color: #243561;
}
.addons-table .media-body p
{
  margin-bottom: 0;
    font-size: 16px;
    font-weight: 600;
    color: #243561;
}
.addons-table h5
{
  font-size: 16px;
    color: #243561;
    font-weight: 600;
}
.addons-table
{
  width: 100%;
  display: inline-table;
}
.addons-table button
{
  background: #ff0000;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
}
.addons-table th {
    color: #243561;
    font-size: 18px;
    padding-bottom: 25px;
}
.confirm-sign
{
  background: green;
    color: #fff;
    width: 80px;
    height: 80px;
    font-size: 70px;
    line-height: 1;
    text-align: center;
    border-radius: 100%;
    position: absolute;
    top: -51px;
    left: 0;
    right: 0;
    margin: auto;
}
.confirm-cont h6
{
  font-size: 18px;
    font-weight: 600;
    color: #243561;
}
.confirm-cont p
{
  font-size: 15px;
    color: #7d7d7d;
    font-weight: 500;
    margin-top: 20px;
    line-height: 1.6;
}
.c-card
{
  color: #7d7d7d;
    font-weight: 600;
    margin-top: 1em;
    font-size: 20px;
    margin-bottom: 1em;
}
.nxt-btn
{
  width: 200px;
  margin: auto;
}
.head-img img
{
  width: 100%;
}
.packageimg img
{
  width: 200px;
}

.tool-drawer .total-bal { color: #000000; font-weight: 700 !important; font-size: 17px !important; margin: 0px; padding-top: 5px;}
.tool-nav {   width:120px; padding: 8px; display: flex;
align-items: center; justify-content: flex-start; z-index: 9999;}
.tool-nav-button { height: 40px; font-size: 16px;  display: inline-block; align-items: center; justify-content: center;
cursor: pointer; color: #2c3e50; font-weight: 600;}
.tool-nav-button span{ width: 16px; height: 16px; float: left;
  background: url("data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0D%0A%3C%21DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20width%3D%2216px%22%20height%3D%2216px%22%20viewBox%3D%220%200%2016%2016%22%20enable-background%3D%22new%200%200%2016%2016%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cg%3E%0D%0A%09%3Cpolygon%20fill%3D%22%232c3e50%22%20points%3D%220.9%2C5.5%203.1%2C3.4%208%2C8.3%2012.9%2C3.4%2015.1%2C5.5%208%2C12.6%20%09%22%2F%3E%0D%0A%3C%2Fg%3E%0D%0A%3C%2Fsvg%3E")
    no-repeat center center; pointer-events: none;}
  .tool-nav-button-active span{transform: rotate(180deg);}
.tool-nav-button:hover {color: #364141;}
.tool-nav-button-active {color: #364141;}
.tool-nav-button-active:hover {   }

.tool-drawer { position: fixed; right:0px; bottom:85px; width: 100%; height:0%; overflow: hidden;
box-shadow: 0px 0px 16px rgba(39, 51, 51, 0.24); transition: .3s ease-out, box-shadow .15s ease-out; }


.tool-drawer-open { width:100%; height: calc(50% - 85px); right:0px;   z-index: 99; background: #fff; padding-top:0px; box-shadow: 0px 0px 0px rgba(39, 51, 51, 0.24); transition:  .3s ease-in, box-shadow .15s ease-in; border-top: 2px solid #f8f8f8;}

.tool-drawer .order-summary h2{font-size: 20px;
    
    color: #243561;
    font-weight: 600;
    padding: 15px 0;
    text-align: left;
  }
.tool-drawer .text-cont h3, .tool-drawer .number-cont span{font-size: 16px;}
.tool-drawer .accord-inner-section{padding: 15px 0;}
.tool-drawer .total-bal { color: #000000; font-weight: 700 !important; font-size: 17px !important;}

.confirm-btn-set
{
  width: 130px;
  font-size: 14px;
  font-weight: 600;
}
.orders-sum-detail
{
  width: 100%;
  text-align: left;
  margin-top: 22px;
}
.orders-sum-detail p
{
  font-size: 16px;
    font-weight: 500;
    color: #243561;
}
.tnt-txt
{
  font-size: 16px;
    font-weight: 600;
    color: #243561;
    margin-right: 12px;
}
.close
{
text-align: right;
padding: 15px 0;
}
.close i
{
color: #243561;
}
.addons-table th
{
  padding: 10px 42px 10px 0;
}

.addons-table td
{
  padding: 10px 42px 10px 0;
}
/*--- timepicker modal-----*/
.select-time-modal .modal-header
{
  display: flex;
  text-align: center;
}
.select-time-modal .modal-title
{
    margin: auto;
    width: 100%;
    font-size: 20px;
    font-weight: 600;
    color: #000;
}
.arrows
{
  padding-left: 0;
  margin-bottom: 2.5em;
}
.arrows li
{
  list-style: none;
  display: inline-block;
  width: 32%;
  text-align: center;
  color: #959595;
}
.arrows input
{
  border: none;
    outline: none;
    box-shadow: none !important;
    text-align: center;
    border-bottom: 3px solid #fe3902;
    border-radius: 0;
    width: 95%;
}
.arrows input[value]
{
  color: #000;
  font-weight: 700;
}
.select-time-modal .close 
{
  background: #fff;
    box-shadow: 0px 0px 13px #ccc;
    position: absolute;
    right: 0;
    opacity: 1;
    top: 0;
    padding: 6px 12px;
    border-radius: 5px;
    color: #fe3902;
}
.card-cont11 h5
{
  font-size: 18px;
  color: #243561;
  font-weight: 700;
  text-transform: uppercase;
}
.card-cont11 p
{
  font-size: 17px;
    color: #424242;
    font-weight: 500;
    margin-bottom: 0;
    margin-top: 5px;
    line-height: 1.5;
    margin-bottom: 20px;
    margin-top: 0px;
}
.cost-summary .spn1
{
  font-size: 18px;
    color: #243561;
    font-weight: 700;
    padding: 5px 0;
}
.add-addons-btn
{
  background: transparent!important;
    color: #ff0000!important;
    font-weight: 600;
    width: 35px;
    text-align: center!Important;
    height: 35px;
    border-radius: 100%!important;
    padding: 0!important;
    border: 2px solid #ff0000!important;
}
.msg-alert-box
{
  background: #000;
    width: 100%;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    padding: 12px 10px;
    text-align: center;
   position: fixed;
    top: 0;
    z-index: 9999;
}
.card-cont-n h4
{
  font-size: 17px!important;
}
.card-cont-n p
{
  margin-top: 8px!important;
  font-size: 16px!important;
  color: #424242!important;
}

.cost-summary .spn2
{
  font-size: 17px;
   font-weight: 600;
    padding: 5px 0;
}

.fc-ltr .fc-dayGrid-view .fc-day-top .fc-day-number
{
 font-size: 16px !important;
 font-weight: 600 !important;
}
.modal-nav-links li
{
  padding: 0 25px;
}
.modal-nav-links li a
{
font-size: 18px !important;
}


.btn-up {
  border: 2px dashed #ccc;
  color: gray;
  background-color: white;
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 500;
  width: 100%;
  height: 160px;
}
.upload-icon
{
  font-size: 33px!important;
    color: #fe3902;
}


.upload-btn-wrapper input[type=file] {
  font-size: 100px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
#host-info-modal .modal-content
{
background-color: var(--mainbg);
}
#host-info-modal input
{
border-color:var(--bordercolor) !important;
}
#host-info-modal label
{
  color: var(--textcolor);
}
#host-info-modal p
{
  padding-left: 15px;
    font-size: 19px;
    font-weight: 600;
    color: #000;
    margin-bottom: 30px;    width: 100%;
    text-align: center;
}
.continuebtn
{
  font-size: 17px;font-weight: 600; width: 100%;margin: auto;
}
@media (min-width: 1200px)
{
  .container {
    max-width: 1260px!important;
}

}

.select-time-modal .modal-footer button
{
  width: 48%;
    background: #fff;
    color: #000;
    border: none;
    outline: none !important;
    font-size: 16px;
    font-weight: 600;
    border-radius: 0;
}
.select-time-modal .modal-footer
{
  padding: 0;
}
.btn1-cancel
{
  border-right: 1px solid #686868 !IMPORTANT;
}
.select-time-modal .modal-footer button:focus
{
  width: 48%;
    background: #fff;
    color: #000;
    border: none;
}
.addons-table .input-group
{
border:none !important;
}
.addons-table
{
  font-size: 15px;
  font-weight: 500;
}
.fc .fc-view-container .fc-body .fc-day-top.fc-today a
{
  background-color:#fe3902!important;
  width: 30px!important;
    height: 30px!important;
    text-align: center!important;
  line-height: 1.8!important;
  color: #fff;
  border-radius: 100%!important;
  padding: 0!important;
}
.fc-today:hover
{
  background-color:#fe3902!important;
  color: #fff!important;
}

.fc-future:hover
{
  background-color:#fe3902!important;
  color: #fff!important;
}
.fc-day:hover .fc-day-number
{
  color:pink!important;
}
.fc .fc-button
{
  background-color:#fe3902!important;
}
.logo img
{
  width: 70px;
}
.fc-disabled-day:hover
{
background: #d7d7d7!important;
}
.text-white
{
  color: #fff!important;
}
.fc .fc-header-toolbar
{
  margin-top: 1rem;
}
.fc .fc-button:disabled
{
  color: #fff!important;
}
.hostinfor-pd
{
  padding: 30px;
}
.payment-page-padding
{
  padding: 5px 17px;
}
.ordrsm-head
{
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}
/* .all-details-summry
{
  background: #F8F8F8;
  padding: 7px 10px;
  border-radius: 5px;
} */
#package-info p
{
  font-size: 15px;
  color: #424242;
  font-weight: 500;
  margin-bottom: 0;
  margin-top: 5px;
  line-height: 1.5;
}
.party-information-gallery-room
{
  vertical-align: middle;
}

.order-tracking{
	text-align: center;
	width: 33.33%;
	position: relative;
	display: block;
}
.order-tracking .is-complete{
	display: block;
	position: relative;
	border-radius: 4px;
	height: 26px;
	width: 26px;
	border: 0px solid #AFAFAF;
	background-color: #afafaf;
	margin: 0 auto;
	transition: background 0.25s linear;
	-webkit-transition: background 0.25s linear;
	z-index: 2;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  line-height: 2;
  cursor: pointer;
}
/* .order-tracking .is-complete:after {
	display: block;
	position: absolute;
	content: '';
	height: 14px;
	width: 7px;
	top: -2px;
	bottom: 0;
	left: 5px;
	margin: auto 0;
	border: 0px solid #AFAFAF;
	border-width: 0px 2px 2px 0;
	transform: rotate(45deg);
	opacity: 0;
} */
.order-tracking.completed .is-complete{
	border-color: #05d48f;
	border-width: 0px;
	background: var(--secondarybg);
}
.order-tracking.completed .is-complete:after {
	border-color: #fff;
	border-width: 0px 3px 3px 0;
	width: 7px;
	left: 11px;
	opacity: 1;
}
.order-tracking p {
	color: var(--textcolor) !important;
    font-size: 13px !important;
    margin-top: 8px;
    margin-bottom: 0;
    line-height: 20px;
    font-weight: 600;
}
.order-tracking p span{font-size: 14px;}
.order-tracking.completed p{
  color: var(--textcolor);
}
.order-tracking::before {
	content: '';
	display: block;
	height: 2px;
	width: calc(100% - 23px);
	background-color: #afafaf;
	top: 13px;
	position: absolute;
	left: calc(-50% + 11px);
	z-index: 0;
}
.progress-steps
{
  margin: 25px 0;
}
.order-tracking:first-child:before{display: none;}
.order-tracking.completed:before{background: var(--secondarybg);}

.number-of-guest-client .select2-container--default .select2-selection--single
{
  border: none !important;
  background-color: transparent !important;
}
.number-of-guest-client .select2-selection--single
{
padding: 0px !important;
}
.number-of-guest-client .select2-selection__rendered
{
  padding-left: 22px !important;
  color: #727272!important;
}
.number-of-guest-client .select2-container--classic .select2-selection--single:focus, .number-of-guest-client .select2-container--default .select2-selection--single:focus
{
  box-shadow: none !important;
}
.extra-content p{
  line-break: anywhere;
}
.description-set .description
{
color:#243561 !important
}
.extra-content p 
{
  color: #737373 !important;
  text-align: left !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  margin-bottom: 10px !important;
  font-family: 'Montserrat', sans-serif !important;
}
.extra-content p span
{
  color: #737373 !important;
  text-align: left !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  margin-bottom: 10px !important;
  font-family: 'Montserrat', sans-serif !important;
}
#make-payment-modal
{
  z-index: 9999999999;
}
.main-heading h2 i
{
  font-size: 27px;
  margin-right: 12px;
  color: var(--textcolor);
}
.dropdown .list
{
  background-color: var(--mainbg) !important;
}
/*---end timepicker modal-----*/
.clientroom .unselected-package {
  background-color: var(--primarybg);
  font-size: 15px;
  color: var(--whitecolor) !important;
  font-weight: 500;
  width: 100%;
  margin-bottom: 10px;
  text-align: left;
  padding: 2px 2px !important;
  position: relative;
}
.open-package-information-modal
{
  padding: 0;
  margin: 0;
  float: right;
  background: transparent;
  color: #fff !important;
  margin-top: 0px !important;
}
.view-rooms-icon
{
  width: 26px;
  margin-left: 20px;
}
















/*------responisve----*/
@media (max-width: 1200px)
{
  .client-side-cont
  {
    position: relative;
  }
  .gallery-icon-pck
  {
    top: 23px;
font-size: 14px;
  }
}
@media (max-width: 992px)
{
  .payment-pd
  {
    padding: 0px;
  }
}

@media (max-width: 768px)
{
  .packages .col-md-4
  {
margin-top: 30px;
  }
  .card-cont h3
  {
    font-size: 20px;
  }
  .rm-m
  {
    margin-top: 0px !important;
  }
  .Host-information .form-group
  {
margin-bottom: 2rem;
  }
  .main-heading p
  {
    width: 100%;
  }
  .payment .form-group
  {
margin-top: 2rem;
  }
  .make-pay
  {
    margin-top: 20px;
  }
  .input-group input[type="button"]
  {
    min-width: 20px;
  }
  .input-group .quantity-field
  {
    width: 24px;
    padding: 0;
  }
  .button-plus {
    left: -2px;
}
.addons-table .media-body p
{
  font-size: 14px;
}
.addons-table table td
{
padding: 10px 20px 10px 0;
}
.fixed-bottom .row
{
text-align: center;
}

.mm-tb
{
  padding: 20px 0;
}
.responsive-media
{
  display: inherit;
}
.responsive-media .media-body 
{
  margin-top: 24px;
}
.packageimg img 
{
    width: 100%;
}
#hero
{
  height: 50vh;
}
.m-payment-pd {
    padding: 30px 10px;
}
.pd-all {
    padding: 15px 10px;
}
.m-pr-0
{
  padding-right: 0;
}
}
@media (max-width: 992px)
{
.hero-img img
{
  display: none;
}
.mm-med-t
{
  margin-top: 20px;
}
}
@media (max-width: 590px)
{

}
@media (max-width: 576px)
{
.tool-drawer-open
{
  height: calc(65% - 85px);
}
.mobile-respon
{
width: 70%;
margin-top: 8px;
}

.radio-btns li
{
  padding-right: 25px;
}
.payment h4
{
  margin-top: 1em;
}
.host-info-headr p, #party-location
{
  font-size: 14px !important;
}
}
@media (max-width: 433px)
{
.m-mobile-margin
{
  padding-left: 20px;
  padding-bottom: 32px;
}

.progress-steps
{
  padding: 0 14px;
}
.host-info-headr p, #party-location
{
  font-size: 14px !important;
margin-bottom: 0px !important;
}
#package_name, #room_name, #datetime
{
  margin-bottom: 10px;
  font-size: 13px !important;
}
#party-location
{
  font-size: 13px !important;
}
.main-heading p
{
  margin-top: 0px;
}
.order-tracking p
  {
    font-size: 12px !important;
  }
}


@media (max-width: 400px)
{
.mobile-respon
{
width: 60%;
}
.confirm-btn-set {
    width: 75px;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 5px;
}
.t-txt {
    font-size: 13px;
    font-weight: 600;
    margin-left: 5px;
}
.tool-nav-button
{
  height: 26px;
  padding: 5px 5px;
}
.tool-drawer
{
  bottom:70px;
}

}
.cust-calender
{
  margin: auto;
  text-align: center;
}
.footer-contact img
{
  width: 53px;
}
.host-info-headr p
{
width: auto!important;
font-size: 19px;
}
.increase-number
{
  margin: 0;
    width: 100% !important;
    background: transparent;
    border: none;
}
.increase-number input
{
  background-color: transparent!important;
}

@media (max-width: 1024px)
{
  .card-new
  {
    width: 100% !important;
  }
}

.custon-breadscrumbs
{
  border: none;
    width: 19%;
    text-align: center;
    margin: auto;
}

.waiver-detail-infor h4
{
  font-size: 15px;
    font-weight: 500;
    color: #838383;
    margin-top: 10px;
}
#time-qcTimepicker
{
  width: 100%;
  height: 38px;
  border-color: #ccc;
  border-radius: 5px;
  outline: none;
  padding-left: 11px;
}
.payment-table-summary td
{
  padding: 3px 4px !important;
}
.payment-table-summary td h5
{
  color: #000 !important;
}
.calender-home .flatpickr-calendar
{
  width: 390px !important;
  margin: auto;
}
.media-top-margin
{
  margin-top: 3em;
}
.host-infor-rev-mar
{
  margin-top: 20px;
}
.custom-swal-back .swal2-title
{
font-size: 17px;
}
.custom-swal-back .swal2-icon.swal2-info {
  border-color: #243561;
  color: #fff;
  background: #243561;
  
}
.custom-swal-back .swal2-confirm
{
  color: #fff;
  background: #243561 !important;
}
.addons-container
{
  margin-bottom: 25px;
}
.second-mobile
{
  display: none;
}
.waiver-signed-party-info
{
  font-size: 14px !important;
}

@media screen and (max-width: 768px)
{
.media-mobile-center
{
  text-align: center!important;
}
.mobile-margin
{margin-bottom: 10px !important;
}

.radio-btns
{
  margin-top: 0px;
}
.radio-btns li
{
  margin-bottom: 15px;
}
.payment h4
{
  margin-top: 0px !important;
}
.media-top-margin
{
  margin-top: 0px !important;
}
.host-infor-rev-mar
{
  margin-top: 0px !important;
}
#package-info
{
  margin-top: 25px;
}
}
@media screen and (max-width: 575px)
{
  .main-heading h2
  {
    font-size: 18px !important;
  }
  .main-heading img
  {
    width: 22px !important;
  }
  .main-heading p
  {
    font-size: 14px;
  }
  .card-cont h4, .party-info h6
  {
    font-size: 14px !important;
  }
  .party-info p
  {
    font-size: 13px;
  }
  .host-info-headr img
  {
    width: 21px !important;
  }
  #reset-party
  {
    font-size: 15px !important;
  }
  #reset-party i
  {
    font-size: 12px !important;
margin-right: 7px !important;
  }
  .animated-input label
  {
    font-size: 12px !important;
  }
  ::placeholder
  {
    font-size: 12px !important;
  }
  .card-information input
  {
    font-size: 12px !important; 
  }
  .make-pay
  {
    font-size: 13px !important;
  }
  .pd-all1
  {
    padding: 0 8px !important;
  }
  #back
  {
    font-size: 14px !important;
  }
  #back i
  {
    margin-right: 5px !important;
    font-size: 13px !important;
  }
  #make-payment
  {
width: 100%;
margin-top: 0px !important;
  }

}

@media screen and (max-width: 506px)
{
.m-mobile-margin
{
  margin-left: 17px;
}
}
@media screen and (max-width: 489px)
{
 
  .card-cont h4
  {
    font-size: 15px !important;
  }
  .party-info p
  {
    font-size: 14px !important;
  }
}
@media screen and (max-width: 455px)
{
  .add-packages-list-v li
  {
    width: 100% !important;text-align: center;
    margin-bottom: 10px !important
  }
  .information-icons
  {
    position: relative !important;
  }
  .count .sec h2
  {
    border-radius: 4px !important;
    width: 40px !important;
    height: 40px !important;
    text-align: center!important;
    line-height: 2.7!important;
    font-size: 15px !important;
  }
  .count
  {
    gap: 1rem!important;
  }
  .count .sec p
  {
    width: 53px;
    text-align: center;
    font-size: 13px !important;
  }
  .second-desktop
  {
    display: none;
  }
  .second-mobile
  {
    display: block;
  }
  .card-cont h3
  {
    font-size: 15px !important;
  }
  .card-cont h4
  {
    font-size: 14px !important;
  }
  .party-info p
  {
    font-size: 13px !important;
    margin-bottom: 0;
  }
  .party-info h6
  {
    font-size: 14px !important;
    margin-bottom: 8px;
  }
  .open-package-information-modal
  {
    width: 30px !important;
  }
  .open-package-information-modal .icon-eye
  {
    font-size: 18px !important;
  }
  #package-info p
  {
    font-size: 13px;
    margin-top: 0px;
  }
  #down_payment_option
  {
    margin-left: 0px !important;
  }
}
@media screen and (max-width: 400px)
{
  .calender-home .flatpickr-calendar
  {
    width: 100% !important;
  }
  
}

