/*Cost Estimation from*/
div#cost-from .cost-data .fullWidthRow {
        display: grid;
    grid-template-columns: repeat(2, 1fr);
    background: #fff;
    overflow: hidden;
    padding: 20px;
    gap: 20px;
}
.cost-final div#final_cost span i,
div#cost-from .subtotal-lst .cost-lst span i {
    font-style: normal;
}
div#cost-from {
    width: 100%;
    /*padding: 80px 0;*/
    max-width: 600px;
    margin: 0 0 0 auto;
}
div#cost-from .row-bg-wrap {
    z-index: -1;
}
div#cost-from div#cost-tabs, div#cost-from .cost-data {
    width: 100%;
    overflow: hidden;
}
div#cost-tabs ul {
    margin: 0;
    text-align: center;
    transition: all .3s ease-in-out;
}
div#cost-tabs ul li {
    list-style-type: none;
    display: inline-block;
    padding: 10px;
    margin-right: 10px;
    font-size: 18px;
    line-height: 30px;
    text-transform: capitalize;
    color: #273A88;
    font-weight: 500;
    background: transparent;
}
div#cost-tabs ul * {transition: all .3s ease-in-out;}
div#cost-tabs ul li:after {
    content: '';
    display: block;
    width: 80%;
    height: 2px;
    background: #4dc2ed;
    margin: 5px auto;
    transition: all .3s ease-in-out;
}
div#cost-tabs ul li:hover:after {
    background: #273A88;
}
div#cost-tabs ul li:hover {
    color: #4DC2ED;
    cursor: pointer;
}
div#cost-tabs ul li:last-child {
    margin-right: 0px;
}
div#cost-tabs ul li.active {
    color: #4DC2ED;
}
div#cost-tabs ul li.active:after {
    background: #FCD900;
}
div#cost-from .cost-data {
    width: 100%;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 8px 8px 0px #4dc2ed;
    border: 2px solid #4dc2ed;
}
.cost-data .cost-box {
    /*padding: 20px;*/
    background: #fff;
    transition: all .3s ease-in-out;
}
.cost-box .cost-title h2 {
    margin-bottom: 0px !important;
    font-size: 16px !important;
    color: #273a88 !important;
    font-family: 'caros';
    font-weight: 800;
    line-height: 20px;
}
.cost-box .cost-title {
    overflow: hidden;
    padding-bottom: 10px;
}
.cost-data .cost-box * {
    transition: all .3s ease-in-out;
}
.cost-box .cost-body {
    overflow: hidden;
}
.cost-body div#cost-optin,
.cost-body div#cost-d-pymnt,
.cost-body div#cost-m-plan{
    width: 100%;
    overflow: hidden;
    padding-bottom: 16px;
}
.cost-body h4 {
    font-size: 15px;
    margin: 0 !important;
    font-family: 'caros' !important;
    line-height: 20px !important;
    font-weight: 600;
    color: #273a88;
    padding-bottom: 10px;
    text-transform: capitalize;
}
.cost-body h4 sup {
    color: red;
    font-size: 12px;
}
.cost-body div#cost-m-plan{
    padding-bottom: 0px;
}
div#cost-d-pymnt input,
div#cost-m-plan input,
div#cost-optin input {
    background: transparent;
    padding: 10px;
    border: 1px solid #7a7a7a;
    position: relative;
    font-family: 'caros';
    font-size: 15px;
    line-height: 20px;
    color: #7a7a7a;
    font-weight: 500;
    width: 100%;
    border-radius: 6px;
}
div#cost-d-pymnt input::placeholder,
div#cost-m-plan input::placeholder,
div#cost-optin input::placeholder{
    font-family: 'caros';
    font-size: 14px;
    font-weight: 400;
    line-height: 30px;
    padding: 0px;
}
.cost-body p {
    color: #7a7a7a;
    font-size: 13px;
    font-weight: 600;
    line-height: 20px;
    font-family: 'caros';
    padding-top: 5px;
    padding-bottom: 0;
}
.cost-body h4 span {
    float: right;
}
.cost-box .cost-slider {
    display: flex;
    width: 100%;
    flex-direction: row;
    padding: 10px 0 0;
    align-items: center;
}
.cost-box .cost-slider span {flex: 1;font-size: 12px;font-family: 'caros' !important;font-weight: 500;color: #273a88; line-height: 14px;}
.cost-box .cost-slider span#cst-end {
    text-align: right;
}
.cost-body .cost-subtotal-lst {
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding-bottom: 20px;
}
.cost-body .subtotal-lst {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
.subtotal-lst .cost-lst {
    display: flex;
    overflow: hidden;
}
.subtotal-lst .cost-lst span.cost-lst-space {
    flex: 1;
    position: relative;
    margin: 0 5px;
    overflow: hidden;
}
.subtotal-lst .cost-lst span.cost-lst-space:after {
    content: '...........................................................................................................................................................';
    font-weight: 600;
    font-family: 'caros';
    color: #7a7a7a;
    position: absolute;
    left: 0;
    right: 0;
    opacity: .8;
}
.subtotal-lst .cost-lst span {
    font-size: 14px;
    font-family: 'caros' !important;
    font-weight: 600;
    line-height: 30px;
    color: #7a7a7a;
}
.cost-box .cost-final {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding-top: 20px;
    border-top: 1px solid #eee;
}
.cost-final div#final_cost {
    display: flex;
    overflow: hidden;
}
.cost-final div#final_cost span.cost-lst-space {
    flex: 1;
}
.cost-final div#final_cost span {
    font-size: 14px;
    font-family: 'caros' !important;
    font-weight: 600;
    line-height: 30px;
    color: #273a88;
}
.cost-body .cst-disable {
    opacity: .5;
}
.cost-box .d-none {
    display: none;
}
.cost-box input[type="range"] {
    color: #273A88;
    --thumb-height: 1.225em;
    --track-height: 0.225em;
    --track-color: rgba(0, 0, 0, 0.2);
    --brightness-hover: 150%;
    --brightness-down: 80%;
    --clip-edges: 0.225em;
}
.cost-box input[type="range"].win10-thumb {
    color: #273A88;

    --thumb-height: 1.375em;
    --thumb-width: 0.5em;
    --clip-edges: 0.0125em;
}
/* === range commons === */
.cost-box input[type="range"] {
    position: relative;
    background: #fff0;
    overflow: hidden;
    width: 99%;
}
.cost-box input[type="range"]:active {
    cursor: grabbing;
}
.cost-box input[type="range"]:disabled {
    filter: grayscale(1);
    opacity: 0.3;
    cursor: not-allowed;
    margin: 0;
}
/* === WebKit specific styles === */
.cost-box input[type="range"],
.cost-box input[type="range"]::-webkit-slider-runnable-track,
.cost-box input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    transition: all ease 100ms;
    height: var(--thumb-height);
}
.cost-box input[type="range"]::-webkit-slider-runnable-track,
.cost-box input[type="range"]::-webkit-slider-thumb {
    position: relative;
}
.cost-box input[type="range"]::-webkit-slider-thumb {
    --thumb-radius: calc((var(--thumb-height) * 0.5) - 1px);
    --clip-top: calc((var(--thumb-height) - var(--track-height)) * 0.5 - 0.5px);
    --clip-bottom: calc(var(--thumb-height) - var(--clip-top));
    --clip-further: calc(100% + 1px);
    --box-fill: calc(-100vmax - var(--thumb-width, var(--thumb-height))) 0 0
        100vmax currentColor;

    width: var(--thumb-width, var(--thumb-height));
    background: linear-gradient(currentColor 0 0) scroll no-repeat left center /
        50% calc(var(--track-height) + 1px);
    background-color: currentColor;
    box-shadow: var(--box-fill);
    border-radius: var(--thumb-width, var(--thumb-height));

    filter: brightness(100%);
    clip-path: polygon(
        100% -1px,
        var(--clip-edges) -1px,
        0 var(--clip-top),
        -100vmax var(--clip-top),
        -100vmax var(--clip-bottom),
        0 var(--clip-bottom),
        var(--clip-edges) 100%,
        var(--clip-further) var(--clip-further)
    );
}
.cost-box input[type="range"]:hover::-webkit-slider-thumb {
    filter: brightness(var(--brightness-hover));
    cursor: grab;
}
.cost-box input[type="range"]:active::-webkit-slider-thumb {
    filter: brightness(var(--brightness-down));
    cursor: grabbing;
}
.cost-box input[type="range"]::-webkit-slider-runnable-track {
    background: linear-gradient(var(--track-color) 0 0) scroll no-repeat center /
        100% calc(var(--track-height) + 1px);
}
.cost-box input[type="range"]:disabled::-webkit-slider-thumb {
    cursor: not-allowed;
}
/* === Firefox specific styles === */
.cost-box input[type="range"],
.cost-box input[type="range"]::-moz-range-track,
.cost-box input[type="range"]::-moz-range-thumb {
    appearance: none;
    transition: all ease 100ms;
    height: var(--thumb-height);
}

.cost-box input[type="range"]::-moz-range-track,
.cost-box input[type="range"]::-moz-range-thumb,
.cost-box input[type="range"]::-moz-range-progress {
    background: #fff0;
}
.cost-box input[type="range"]::-moz-range-thumb {
    background: currentColor;
    border: 0;
    width: var(--thumb-width, var(--thumb-height));
    border-radius: var(--thumb-width, var(--thumb-height));
    cursor: grab;
}
.cost-box input[type="range"]:active::-moz-range-thumb {
    cursor: grabbing;
}
.cost-box input[type="range"]::-moz-range-track {
    width: 100%;
    background: var(--track-color);
}
.cost-box input[type="range"]::-moz-range-progress {
    appearance: none;
    background: currentColor;
    transition-delay: 30ms;
}
.cost-box input[type="range"]::-moz-range-track,
.cost-box input[type="range"]::-moz-range-progress {
    height: calc(var(--track-height) + 1px);
    border-radius: var(--track-height);
}
.cost-box input[type="range"]::-moz-range-thumb,
.cost-box input[type="range"]::-moz-range-progress {
    filter: brightness(100%);
}
.cost-box input[type="range"]:hover::-moz-range-thumb,
.cost-box input[type="range"]:hover::-moz-range-progress {
    filter: brightness(var(--brightness-hover));
}
.cost-box input[type="range"]:active::-moz-range-thumb,
.cost-box input[type="range"]:active::-moz-range-progress {
    filter: brightness(var(--brightness-down));
}
.cost-box input[type="range"]:disabled::-moz-range-thumb {
    cursor: not-allowed;
}
div#cost-d-pymnt, 
div#cost-m-plan {
    position: relative;
}
.toggle {
  position: absolute;
  top: 0px;
  transform: translateX(-50%);
  background-color: #FCD900;
  color: #000;
  padding: 5px 10px;
  border-radius: 5px;
  display: none;
  transition: none !important;
}
.cost-box input[type="range"]:hover + .toggle {
  display: block;
}
.cost-box input[type="range"]::-webkit-slider-thumb:hover + .toggle {
  display: block;
}
.cost-box input[type="range"]:disabled:hover + .toggle{
    display: none;
}
.toggle-value {
    font-weight: 700;
    font-size: 12px;
    line-height: 15px;
    font-family: 'caros' !important;
}

/*==----> Media Querries <----==*/
@media(max-width: 1440px){
    
}
@media(max-width: 1380px){
    
}
@media(max-width: 1300px){

}
@media(max-width: 1280px){
    
}
@media (max-width: 1250px) {

}
@media(max-width: 1200px){

}
@media (max-width: 1180px) {

}
@media (max-width: 1150px) {

}
@media(max-width: 1100px){

}
@media (max-width: 1080px) {

}
@media (max-width: 1024px) {

div#cost-from .cost-data {
    width: 100%;
    /*padding-top: 30px;*/
}
}
@media (max-width: 999px) {

}
@media (max-width: 950px) {

}
@media (max-width: 899px) {

}
@media (max-width: 850px) {

div#cost-from {
    width: 100%;
    /* padding: 80px 0; */
    max-width: 100%;
    margin: 0 0 0 auto;
}
div#cost-from .cost-data {
    box-shadow: 0px 6px 0px #4dc2ed;
}
}
@media(max-width: 800px){

}
@media (max-width: 700px) {
}
@media (max-width: 699px) {

}
@media (max-width: 680px) {
}
@media (max-width: 650px) {
}
@media (max-width: 600px) {

}
@media (max-width: 550px) {
}
@media (max-width: 499px) {

}
@media (max-width: 480px){
    div#cost-tabs ul li {
    padding: 7px;
    font-size: 15px;
    line-height: 25px;
}
.cost-body h4 {
    font-size: 14px;
}
    .cost-box .cost-title h2 {
    font-size: 14px !important;
    line-height: 20px !important;
}
div#cost-d-pymnt input,
div#cost-m-plan input,
div#cost-optin input {
    padding: 8px;
    font-size: 15px;
    line-height: 15px;
}
    div#cost-from .cost-data .fullWidthRow {
    padding: 12px;
}
    section.typbrcs_bnr {
        padding: 30px 0;
    }
    section.typbrcs_bnr .txt_block h2 {
    font-size: 20px;
    line-height: 30px;
}
}
@media (max-width: 420px) {
.cost-body div#cost-optin, .cost-body div#cost-d-pymnt, .cost-body div#cost-m-plan {
    padding-bottom: 15px;
}
div#cost-m-plan {
    padding-bottom: 0 !important;
}
.subtotal-lst .cost-lst span {
    line-height: 22px;
}
.cost-final div#final_cost,
.subtotal-lst .cost-lst {
    flex-direction: column;
}
.cost-body .cost-subtotal-lst {
    padding-bottom: 10px;
}
.cost-box .cost-final {
    padding-top: 10px;
}
}
@media (max-width: 390px) {
    .cost-body h4 {
        font-size: 13px;
    }
    .cost-box input[type="range"] {
    font-size: 10px;
}
}
@media (max-width: 350px){
div#cost-d-pymnt input,
div#cost-m-plan input,
div#cost-optin input {
    padding: 8px;
    font-size: 14px;
    line-height: 14px;
}
.toggle {
    font-size: 14px;
}
.cost-box .cost-slider span {
    font-size: 12px;
}
.cost-final div#final_cost span {
    font-size: 12px;
    line-height: 20px;
}
    .cost-body h4 {
        font-size: 12px;
    }
        .cost-box .cost-title h2 {
        font-size: 13px !important;
        line-height: 20px !important;
    }
        .subtotal-lst .cost-lst span {
        font-size: 12px;
        line-height: 16px;
    }
    div#cost-from .cost-data .fullWidthRow {
    gap: 15px;
}
div#cost-d-pymnt input,
div#cost-m-plan input,
    div#cost-optin input {
        padding: 6px;
        font-size: 13px;
        line-height: 13px;
    }
    .cost-body p {
    font-size: 11px;
}
    .cost-box input[type="range"] {
        font-size: 6px;
    }
    .cost-body h4
 {
    padding-bottom: 6px;
}
}