/*
Theme Name:  BlankSlate Child
Template: 	 blankslate
Theme URI:	 https://wordpress.org/themes/blankslate/
Author:		 ChildThemeWP
Author URI:	 https://childthemewp.com
Version:	 1.0.0
License:	 GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags:    	 opensource     
Text Domain: blankslatechild
*/

/* ul arrow */
.ul-arrow.custom-editor ul li::before {
    background: url("../../uploads/2026/02/ul-arrow-icon.png") no-repeat;
    left: 5px;
    top: 6px;
}

.arrow-block{
    position: relative;
    padding-left: 2rem;
}
.arrow-block::before {
    content: "";
    background: url("../../uploads/2026/02/ul-arrow-icon.png") no-repeat;
    position: absolute;
    width: 16px;
    height: 16px;
    left: 5px;
    top: 9px;
}

.ul-disc-blue.custom-editor ul{
    gap: 1rem;
}

.ul-disc-blue.custom-editor ul li::marker {
    color: #00ACD6;
    font-size: 22px;
}



/* profit features */

.profit-features{
    margin: auto;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        align-items: center;
        gap: 2rem;
}
.features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.profit-features .card {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 1.5rem;
    border-radius: 14px;
    text-align: center;
    font-weight: 600;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    line-height: 45px;
    position: relative;
}

.card-icon1:before,
.card-icon2:before,
.card-icon3:before,
.card-icon4:before,
.card-icon5:before,
.card-icon6:before {
    content: "";
    background-position: center;
    position: absolute;
    width: 150px;
    height: 80px;
}

.card-icon1:before,
.card-icon2:before{
    background: url("../../uploads/2026/02/profit-icon1.png") no-repeat;
    right: -150px;
}

.card-icon3:before,
.card-icon4:before {
    background: url("../../uploads/2026/02/profit-icon2.png") no-repeat;
    left: -141px;
}

.card-icon2:before,
.card-icon4:before {
    transform: scaleY(-1);
}

.card-icon5:before,
.card-icon6:before {
    background: url("../../uploads/2026/02/profit-icon5.png") no-repeat;
    width: 42px;
    height: 30px;
}

.card-icon5:before{
    right: -42px;
}
.card-icon6:before {
    left: -42px;
    rotate: 180deg;
}

.profit-features .center-image {
    display: flex;
    justify-content: center;
}

.profit-features .center-image img {
    max-width: 450px;
    /* width: 260px;
    height: 260px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff; */
}

/* Tablet */
@media (max-width: 1535px) {
    .profit-features .center-image img {
        max-width: 350px;
    }
}
@media (max-width: 1350px) {
    .profit-features .center-image img {
        max-width: 350px;
    }
    .profit-features .card{
        height: 180px;
        font-size: 22px;
        line-height: 35px;
    }
}

@media (max-width: 1200px) {
    .profit-features .center-image img {
        max-width: 280px;
    }
}

@media (max-width: 991px) {
    .profit-features {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    .profit-features .center-image,
    .profit-features .card:before{
        display: none;
    }
    .profit-features .card {
        height: 150px;
    }
    
}

/* Mobile */
@media (max-width: 767px) {
    .profit-features {
        grid-template-columns: 1fr;
    }
    .features {
        flex-wrap: wrap;
        justify-content: center;
        flex-direction: column;
    }

    .profit-features .card {
        width: 100%;
        height: auto;
    }
}

/* calculator */
    .volume-buttons,
    .ticket-buttons{
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
        .volume-buttons button,
  .ticket-buttons button {
      padding: 10px 18px;
      /* margin-right: 10px; */
      border: none;
      border-radius: 5px;
      background: #fff;
      cursor: pointer;
      font-weight: bold;
  }
  .volume-buttons button.active,
  .ticket-buttons button.active {
      background: #00a9ce;
      color: #fff;
  }

  .slider-progress-container {
      margin-top: 15px;
  }

  .slider-progress-container input[type="range"] {
      width: 100%;
      margin: 10px 0;

  }



  .slider-labels {
      display: flex;
      justify-content: space-between;
  }

  .result-box {
      background: #fff;
      padding: 20px;
      border-radius: 6px;
      margin-top: 20px;
  }

  .calculator-table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 10px;
    border: 1px solid #e5e7eb;
  }

  .calculator-table td {
      padding: 10px;
      border-top: 1px solid #ddd;
  }

  .calculator-table td:last-child {
      text-align: right;
      font-weight: bold;
  }

  .highlight {
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 5px;
  }
  
/* RESET DEFAULT RANGE STYLES */
  .slider-progress-container input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: transparent;
    cursor: pointer;
}

/* ===== WEBKIT (Chrome, Edge, Safari) ===== */
.slider-progress-container input[type="range"]::-webkit-slider-runnable-track {
    height: 6px;
    background: #c7c7c7;
    border-radius: 4px;
}

.slider-progress-container input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 18px;
    width: 18px;
    background: #00a9ce;
    border-radius: 50%;
    margin-top: -6px;
}

/* ===== FIREFOX ===== */
.slider-progress-container input[type="range"]::-moz-range-track {
    height: 6px;
    background: #e0e0e0;
    border-radius: 4px;
}

.slider-progress-container input[type="range"]::-moz-range-thumb {
    height: 18px;
    width: 18px;
    background: #00a9ce;
    border: none;
    border-radius: 50%;
}

/* ===== IE / OLD EDGE ===== */
.slider-progress-container input[type="range"]::-ms-track {
    height: 6px;
    background: transparent;
    border-color: transparent;
    color: transparent;
}

.slider-progress-container input[type="range"]::-ms-fill-lower,
.slider-progress-container input[type="range"]::-ms-fill-upper {
    background: #e0e0e0;
    border-radius: 4px;
}

.slider-progress-container input[type="range"]::-ms-thumb {
    height: 18px;
    width: 18px;
    background: #00a9ce;
    border-radius: 50%;
}


/* calculator end*/

/* standard slider */

.business-slider {
    max-width: 1700px;
    margin-left: auto;
}

.business-slider swiper-slide{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.business-pagination{
    display: flex;
    text-align: center;
    justify-content: center;
    margin-top: 2rem;
}

.business-pagination .swiper-pagination {
    position: relative;
    margin-top: 30px;
    text-align: center;
}

.business-pagination .swiper-pagination-bullet {
    width: 50px;
    height: 3px;
    border-radius: 2px;
    background: #00ACD6;
    opacity: 1;
    margin: 0 6px !important;
    transition: 0.3s ease;
}

.business-pagination .swiper-pagination-bullet-active {
    background: #FDB933;
}

/* Technical Full Color */

.technical-full-color{
    position: relative;
}
.technical-full-color::before,
.technical-full-color::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 50%;
    top: 0;
    z-index: -1;
}
.technical-full-color::before{
    background: #E2E3E4;
}
.technical-full-color::after{
    background: #F6F6F6;
    right: 0;
}

@media (max-width: 991px) {
    .technical-full-color::before{
        width: 100%;
    }
    .technical-full-color::after {
        display: none;
    }
}

/* custome tab slider */

.custom-tab ul {
    background: white;
    display: flex;
    gap: 10px;
    padding: 20px;
    border-radius: 50px;
}
.custom-tab ul li{
    display: flex;
    flex: 1;
}
.custom-tab ul li a{
    padding: 15px 20px;
    border-radius: 50px;
    font-size: 18px;
    transition: all 0.3s ease-in-out;
    text-align: center;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.custom-tab ul li a:hover,
.custom-tab ul li a.active{
    background-color: #FDB933;
}




.service-pagination {
    display: flex;
    text-align: center;
    justify-content: center;
    margin-top: 2rem;
}

.service-pagination .swiper-pagination {
    position: relative;
    margin-top: 30px;
    text-align: center;
}

.service-pagination .swiper-pagination-bullet {
    width: 50px;
    height: 3px;
    border-radius: 2px;
    background: #ffffff;
    opacity: 1;
    margin: 0 6px !important;
    transition: 0.3s ease;
}

.service-pagination .swiper-pagination-bullet-active {
    background: #FDB933;
}


.service-slider .custom-editor strong,
.service-slider .custom-editor b{
    font-weight: 500;
}

/* .service-slider {
    height: 100%;
}

.service-slider swiper-container::part(wrapper) {
    align-items: stretch;
} */

.service-slider swiper-slide {
    display: flex;
    height: auto;
}

/* custome tab slider end */

/* Main Tab slider */

.main-tab-slider{

}
.tabs-slider{
 background: white;
 /* display: flex; */
 gap: 10px;
 padding: 20px;
 border-radius: 50px;
}

.tabs-slider swiper-slide h3 {
    padding: 15px 20px;
    border-radius: 50px;
    font-size: 18px;
    transition: all 0.3s ease-in-out;
    text-align: center;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tabs-slider .swiper-slide-active h3{
    background: #FDB933;
}

.tabs-slider swiper-slide {
    display: flex;
    height: auto;
}

/* Main Tab slider end */