  /* Imports */
  /* Icons */
  @import url("https://use.fontawesome.com/releases/v5.14.0/css/all.css");
  @import url("https://unpkg.com/boxicons@2.0.9/css/boxicons.min.css");
  @import url("https://fonts.googleapis.com/css?family=Material+Icons|Material+Icons+Outlined|Material+Icons+Two+Tone|Material+Icons+Round|Material+Icons+Sharp");
  /* Fonts */
  @import url("https://fonts.googleapis.com/css2?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");
  @import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap");
  
  /* General Styling */
  * {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none !important;
    list-style-type: none;
    font-family: "Poppins", sans-serif;
  }
  
  ::selection {
    color: #fff;
    background: black;
  }
  
  a {
    display: inline-block;
    color: #000;
    transition: all 300ms ease-in-out;
  }
  
  /* a:hover,
  a.active {
    color: var(--color-primary);
  } */
  i[class^="bx"] {
    vertical-align: middle;
  }
  
  ul,
  address {
    margin-bottom: 0;
  }
  
  .imgFluid {
    max-width: 100%;
  }
  
  .primary-color {
    color: var(--color-primary);
  }
  
  .section-content .subHeading {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    margin-bottom: 0.75rem;
  }
  
  .section-content .heading {
    font-size: 3.25rem;
    line-height: 1.1;
    letter-spacing: 0.25rem;
    text-transform: uppercase;
    font-weight: bold;
  }
  
  .section-content p {
    color: #666;
    line-height: 2;
  }
  
  .section-content span {
    font-weight: 800;
    text-transform: uppercase;
  }
  
  .theme-btn {
    background-image: -webkit-linear-gradient(
      6deg,
      rgb(248, 188, 8) 0%,
      rgb(236, 130, 48) 100%
    );
    padding: 10px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    border: 1px solid orange;
    transition: all ease 0.7s;
    cursor: pointer;
  }
  
  .theme-btn:hover {
    column-fill: balance;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: -webkit-linear-gradient(
      6deg,
      rgb(248, 188, 8) 0%,
      rgb(236, 130, 48) 100%
    );
    border-color: orange;
  }
  
  .themelight {
    border: 1px solid black;
    padding: 10px 40px;
    border-radius: 50px;
    transition: all 0.3s ease;
  }
  
  .themelight:hover {
    background-image: -webkit-linear-gradient(
      6deg,
      rgb(248, 188, 8) 0%,
      rgb(236, 130, 48) 100%
    );
    color: #fff;
    border-color: orange;
  }
  
  /******  Header Section Start  ******/
  
  .header-main {
    position: absolute;
    width: 100%;
    top: 0px;
  }
  
  .header-logo img {
    width: 120px;
  }
  
  .header-nav ul {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 30px;
    justify-content: end;
  }
  
  .header-end {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 20px;
  }
  
  .header-nav {
    height: 100%;
  }
  
  .header-nav ul li a {
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    position: relative;
    color: black;
  }
  
  .header-nav ul li a::before {
    position: absolute;
    content: "";
    background-image: -webkit-linear-gradient(
      6deg,
      rgb(248, 188, 8) 0%,
      rgb(236, 130, 48) 100%
    );
    height: 3px;
    width: 0%;
    border-radius: 20px;
    bottom: -1px;
    left: 50%;
    transform: translate(-50%);
    transition: all 0.6s ease;
  }
  
  .header-nav ul li a:focus {
    outline: none;
  }
  
  .header-nav ul li a:hover:before {
    width: 100%;
  }
  
  /******  Header Section End  ******/
  
  /*********  First Banner Section Start  **********/
  .input-group.search_inputs_group{
    padding-top: 50px;
    color: #000 !important;
  }
  
  input.form-control.search_inputs:focus{
    border-color: #ced4da !important;
    outline: 0 !important;
    box-shadow: none !important ;
  }
  
  span.input-group-text.search_input_icons {
    font-size: 18px;
    background: #fff;
    border-right: none;
    border-radius: 0;
    padding-right: 0;
  }
  
  .custom-select.search_inputs:focus{
    border-color: #ced4da !important;
    box-shadow: none !important ;
  }
  input.form-control.search_inputs{
    border-left: none;
    border-right: none;
    text-decoration: none !important;
  }
  select.custom-select.search_inputs{
    height: auto;
    /* border-right: none; */
    border-left: none;
    z-index: 999;
  }
  
  button.btn.btn-outline-secondary.search_button{
    outline: none;
    color: #000;
    width: 15%;
    border: none;
    border-radius: 0;
    background: #f8bc08;
  }
  button.btn.btn-outline-secondary.search_button:focus{
  box-shadow: none;
  }
  
  
  
  
  
  
  .first-banner-sec {
    background: url(../images/first-banner.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 130px 0px 120px 0px;
  }
  
  .first-banner-txt {
    text-align: center;
    padding: 100px 0px 0px 0px;
  }
  
  .first-banner-txt h2 {
    font-size: 110px;
    font-weight: 800;
    text-transform: uppercase;
    font-family: "Montserrat";
    color: black;
    line-height: 60px;
  }
  
  .first-banner-txt h4 {
    font-family: "Montserrat";
    font-size: 60px;
    font-weight: 800;
    color: black;
  }
  
  .first-banner-txt h6 {
    font-size: 24px;
    font-family: "Montserrat";
    color: rgb(0, 0, 0);
    font-weight: 500;
  }
  
  .first-banner-txt h4 strong {
    position: relative;
    z-index: 9;
    color: white;
    font-weight: 300;
  }
  
  .first-banner-txt h4 strong::before {
    position: absolute;
    content: "";
    background: red;
    height: 100px;
    width: 60px;
    bottom: 10px;
    z-index: -1;
    left: -9px;
  }
  
  .first-banner-txt h6 strong {
    position: relative;
    color: #fff;
    z-index: 99;
    font-weight: 300;
  }
  
  .first-banner-search {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0px 0px 0px;
    gap: 15px;
  }
  
  .search-function input {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 46.44px 7.56px rgba(0, 0, 0, 0.06);
    border-radius: 50px;
    border: 1px solid white;
    padding: 10px 20px;
    text-align: center;
  }
  
  .search-function span {
    font-size: 25px;
    position: absolute;
    left: 10px;
    top: 4px;
  }
  
  .search-function {
    position: relative;
  }
  
  .search-function input::placeholder {
    font-size: 14px;
    text-align: center;
    color: #000;
  }
  
  .search-location input {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 46.44px 7.56px rgba(0, 0, 0, 0.06);
    border-radius: 50px;
    border: 1px solid white;
    padding: 10px 21px 10px 15px;
    text-align: center;
    background-image: -webkit-linear-gradient(
      6deg,
      rgb(248, 188, 8) 0%,
      rgb(236, 130, 48) 100%
    );
  }
  
  .search-location {
    position: relative;
  }
  
  .search-location span {
    position: absolute;
    content: "";
    left: 20px;
    top: 4px;
    font-size: 25px;
  }
  
  .search-location input::placeholder {
    padding: 0px 0px 0px 30px;
    font-size: 14px;
    color: black;
  }
  
  .search-location input:focus {
    outline: none;
  }
  
  .search-function input:focus {
    outline: none;
  }
  
  /***********  First Banner Section End  **********/
  
  /***********  Second Banner Section Start  **********/
  
  .for-paid-sec {
    background: url(../images/second-banner.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0px;
  }
  
  .paid-txt {
    text-align: center;
    color: #ffff;
  }
  
  .paid-txt h4 {
    font-size: 40px;
    text-transform: uppercase;
    font-weight: bold;
    font-family: "Montserrat";
    padding: 0px 0px 15px 0px;
  }
  
  .paid-txt p {
    font-size: 16px;
    font-family: "Montserrat";
  }
  
  .for-paid-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }
  
  /***********  Second Banner Section End  **********/
  
  /***********  Looking For Vendors Section Start  **********/
  
  .event-name {
    position: absolute;
    width: 120px;
    height: 120px;
    background: #ffffff78;
    top: 50%;
    display: flex;
    border-radius: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    align-items: center;
    justify-content: center;
    font-size: 15px !important;
  }
  
  .event-img img {
    border-radius: 120px;
    width: 100%;
    height: 100%;
    transform: rotate(0deg);
    transition: all 0.6s ease;
    object-fit: cover;
  }
  
  .looking-vendors-sec {
    padding: 50px 0px 50px 0px;
  }
  
  .vendor-head {
    padding: 30px 0px 40px 0px;
    text-align: center;
    position: relative;
  }
  
  .vendor-head h3 {
    font-size: 50px;
    font-family: "Montserrat";
    font-weight: 600;
    color: black;
    position: relative;
  }
  
  .event-img {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin: 20px 0px;
    height: 270px;
    width: 100%;
  }
  
  .event-img img:hover {
    transform: rotate(360deg);
  }
  
  .looking-vendors-sec .container {
    max-width: 1200px;
  }
  
  .vendor-head h3::before {
    position: absolute;
    content: "";
    background: red;
    width: 200px;
    height: 1px;
    right: 38%;
    top: -16px;
  }
  
  .vendor-head h3::after {
    position: absolute;
    content: "";
    background: red;
    width: 200px;
    height: 1px;
    bottom: -16px;
    left: 40%;
  }
  
  /***********  Looking For Vendors Section End  **********/
  
  /***********  Looking For Events Section Start  **********/
  
  .event-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
  }
  
  .event-card {
    background-image: -webkit-linear-gradient(
      6deg,
      rgb(248, 188, 8) 0%,
      rgb(236, 130, 48) 100%
    );
    position: relative;
    margin: 25px 0px 25px 0px;
  }
  
  .apply-btn {
    background: white;
    font-size: 10px;
    font-weight: bold;
    padding: 8px 6px;
    position: absolute;
    top: 158px;
    right: 90px;
    font-family: "Montserrat";
  }
  
  .buy-btn {
    padding: 10px 5px;
    position: absolute;
    right: 0;
    background-image: -webkit-linear-gradient(
      6deg,
      rgb(248, 188, 8) 0%,
      rgb(236, 130, 48) 100%
    );
    font-family: "Montserrat";
    font-size: 12px;
    color: #fff;
    font-weight: 500;
    top: 158px;
  }
  
  .event-txt-box {
    padding: 20px;
  }
  
  .event-txt-box h4 {
    color: #fff;
    font-family: "Montserrat";
    font-weight: 600;
    font-size: 22px;
  }
  
  .event-txt-box h5 {
    color: #fff;
    font-family: "Montserrat";
    font-size: 14px;
    font-weight: 500;
  }
  
  .event-txt-box p {
    margin: 0;
    font-size: 12px;
    color: #fff;
  }
  
  .event-near-btn {
    padding: 10px 0px 0px 0px;
    text-align: end;
  }
  
  .event-near-btn a {
    font-size: 20px;
    font-family: "Montserrat";
    text-align: end;
  }
  
  .view-more-btn {
    text-align: center;
    margin: 20px 0px;
  }
  
  .popular-event-sec {
    padding: 50px 0px;
  }
  
  /***********  Looking For Events Section End  **********/
  
  /***********  Brand Image Section Start  **********/
  .brand-image-sec {
    padding: 40px 0px 60px 0px;
  }
  
  .brand-img img {
    width: 100%;
  }
  
  .brand-image-sec .container {
    max-width: 1140px;
  }
  
  /***********  Brand Image Section End  **********/
  
  /***********  Newsletter Section Start  **********/
  
  .newsletter-sec {
    background-image: -webkit-linear-gradient(
      6deg,
      rgb(248, 188, 8) 0%,
      rgb(236, 130, 48) 100%
    );
    padding: 20px 0px;
  }
  
  .newsletter {
    display: flex;
    align-items: center;
    gap: 30px;
  }
  
  .newsletter img {
    width: 70px;
  }
  
  .newsletter-txt h4 {
    font-size: 30px;
    color: #fff;
    font-family: "Montserrat";
    font-weight: 600;
    text-transform: capitalize;
    margin: 0;
  }
  
  .newsletter-txt p {
    color: #ffff;
    font-size: 12px;
  }
  
  .newsletter-txt {
    padding: 15px 0px 0px 0px;
  }
  
  .newsletter-field input {
    padding: 18px 30px;
    width: 100%;
    display: block;
    border: none;
    border-radius: 50px;
  }
  
  .newsletter-field {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 100%;
  }
  
  .newsletter-field button {
    border: 1px solid rgb(226, 6, 20);
    padding: 13px 35px;
    /* position: absolute; */
    right: 52px;
    top: 20px;
    border-radius: 40px;
    color: #fff;
    background: rgb(226, 6, 20);
    font-family: "Montserrat";
    text-transform: uppercase;
    transition: all 0.6s ease;
    font-size: 14px;
  }
  
  .newsletter-field button:hover {
    background: transparent;
    color: rgb(226, 6, 20);
  }
  
  .newsletter-field input:focus {
    outline: none;
  }
  
  .newsletter-field input::placeholder {
    font-size: 14px;
    font-family: "Montserrat";
    color: #000;
  }
  
  /***********  Newsletter Section End  **********/
  
  /***********  footer Section Start  **********/
  
  footer.footer-main {
    background-color: rgb(226, 6, 20);
    padding: 80px 0px 0px 0px;
  }
  
  .footer-txt h4 {
    font-family: "Montserrat";
    font-weight: bold;
    color: #fff;
    font-size: 24px;
    padding: 0px 0px 20px 0px;
  }
  
  .footer-txt p {
    font-size: 13px;
    color: #fff;
    font-family: "Montserrat";
    padding: 0px 0px 10px 0px;
  } 
  
  /*
  .footer-txt ul {
    display: flex;
    align-items: baseline;
    gap: 15px;
  }
  
  .footer-txt ul li a {
    font-size: 24px;
    color: #fff;
  } 
  */
  .footer-contact ul {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    gap: 15px;
  }
  
  .footer-contact ul li a {
    font-size: 30px;
    color: #fff;
  }
  
  
  
  .footer-links h5 {
    font-family: "Montserrat";
    font-weight: bold;
    color: #fff;
    font-size: 24px;
    padding: 0px 0px 20px 0px;
  }
  
  .footer-contact h5 {
    font-family: "Montserrat";
    font-weight: bold;
    color: #fff;
    font-size: 24px;
    padding: 0px 0px 20px 0px;
  }
  
  .footer-links ul li a {
    color: #fff;
    font-family: "Montserrat";
    font-weight: 400;
    padding: 0px 0px 10px 0px;
    font-size: 14px;
    position: relative;
  }
  
  .footer-links ul li a::before {
    position: absolute;
    content: "";
    background: #fff;
    width: 0%;
    height: 2px;
    bottom: 10px;
    left: 50%;
    transform: translate(-50%);
    transition: all 0.6s ease;
  }
  
  .footer-links ul li a:hover:before {
    width: 100%;
  }
  
  .footer-contact p {
    margin: 0px;
    padding: 0px 0px 20px 0px;
    color: #fff;
    font-weight: 300;
    font-size: 14px;
  }
  
  .footer-contact p span {
    font-size: 20px;
    padding: 0px 30px 0px 0px;
  }
  
  .footer-copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .footer-copyright p {
    margin: 0px;
    color: #fff;
    font-family: "Montserrat";
    font-size: 14px;
    font-weight: 400;
  }
  
  .footer-copyright img {
    width: 300px;
  }
  
  .footer-copyright {
    margin: 20px 0px 30px 0px;
    position: relative;
  }
  
  .footer-copyright::before {
    position: absolute;
    content: "";
    background: #fff;
    width: 100%;
    height: 1px;
    top: -15px;
  }
  
  /***********  footer Section End  **********/
  
  /***********  About Us page CSS Start  **********/
  
  .inner-pg-banner {
    background: url(../images/inner-pg-banner-img.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 0px;
  }
  
  .inner-pg-txt {
    text-align: center;
  }
  
  .inner-pg-txt h3 {
    font-size: 40px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 30px;
  }
  
  .inner-pg-link a {
    color: #fff;
    font-size: 18px;
  }
  
  .inner-pg-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  
  .inner-pg-link span {
    color: #fff;
  }
  
  .who-we-sec {
    padding: 50px 0px;
  }
  
  .who-we-sec .container {
    max-width: 1140px;
  }
  
  .who-we-txt {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .who-are-img img {
    width: 100%;
    padding: 30px;
    position: relative;
  }
  
  .who-are-img {
    position: relative;
  }
  
  .who-are-img::before {
    position: absolute;
    content: "";
    background: red;
    left: -70px;
    width: 100%;
    height: 100%;
  }
  
  .who-we-txt h3 {
    font-size: 40px;
    font-family: "Montserrat";
    font-weight: 800;
    color: black;
    text-transform: uppercase;
    padding: 0px 0px 10px 0px;
  }
  
  .who-we-txt p {
    font-family: "Montserrat";
    font-size: 14px;
    color: black;
    padding: 0px 60px 0px 0px;
  }
  
  .mission-img {
    position: relative;
  }
  
  .mission-img img {
    width: 100%;
    padding: 30px;
    position: relative;
  }
  
  .mission-img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 70px;
    background-color: rgb(255, 186, 13);
  }
  
  /***********  About Us page CSS End  **********/
  
  /***********  Create Event page CSS Start  **********/
  
  .event-banner-img img {
    width: 100%;
  }
  
  .create-event-sec {
    padding: 50px 0px 50px 0px;
  }
  
  .create-account-txt h3 {
    font-size: 60px;
    font-family: "Montserrat";
    font-weight: 700;
    color: #000;
    margin: 0px 0px 30px 0px;
  }
  
  .account-field input, select {
    width: 100%;
    display: block;
    padding: 10px 20px;
    margin: 0px 0px 20px 0px;
  }
  
  .create-event {
    padding: 0px 70px 0px 0px;
  }
  
  .account-field button {
    width: 100%;
    padding: 10px 30px;
    background: red;
    color: #fff;
    border: 1px solid red;
    transition: all 0.6s ease;
  }
  
  .account-field button:hover {
    background: transparent;
    color: red;
  }
  
  .create-or {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0px 0px 0px;
  }
  
  .create-or h5 {
    font-size: 18px;
    text-align: center;
    border: 1px solid #00000024;
    width: 55px;
    background: white;
    padding: 4px 0px;
  }
  
  .create-or::before {
    position: absolute;
    content: "";
    background: black;
    width: 194px;
    height: 1px;
    left: 0px;
    top: 15px;
  }
  
  .create-or::after {
    position: absolute;
    content: "";
    background: black;
    width: 194px;
    height: 1px;
    right: 0px;
    top: 15px;
  }
  
  .google-txt {
    display: flex;
    align-items: center;
    border: 1px solid #00000061;
    padding: 8px 10px;
    justify-content: center;
    gap: 10px;
    margin: 20px 0px 0px 0px;
  }
  
  a.google-txt img {
    width: 23px;
  }
  
  .google-txt p {
    margin: 0;
    font-size: 16px;
    color: grey;
    font-weight: 300;
  }
  
  .account-field input::placeholder {
    font-size: 14px;
  }
  
  .other-login {
    margin: 40px 0px 0px 0px;
  }
  
  .other-login h6 {
    padding: 0px 0px 20px 0px;
  }
  
  .other-logo {
    display: flex;
    gap: 50px;
  }
  
  .create-login-btn {
    margin: 30px 0px 0px 0px;
  }
  
  .create-login-btn a {
    color: rgb(238, 137, 43);
    font-family: "Montserrat";
    font-size: 18px;
    font-weight: 500;
  }
  
  .basic-info-txt h3 {
    font-size: 30px;
    font-weight: 700;
    color: black;
    font-family: "Montserrat";
  }
  
  .basic-info-txt h6 {
    font-size: 16px;
    font-family: "Montserrat";
    font-weight: 400;
    margin: 15px 0px;
  }
  
  .basic-info-txt textarea {
    width: 100%;
    display: block;
    height: 50px;
    padding: 13px 20px 0px 20px;
    border: 1px solid #00000042;
    margin: 4px 0px;
    resize: none;
  }
  
  .basic-info-txt span {
    display: flex;
    align-items: center;
    justify-content: end;
  }
  
  .basic-info-txt textarea::placeholder {
    font-size: 14px;
    font-weight: 500;
    font-family: "Montserrat";
  }
  
  .basic-info-txt p {
    padding: 10px 0px 0px 0px;
    color: black;
    font-weight: 500;
  }
  
  .basic-info-txt p a {
    color: red;
  }
  
  .create-events-sec {
    padding: 50px 0px;
  }
  
  .create-events-sec .container {
    max-width: 1200px;
  }
  
  .select-options {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .type-select-option select {
    padding: 10px 20px;
    width: 210px;
    border: 1px solid #0000004a;
    color: grey;
    font-family: "Montserrat";
    font-size: 16px;
  }
  
  .tag-form-txt {
    margin: 30px 0px 0px 0px;
    padding: 0px 0px 20px 0px;
    border-bottom: 1px solid #00000047;
  }
  
  .tag-form-txt h3 {
    color: black;
    font-size: 30px;
    font-weight: 600;
    font-family: "Montserrat";
  }
  
  .tag-form-txt h6 {
    padding: 10px 0px;
    color: black;
    font-family: "Montserrat";
    font-weight: 500;
  }
  
  .tag-form-txt textarea {
    width: 100%;
    display: block;
    height: 50px;
    padding: 13px 20px 0px 20px;
    border: 1px solid #00000042;
    margin: 4px 0px;
    resize: none;
  }
  
  .tag-form-txt select {
    display: block;
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #00000045;
    color: #0000009c;
  }
  
  .tag-form-txt span {
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 10px 0px;
  }
  
  .location-form-txt {
    margin: 30px 0px 0px 0px;
  }
  
  .location-form-txt h3 {
    font-weight: 700;
    font-family: "Montserrat";
    font-size: 35px;
  }
  
  .location-form-txt h6 {
    font-size: 16px;
    font-family: "Montserrat";
    font-weight: 500;
  }
  
  .location-btn {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 30px 0px 0px 0px;
  }
  
  .location-btn a {
    padding: 10px 20px;
    border: 1px solid red;
    background: #ff000036;
  }
  
  .location-btn a:hover {
    color: black;
  }
  
  .location.search input {
    display: block;
    width: 100%;
    padding: 12px 20px 12px 40px;
    border: 1px solid #0000004d;
  }
  
  .venue-location {
    margin: 40px 0px 0px 0px;
  }
  
  .location.search input::placeholder {
    font-size: 14px;
    font-weight: 600;
    color: black;
  }
  
  .location.search span {
    font-size: 25px;
    position: absolute;
    top: 6px;
    left: 10px;
    color: #00000057;
  }
  
  .location.search input:focus {
    outline: none;
  }
  
  .location.search {
    position: relative;
  }
  
  .date-time-txt {
    margin: 40px 0px 0px 0px;
  }
  
  .date-time-txt h3 {
    font-weight: 600;
    color: black;
    font-size: 35px;
    font-family: "Montserrat";
  }
  
  .date-time-txt p {
    margin: 0px;
    font-size: 16px;
    font-weight: 500;
    font-family: "Montserrat";
    color: black;
  }
  
  .basic-calender input {
    width: 100%;
    padding: 8px 15px;
    display: block;
    border: 1px solid #00000038;
  }
  
  .calender-date {
    margin: 40px 0px 0px 0px;
  }
  
  .calender-date h6 {
    padding: 5px 0px 10px 0px;
    font-family: "Montserrat";
    color: grey;
    font-weight: 400;
  }
  
  .basic-calender {
    margin: 0px 0px 20px 0px;
  }
  
  .display-time {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .display-time input {
    height: 30px;
    width: 30px;
  }
  
  .display-time-txt h5 {
    font-size: 14px;
    margin: 0;
    font-weight: 600;
    margin: 5px 0px 5px 0px;
  }
  
  .display-time-txt p {
    margin: 0px;
    font-size: 14px;
    font-family: "Montserrat";
    font-weight: 500;
  }
  
  .display-time-txt {
    margin: 10px 0px;
  }
  
  .time-zone-txt select {
    padding: 10px 20px 10px 10px;
    width: 400px;
    margin: 0px 0px 20px 0px;
    border: 1px solid #00000047;
  }
  
  .display-start-time-txt {
    margin: 0px 0px 30px 0px;
  }
  
  .looking-event-sec {
    padding: 50px 0px;
  }
  
  /***********  Create Event page CSS End  **********/
  
  /***********  Vendor Product page CSS Start  **********/
  
  .vendor-card {
    text-align: center;
    border: 1px solid #0000002e;
    transition: all 0.6s ease;
    margin: 0px 0px 30px 0px;
  }
  
  .vendor-card img {
    width: 100%;
    padding: 70px;
  }
  
  .vendor-card:hover {
    box-shadow: 0px 13px 25.55px 9.45px rgba(0, 0, 0, 0.14);
  }
  
  .vendor-txt {
    padding: 30px 0px 30px 0px;
    border-top: 1px solid #00000021;
  }
  
  .vendor-reviews {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 0px;
  }
  
  .review-stars ul {
    display: flex;
    align-items: center;
  }
  
  .review-txt p {
    margin: 0;
    font-family: "Montserrat";
    font-size: 14px;
  }
  
  .vendor-txt h4 {
    font-size: 20px;
    font-family: "Montserrat";
    font-weight: 600;
  }
  
  .review-stars ul li {
    color: rgb(236 196 48);
  }
  
  .vendor-txt a {
    font-weight: 600;
    font-size: 20px;
    font-family: "Montserrat";
  }
  
  .vendor-product-sec {
    padding: 50px 0px;
  }
  
  .vendor-pg-head h3 {
    font-size: 40px;
    font-family: "Montserrat";
    font-weight: 800;
    color: black;
    text-transform: uppercase;
    padding: 0px 0px 20px 0px;
  }
  
  .vendor-txt a:hover {
    color: black;
  }
  
  /***********  Vendor Product page CSS End  **********/
  
  /***********  Vendor Signup page CSS Start **********/
  
  .vendor-signup-img img {
    width: 100%;
  }
  
  .vendor-signup {
    padding: 50px 0px;
  }
  
  .vendor-signup-form {
    padding: 40px 25px 20px 25px;
    box-shadow: 0px 0px 27px 0px rgba(0, 0, 0, 0.35);
    background: #fff;
    margin-top: 10px;
    margin-left: -90px;
    width: 320px;
  }
  
  .vendor-form-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0px 0px 20px 0px;
  }
  
  .vendor-form-btn a {
    border: 1px solid black;
    padding: 8px 40px;
    transition: all 0.6s ease;
    font-size: 14px;
    font-family: "Montserrat";
    font-weight: 500;
  }
  
  .vendor-form-btn a:hover {
    background: red;
    color: white;
    border-color: red;
  }
  
  .vendor-field {
    margin: 0px 0px 20px 0px;
  }
  
  .vendor-field input {
    width: 100%;
    display: block;
    padding: 7px 20px;
  }
  
  .vendor-signup-txt h3 {
    text-align: center;
    padding: 0px 0px 10px 0px;
    font-size: 22px;
    font-family: "Montserrat";
    font-weight: bold;
  }
  
  .vendor-field input::placeholder {
    font-size: 13px;
  }
  
  .vendor-signups button {
    display: block;
    width: 100%;
    background: red;
    border: 1px solid red;
    padding: 10px 20px;
    font-size: 14px;
    color: #fff;
    text-align: center;
    transition: all ease 0.4s;
    cursor: pointer;
  }
  
  .vendor-signups button:hover {
    background: transparent;
    color: red;
  }
  
  .already-acc p {
    margin: 0;
    font-size: 14px;
    text-align: center;
    font-weight: 600;
    font-family: "Montserrat";
  }
  
  .already-acc {
    margin: 30px 0px 10px 0px;
  }
  
  .already-acc a {
    color: red;
  }
  
  /***********  Vendor Signup page CSS End **********/
  
  /* tabs custom (place nav and tabs anywhere separately)
  ----------------------------------------------------------*/
  
  .tabs-custom-nav li a {
      border: 1px solid black;
    padding: 8px 40px;
    transition: all 0.6s ease;
    font-size: 14px;
    font-family: "Montserrat";
    font-weight: 500;
  }
  
  .tabs-custom-nav li a.current {
    background: red;
    color: white;
    border-color: red;
  }
  
  .tabs-custom .tab-content-panel {
    display: none;
    overflow: hidden;
    width: 100%;
  }
  
  .tabs-custom .tab-content-panel.selected {
    display: block;
  }
  
  
  /* tabs generic (nav and tabs in main div)
  ------------------------------------*/
  
  .tab-custom-nav li a {
    color: black;
  }
  
  .tab-custom-nav li a.current {
    color: #0076FB;
  }
  
  .tab-custom .tab-content-panel {
    display: none;
    overflow: hidden;
    width: 100%;
  }
  
  .tab-custom .tab-content-panel.selected {
    display: block;
  }
  
  
  /* tabs generic (nav and tabs in main div tabs with style)
  ------------------------------------*/
  
  .tabs-main {
    display: inline-block;
    width: 100%;
    padding: 15px 0;
  }
  
  .tabs-main ul.tabs-nav {
    padding: 0px;
    width: 100%;
    float: left;
    margin: 0 0 -1px 0;
  }
  
  .tabs-main ul.tabs-nav li {
    list-style: none;
    float: left;
  }
  
  .tabs-main ul.tabs-nav li a {
    background: #003a7b;
    border: 1px solid #BCC5cB;
    border-bottom: 0px;
    color: white;
    padding: 7px 15px;
    display: block;
    text-decoration: none;
  }
  
  .tabs-main ul.tabs-nav li a.current {
    background: white;
    color: #003a7b;
  }
  
  .tabs-main .tab-content-panel {
    background: white;
    padding: 15px 30px 25px 30px;
    border: 1px solid #BCC5cB;
    display: none;
    overflow: hidden;
    width: 100%;
  }
  
  ul.tabs-custom-nav {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
  }
  
  .tab-txt h4 {
    font-family: 'Poppins' !important;
    font-style: normal;
    font-weight: 600 !important;
    font-size: 22px !important;
    /* or 33px */
    color: #333333;
    text-align: left !important;
    line-height: 1.5 !important;
    padding: 35px 0px 10px 0px !important;
  }
  
  .tabs-custom.general {
    padding: 30px 0px 0px 0px;
  }
  
  
  /*FAQS Page CSS  Closed
  -----------------------------------*/
  
  
  
  @media (min-width: 1200px) {
    .container {
      max-width: 1170px;
    }
  }
  
  @media (min-width: 1400px) {
    .container {
      max-width: 1300px;
    }
  }
  a.border-btn {
    border: 1px solid black;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
  }
  
  p.auth-name {
    margin: 0;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 18px;
  }
  /*======================================
     Login & Register & My Account CSS
  ========================================*/
  .alert-success {
    color: #ffffff;
    background-color: #00b894;
    border-color: #00b894;
  }
  
  .alert-danger {
    color: #FFF;
    background-color: #ff4949;
    border-color: #ff4949;
  }
  
  .section{
  padding-top: 80px;
  padding-bottom: 50px;
  }
  
  .section-heading{
  text-align: center;
  font-weight: 600;
  margin-bottom: 60px;
  color: var(--primary-color);
  position: relative;
  line-height: 24px;
  }
  
  .section-heading::after{
  content: '';
    width: 60px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 10px;
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
  }
  
  #auth{padding: 100px 0px;}
  
  .login_register{
  background: #ffffff;
    padding: 50px;
    box-shadow: 1px 3px 10px #d8d8d8;
  }
  
  .login_register .form-control {
  height: auto;
    display: block;
    width: 100%;
     padding: 15px;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #CCC;
    border-radius: .25rem;
    margin-top: 15px;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  }
  
  .login_register .form-control:focus{
  outline: none;
  -webkit-box-shadow: none;
    box-shadow: none;
  border: 1px solid #000;
  }
  
  .login_register .btn-login{
  display: block;
    background: #FFF;
    padding: 18px 50px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
  transition: all 0.3s;
  width: 100%;
  margin-top: 30px;
  }
  .login_register .btn-login:hover{
    background: var(--primary-color);
    color: #FFF;
  }
  
  .login_register .right_link{
  color: var(--primary-color);
  margin-top: 15px;
  transition: all 0.3s;
  display: inline-block;
  }
  
  .login_register .right_link:hover{
  text-decoration: underline;
  }
  
  .create-account-link{
  color: var(--primary-color);
  display: inline-block;
  margin-top: 15px;
  transition: all 0.3s;
  }
  
  .create-account-link:hover{
  color: var(--primary-color);
  text-decoration: underline;
  }
  
  .customer_dashboard{
  box-shadow: 0 0 4px 0 #e9e9e9;
  }
  
  .customer_dashboard{
  box-shadow: 0 0 4px 0 #d0cfcf;
  }
  
  .customer_dashboard .nav-tabs li.nav-item a {
    text-align: left;
    padding: 12px 20px;
    border-radius: 0;
    border-bottom: 1px solid #efefef;
    color: #2b2f4c;
  }
  .customer_dashboard .nav-tabs li.nav-item a.active{
  background: #1d2224;
  color: #FFF;
  }
  .customer_dashboard .nav-tabs li.nav-item a i {
    margin-right: 8px;
    vertical-align: middle;
  }
  
  .dashboard_content .card-header {
    background-color: #1d2224;
    border-color: #1d2224;
    padding: 14px 20px;
  }
  
  .dashboard_content .card-header > h4 {
  font-size: 16px;
  color: #FFF;
  font-weight: 400;
  margin: 0;
  }
  
  .account_details .form-control {
  height: auto;
    display: block;
    width: 100%;
     padding: 15px;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #CCC;
    border-radius: .25rem;
    margin-top: 15px;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  }
  
  .account_details .form-control:focus{
  outline: none;
  -webkit-box-shadow: none;
    box-shadow: none;
  border: 1px solid #000;
  }
  
  .account_details .btn-login{
    background: #FFF;
    padding: 18px 50px;
    border: 1px solid #303952;
    color: #303952;
  transition: all 0.3s;
  margin-top: 30px;
  }
  .account_details .btn-login:hover{
    background: #303952;
    color: #FFF;
  }
  .btn-add-address{
  color: #FFF !important;
  padding: 6px 16px;
  display: inline-block;
  font-size: 14px;
  border: 1px solid #FFF;
  border-radius: 50px;
  }
  
  /*======================================
  End Login CSS
  ========================================*/
  .create-events-sec input, .create-events-sec textarea,.create-events-sec select {
    width: 100%;
    padding: 10px;
    outline: none;
    resize: none;
  }
  
  section.create-events-sec label {
    text-transform: capitalize;
    font-weight: 500;
    margin: 0;
  }

  .vendor-detail_card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    padding: 0;
  }
  
  .vendor-detail_card {text-align: left;padding: 30px;display: flex;gap: 30px;align-items: center;box-shadow: 0px 0px 40px 0px lightgray;}
  
  
  .vendor-detail_card .vendor-txt {
    border:0px solid;
    
  }
  
  
  /*event listing*/
  .inner-detail-event .carousel--card-image__wrapper img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: -75px 0;
    object-position: -75px 0;
    width: 250px;
  }
  
  .related-categories-carousel .carousel-internal {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-x: auto;
    list-style: none;
  }
  
  .inner-detail-event .carousel--card-image__wrapper {
    width: 125px;
    height: 125px;
    overflow: hidden;
    border-radius: 50%;
    margin-bottom: 8px;
  }
  
  .carousel .carousel-internal {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    gap: 24px;
  }
  
  .related-categories-carousel .carousel {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 24px;
    text-align: center;
  }
  
  .eds-text-hs, .eds-text-hs--fixed {
    font-size: 1.5rem;
    line-height: 2rem;
    letter-spacing: .25px;
    margin-right: -0.25px;
    font-weight: 700;
  }
  
  .simple-carousel__title.eds-text-hs {
    text-align: center;
    margin: 30px 0;
  }
  
  .carousel .carousel--card {
    max-width: 125px;
  }
  
  .bottom-text span {
    background-color: #feedea;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 8px;
    height: 32px;
    border-radius: 8px;
    margin: 0px 0 7px;
  }
  
  .bottom-text a {
    font-size: 1.125rem;
    line-height: 1.5rem;
    letter-spacing: .25px;
    margin-right: -0.25px;
    font-weight: 600;
    color: #3a3247;
    width: 100%;
  }
  
  .bottom-text p {
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 600;
    color: #3a3247;
    margin-bottom: 5px;
  }
  
  .eds-vector-image svg {
    width: 16px;
    height: 16px;
  }
  
  .Typography_root__487rx {
    background: none !important;
  }
  
  .bottom-img img {
    border-radius: 30px 30px 0px 0px;
    margin: 0 0 10px;
    object-fit: cover;
    height: 200px;
    width: 100%;
  }
  
  .hover-icons a {
    border: 1px solid white;
    padding: 5px;
    background-color: #fff;
    transition: all .4s cubic-bezier(.4,0,.3,1);
    width: 40px;
    border-radius: 40px;
    height: 40px;
    margin: 0 5px 0 0;
    font-size: 18px;
    font-weight: 900;
    text-align: center !important;
  }
  
  .bottom-img {
    position: relative;
  }
  
  .hover-icons {
    position: absolute;
    bottom: 8px;
    right: 0;
  }
  
  .bottom-slider .inner-slick {
    overflow-x: scroll;
    width: 100%;
    overflow-y: hidden !important;
  }
  
  .bottom-text i {
    margin: -4px 10px 0 0;
  }
  
  .main-slick-alider h2 {
    font-size: 1.5rem;
    line-height: 2rem;
    letter-spacing: .25px;
    margin-right: -0.25px;
    font-weight: 700;
    text-align: center;
    margin: 30px 0;
  }
  
  .bottom-slider .slick-prev:before {
    content: "\f104";
    display:none !important;
  }
  
  .inner-pg-txt span {
    color: white;
  }
  
  .inner-pg-txt p {
    color: white;
  }
  
  /*.bottom-slider i[class^="bx"] {*/
  /*    vertical-align: middle;*/
  /*    font-size: 28px !important;*/
  /*}*/
  
  /*.main-slick-alider button {*/
  /*    display: none !important;*/
  /*}*/
  
  .inner-slick button {
    font-size: 25px;
  }
  
  .inner-slick .slick-next {
    right: 0;
  }
  
  .inner-slick .slick-prev {
    right: 4%;
  }
  
  .inner-slick .slick-prev:before, .slick-next:before {
    display: none;
  }
  
  @media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
  }
  
  @media (min-width: 1400px) {
  .container {
    max-width: 1300px;
  }
  }
  
  
  
  /***********CREATE__EVENT__START*************/
  
  .live-sound {
    padding: 55px 0px 0;
  }
  
  .fire-badge p {
    background-color: #e20614;
    padding: 6px 20px 6px;
    display: inline-block;
    font-size: 13px;
    color: white;
    border-radius: 5px;
  }
  
  .day-date p {
    font-weight: 400;
  }
  
  .members-of-harlem h1 {
    font-size: 45px;
    font-weight: 700;
  }
  
  .members-of-harlem p {
    padding: 10px 0 0;
    font-size: 15px;
    font-weight: 400;
  }
  
  .content-flex {
    display: flex;
  }
  .cont-1 {
    width: 30%;
  }
  .cont-1 img {
    width: 100%;
    border-radius: 30px;
  }
  
  .cont-2 p {
    margin: 0 auto;
    font-size: 18px;
    text-transform: capitalize;
  }
  
  .cont-2 span {
    font-weight: 500;
  }
  
  .d-and-t {
    padding: 35px 0 0;
  }
  
  .cont-2 {
    /* position: relative; */
    /* right: 40px; */
    /* bottom: -8px; */
    margin-left: 20px;
  }
  
  .music-school {
    /*background-color: antiquewhite;*/
    padding: 10px 11px 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-radius: 5px;
  }
  
  .follow-btn {
    text-align: end;
    padding: 18px 0 0;
  }
  
  .follow-btn a {
    background-color: #e12322;
    padding: 6px 30px 6px;
    border-radius: 3px;
    color: white;
  }
  
  .d-and-t p {
    font-size: 13px;
  }
  
  .location p {
    font-size: 13px;
  }
  
  .refund-policy p {
    font-size: 13px;
  }
  
  .minute p {
    font-size: 13px;
  }
  
  .clock-flex {
    display: flex;
  }
  
  .ticket p {
    font-size: 13px;
  }
  
  .ticket {
    padding: 0 50px 0;
  }
  
  .d-and-t h4 {
    font-size: 25px;
    font-weight: 500;
  }
  
  .location {
    padding: 20px 0 0;
  }
  
  .location h4 {
    font-size: 25px;
    font-weight: 500;
  }
  
  .refund-policy h4 {
    font-size: 25px;
    font-weight: 500;
  }
  
  .about-event {
    padding: 20px 0 0;
  }
  
  .about-event h4 {
    font-size: 25px;
    font-weight: 500;
    margin: 45px 0px;
  }
  
  .minute i {
    font-size: 20px;
    color: #e20614;
  }
  
  .ticket i {
    font-size: 20px;
    color: #e20614;
  }
  
  .location i {
    font-size: 20px;
    color: #e20614;
  }
  
  .d-and-t i {
    font-size: 20px;
    color: #e20614;
  }
  
  .player-quarter {
    padding: 25px 0 0;
  }
  
  .player-quarter p {
    font-weight: 500;
    color: #615a5a;
  }
  
  .artist li {
    font-size: 15px;
    font-weight: 500;
    padding: 4px 0 0;
    color: #615a5a;
  }
  
  .about-sound {
    padding: 15px 0 15px !important;
  }
  
  .about-sound p {
    padding: 3px 0 0;
    color: #615a5a;
  }
  
  .about-sound strong {
    color: #615a5a;
  }
  
  .ticket-attendance li {
    color: #615a5a;
  }
  
  .venue-policies {
    padding: 25px 0 0;
  }
  
  .venue-policies li {
    padding: 7px 0 0;
    color: #615a5a;
  }
  
  .music-banner {
    padding: 25px 0 25px;
  }
  
  .tags {
    padding: 10px 0 10px;
  }
  
  .tags li {
    display: contents;
  }
  
  .tags li a {
    font-size: 12px;
    padding: 9px 20px 9px;
    background-color: #f8f7fa;
    border-radius: 25px;
    /*color: grey;*/
    margin: 10px 0 0;
  }
  
  .organizer {
    padding: 30px 0 30px;
  }
  
  .print-img {
    text-align: center;
  }
  
  .print-img img {
    width: 100%;
    max-width: 75px;
    border-radius: 39px;
    /* padding: 0 0 30px; */
    margin: 10px 0;
  }
  
  .print-img p {
    font-size: 13px;
  }
  
  .print-img h3 {
    font-size: 22px;
  }
  
  .print-img h4 {
    PADDING: 20px 0 0;
  }
  
  .print-img h3:hover {
    color: blue;
  }
  
  .follow-up li {
    display: inline;
    padding: 0 25px 0;
  }
  
  .follow-up li a {
    color: blue;
    font-size: 14px;
  }
  
  li.change-btn a {
    background-color: #e20614;
    /*color: white;*/
    padding: 10px 30px 10px;
    border-radius: 3px;
  }
  
  .follow-up li a {
     background-color: none;
    color: black;
    padding: 10px 30px 10px;
    border-radius: 3px;
  }
  
  .follow-up li a:hover {
    background-color: red;
    color: white;
  }
  
  .street-music {
    /*background-color: aliceblue;*/
    padding: 100px 0;
    border-radius: 25px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  }
  
  .social-links {
    padding: 30px 0 0;
  }
  
  .social-links li {
    display: inline-block;
  }
  
  .social-links a i {
    font-size: 30px;
    padding: 8px 20px 8px;
    /*background-color: antiquewhite;*/
    border-radius: 5px;
    margin: 0 10px 0;
    color: red;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  }
  
  .report-event {
    text-align: center;
    padding: 40px 0 0;
  }
  
  .report-event p {
    font-size: 14px;
  }
  
  .report-event i {
    font-size: 20px;
    color: red;
  }
  
  .report-event p {
    background-color: none;
    display: inline-block;
    padding: 10px 20px 10px;
    border-radius: 5px;
  }
  
  .report-event p:hover {
    background-color: #efe9e9;
  }
  
  .peter-groch p {
    margin: 0 auto;
    line-height: 23px;
    font-size: 13px;
  }
  
  p.color-txt {
    color: #e20614;
  }
  
  .sound-live img {
    width: 100%;
    max-width: 200px;
  }
  
  .sound-live {
    text-align: end;
  }
  
  .music-box {
    /*background-color: aliceblue;*/
    padding: 40px 8px 20px;
  }
  
  .music-box:hover {
    background-color: nonw;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  }
  
  .signs {
    text-align: end;
  }
  
  .signs li {
    display: inline-block;
    padding: 3px 8px 3px;
    font-size: 20px;
    border: 1px solid darkgrey;
    border-radius: 30px;
    margin: 5px 0 0;
  }
  
  .slider-head h2 {
    text-align: justify;
  }
  
  .side-box {
    text-align: center;
  }
  
  .side-box {
    text-align: center;
    /*border: 1px solid;*/
    padding: 35px 0px 35px;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  }
  
  .side-box p {
    font-weight: 400;
    font-size: 20px;
  }
  
  .get-ticket a {
    background-color: #e12322;
    padding: 5px 50px 5px;
    border-radius: 5px;
    color: white;
  }
  
  .streaming {
    text-align: center;
    padding: 40px 0 40px;
  }
  
  .streaming img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
  }
  
  
  
  /***********CREATE__EVENT__END*************/
  
  
  
  
  
  /***********Event Bokking Start*************/
  .product-content {
  }
  .product-title {
  font-size: 3rem;
  text-transform: capitalize;
  font-weight: 700;
  position: relative;
  color: #12263a;
  margin: 1rem 0;
  }
  .product-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 80px;
  background: #12263a;
  }
  .product-link {
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 0.5rem;
  background: #256eff;
  color: #fff;
  padding: 0 0.3rem;
  transition: all 0.5s ease;
  }
  .product-link:hover {
  opacity: 0.9;
  }
  .product-rating {
  color: #ffc107;
  }
  .product-rating span {
  font-weight: 600;
  color: #252525;
  }
  .product-price {
  margin: 1rem 0;
  font-size: 1rem;
  font-weight: 700;
  }
  .product-price span {
  font-weight: 400;
  }
  .last-price span {
  color: #f64749;
  text-decoration: line-through;
  }
  .new-price span {
  color: #256eff;
  }
  .product-detail h2 {
  text-transform: capitalize;
  color: #12263a;
  padding-bottom: 0.6rem;
  }
  .product-detail p {
  font-size: 0.9rem;
  padding: 0.3rem;
  opacity: 0.8;
  }
  .product-detail ul {
  margin: 1rem 0;
  font-size: 0.9rem;
  }
  
  .product-detail ul li span {
  font-weight: 400;
  }
  .purchase-info {
  margin: 1.5rem 0;
  }
  .purchase-info input,
  .purchase-info .btn {
  border: 1.5px solid #ddd;
  border-radius: 25px;
  text-align: center;
  padding: 0.45rem 0.8rem;
  outline: 0;
  margin-right: 0.2rem;
  margin-bottom: 1rem;
  }
  .purchase-info input {
  width: 60px;
  }
  .purchase-info .btn {
  cursor: pointer;
  color: #fff;
  }
  .purchase-info .btn:first-of-type {
  background: #256eff;
  }
  .purchase-info .btn:last-of-type {
  background: #f64749;
  }
  .purchase-info .btn:hover {
  opacity: 0.9;
  }
  /***********Event Booking End*************/
  #content1 {
  max-height: 3em; /* Initially show only 3 lines */
  overflow: hidden;
  }
  .span-show{
  color:blue;
  }
  .span-show:hover{
  cursor:pointer;
  }
  
  .vendor_content {
  background: white;
  text-align: center;
  padding: 100px 20px;
  box-shadow: 0px 0px 16px 0px;
  }
  .vendor_content h1 {
  font-size: 50px;
  font-weight: 700;
  margin: 0px 0px 50px;
  color: #ffa500;
  text-transform: uppercase;
  line-height: 40px;
  }
  
  
  .vendor_content h2 {
  font-size: 34px;
  font-weight: 400;
  color: black;
  }
  .vendor_content ul {
  display: flex;
  list-style: none;
  gap: 30px;
  justify-content: center;
  margin: 30px 0px;
  }
  
  .vendor_content ul li a {
  text-decoration: none;
  font-size: 22px;
  color: black;
  font-weight: 500;
  }
  .vendor_content_follow span {
  font-size: 21px;
  margin: 0;
  padding: 0;
  font-weight: 900;
  color: #ffa500;
  }
  
  .vendor_content_follow {
  position: relative;
  }
  
  /*.vendor_content_follow::before {*/
  /*  position: absolute;*/
  /*  top: 0;*/
  /*  left: 51%;*/
  /*  width: 1px;*/
  /*  background: black;*/
  /*  height: 100%;*/
  /*  content: "";*/
  /*}*/
  .main_vendor {
    padding: 100px 0px;
  }
  .follow_modal h2 {
    font-size: 20px;
    font-weight: 600;
    margin: 15px 0px;
    color: black;
    text-transform: uppercase;
  }
  .main_billing_forms1 ul {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  margin-top: 30px;
  }
  
  .main_billing_forms1 ul li {
  display: flex;
  align-items: baseline;
  padding: 0;
  margin: 0;
  gap: 20px;
  font-size: 19px;
  font-weight: 600;
  }
  .billing_forms h2 {
  font-size: 30px;
  font-weight: 500;
  color: black;
  }
  
  .billing_forms span {
  font-size: 20px;
  }
  
  .main_billing_forms input {
  width: 100%;
  margin: 15px 0px;
  outline: none;
  padding: 12px;
  
  }
  .pay_with img {
    width: 300px;
  }
  .main_billing_forms1 h3 {
    font-size: 30px;
    font-weight: 500;
    color: black;
  }
  
  .pay_with h2 {
    font-size: 30px;
    font-weight: 500;
    color: black;
    margin-bottom: 20px;
  }
  .billing_img_detail img {
    width: 100%;
  }
  .billing_img_detail ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .billing_img_detail ul li {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 500;
  }
  
  .billing_img_detail h6 {
  font-size: 28px;
  font-weight: 500;
  margin: 20px 0px;
  }
  .main_billing {
    padding: 100px 0px;
  }
  .billing_img_detail a {
    width: 100%;
    text-align: center;
  }
  section.categorydetailpage {
    padding: 50px 0px;
  }
  
  .categorydetailpage h4 {text-transform: uppercase;font-weight: 600;font-size: 32px;margin: 0;}
  
  .categorydetailpage p {
    font-size: 15px;
    color: black;
    font-weight: 500;
  }
  .organizer-name {
    display: flex;
    text-transform: capitalize;
    padding: 10px 0px 0px 0px;
    font-size: 16px;
    justify-content: space-between;
  }
  .event-name h5 {
    font-size: 18px;
    text-align: center;
}
.event-img a {
  width: 100%;
  height: 100%;
}
.user-dropdown .dropdown-toggle::after{
  display: none;
}
.user-dropdown #dropdownMenuLink {
  text-transform: capitalize;
  background: unset;
  color: black;
  border: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  outline: none;
}

.user-dropdown #dropdownMenuLink i {
  font-size: 26px;
}

.user-dropdown #dropdownMenuLink:focus {
  box-shadow: none;
}

.user-dropdown .dropdown-menu ul li a {
  border-bottom: 1px solid;
  font-size: 14px;
  transition: all ease 0.5s;
  width: 100%;
  height: 100%;
  padding: 10px 0px 10px 10px;
  background: #f4a915;
}
.user-dropdown .dropdown-menu ul {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.user-dropdown .dropdown-menu {/* border: 1px solid; */padding: 0;left: -10px !important;top: 5px !important;background: transparent;}

.user-dropdown .dropdown-menu ul li {
  /* border-bottom: 0.1px solid; */
  /* padding: 10px 0px 0px 10px; */
  transition: all ease 0.5s;
}

.user-dropdown .dropdown-menu ul a:hover {
  color: white;
  background: black;
  border-color: black;
}
.dropdown {
  /* border: 1px solid; */
  background: #f4a915;
  padding: 4px 10px;
  border-radius: 30px;
}
.music-box a {
  width: 100%;
}
.event-card a {
  width: 100%;
}
.bottom-slider a {
  width: 100%;
}
.theme-btn.disabled {
  opacity: 0.8;
  cursor: no-drop;
}
.newsletter-field form {
  height: 100%;
  width: 70%;
  display: flex;
  gap: 20px;
}
/* Show both up and down arrows */
.input-number::-webkit-outer-spin-button,
.input-number::-webkit-inner-spin-button {
    display: block;
}

.input-number {
    -moz-appearance: textfield;
    appearance: textfield; /* For Firefox */
}

span#bankdetails ul {
  width: 100%;
  /* min-height: 60px; */
  /* line-height: 30px; */
  border-radius: 0px;
  color: #333 !important;
  border: none;
  background: #F6F7FB;
  padding: 0px 20px;
  font-size: 14px;
  margin-top: -10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
/* thumb bid gallery
------------------------------------*/
.bid-slider-gallery {position: relative;padding: 10px 5px 10px 0;width: 100%;height: 500px;text-align: center;}
.bid-slider-gallery .slick-slide {border: 1px solid #e7edef;border-radius: 5px 5px 5px 5px;-moz-border-radius: 5px 5px 5px 5px;-webkit-border-radius: 5px 5px 5px 5px;display: flex;}
.bid-slider-gallery .slick-slide img {width: 100%;height: 100%;border-radius: 5px 5px 5px 5px;-moz-border-radius: 5px 5px 5px 5px;-webkit-border-radius: 5px 5px 5px 5px;object-fit: contain;}
.bid-gallery-nav-wrapper {width: 100%;filter: brightness(0.5);padding: 5px 0 0 5px;height: 150px;}
.bid-gallery-nav {position: relative;height: 100%;}
.bid-gallery-nav .slick-slide {padding: 5px 0;height: 100%;overflow: hidden;border-radius: 5px 5px 5px 5px;-moz-border-radius: 5px 5px 5px 5px;-webkit-border-radius: 5px 5px 5px 5px;width: 200px !important;display: flex;align-items: center;}
.bid-gallery-nav .slick-slide img {width: 100%;/* height: 88px; */cursor: pointer;opacity: 0.5;border-radius: 5px 5px 5px 5px;-moz-border-radius: 5px 5px 5px 5px;-webkit-border-radius: 5px 5px 5px 5px;}
.bid-gallery-nav .slick-slide.slick-current img { opacity: 1; }
.slick-list.draggable {
  height: 100% !important;
}

.bid-gallery-nav  .slick-track ,.bid-slider-gallery .slick-track {
  height: 100% !important;
}

.bid-gallery-nav img , .bid-gallery-nav video {
  width: 100% !important;
  object-fit: contain;
  height: 100%;
}