
:root {
    --primary: #DE401A;
    --black: #333333;
    --stroke: #E0E0E0;
    --white: #FFF;
    --body: #6A6A6A;
}

body {
    color: #333333;
    font-size: 16px;
    line-height: normal;
}
.bttn {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    background-color: transparent;
    display: inline-block;
    text-align: center;
    padding: 8px 9px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 15px;
    color: var(--white);
}
.bttn-primary {
    background-color: #e57164;
    color: var(--white);
}
/*p {
    line-height: 29px;
    margin: 0;
}*/
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/*input[type=text] {
    border: 0;
    outline: 0;
    padding: 14px;
    padding-left: 28px;
    font-size: 14px;
    border: 1px solid var(--stroke);
    border-radius: 12px;
    width: 100%;
    background-color: var(--white);
}*/

.textboxinput{
    border: 0;
    outline: 0;
    padding: 14px;
    padding-left: 28px;
    font-size: 14px;
    border: 1px solid var(--stroke);
    border-radius: 12px;
    width: 100%;
    background-color: var(--white);

}

.input_wrapper input {
    padding: 8px 12px;
    font-size: 14px;
    color: var(--body);
    font-weight: 500;
    line-height: 18px;
    border-radius: 4px;
}

.common-select {
    position: relative;
    border: 1px solid var(--stroke);
    border-radius: 4px;
    transition: all 0.1s ease-in-out;
}

.common-select::before {
    content: "";
    display: block;
    position: absolute;
    background-image: url('data:image/svg+xml,<svg width="11" height="6" viewBox="0 0 11 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 0.75L5.5 5.25L10 0.75" stroke="%23777777"/></svg>');
    background-size: 100% 100%;
    width: 10px;
    height: 5px;
    right: 10px;
    top: 50%;
    pointer-events: none;
    transform: translate(0, -50%);
    transition: all 0.1s ease-in-out;
}

.common-select select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    border: none;
    background-color: transparent;
    padding: 8px 12px;
    padding-right: 30px;
    font-size: 14px;
    color: var(--body);
    font-weight: 500;
    line-height: normal;
    border: 0;
    outline: 0;
    transition: all 0.1s ease-in-out;
    width: 100%;
}
.common-select.w-100,
.common-select.w-100 select {
    width: 100%;
}

/* Service Banner */
.service_banner_sc {
    padding: 45px 0px;
    background: #FEF8F7;
  }
  .service_banner_container {
    display: flex;
    align-items: center;
  }
  .service_banner_container .content{
    flex: 3.5;
  }
  .service_banner_container .img-container{
    flex: 1;
    margin-left: 30px;
    text-align: end;
  }
  .service_banner_container h1 {
    font-size: 40px;
    font-family: 'Poppins-Medium';
    margin-bottom: 12px;
  }


  /* Tabs Css */

/* Tabs Desktop 888888888888888888888888888888888888888888888888 */
.tabs-desktop.tabs {
    margin: 0;
    padding: 0;
    border: 0;
    list-style: none;
    display: flex;
    margin: 10px 0px;
  
  }
  
  .tabs-desktop.tabs>*+* {
    margin-left: 10px;
  }
  
  .tabs-desktop.tabs li {
  
    transition: all 0.3s ease-in-out;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    color: #6a6a6a;
    font-size: 14px;
    padding: 8px 16px;
  }
  
  .tabs-desktop.tabs li.active {
    background: transparent;
    color: #0053bb;
  }
  
  
  /* Tabs Mobile Css 888888888888888888888888888888888888888888888888*/
  .tabs-mobile {
    position: relative;
    display: none;
  }
  
  .tabs-mobile .dropdown-button {
    padding: 10px 15px;
    padding-right: 30px !important;
    background: var(--primary);
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    border-radius: 5px;
    position: relative;
  }
  
  .tabs-mobile .dropdown-button::after {
    content: "\f0d7";
    font-size: 20px;
    color: #fff;
    font-family: "FontAwesome";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translate(0, -50%);
    transition: all 0.3s ease-in-out;
  }
  
  .tabs-mobile .dropdown-button.open::after {
    transform: translate(0, -50%) rotate(180deg);
  }
  
  .tabs-mobile ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    padding: 0px 7px;
    list-style: none;
    border-radius: 5px;
    z-index: 9;
    background: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  }
  
  .tabs-mobile ul li {
    padding: 8px 8px;
    transition: background-color 0.3s;
    border-bottom: 1px solid rgb(248, 248, 248);
  }
  
  .tabs-mobile ul li:last-child {
    border-bottom: 0;
  }
  
  .tabs-mobile ul li:hover {
    background-color: #fff;
  }
  
  
  /* Tabs Common Css 888888888888888888888888888888888888888888888888 */
  .tabs_container {
    display: inline-block;
    width: 100%;
  }
  
  
  .tabs_container .tab_content {
    display: none;
  }
  
  .tabs_container .tab_content.active {
    display: block;
    animation: tabs_fade_in_show 0.5s ease-in-out;
  }
  
  
  /* Sidebar Tabs */
  .gainers-losers_sc .sidebar_tabs {
    margin-top: 24px;
  }
  
  .sidebar_tabs {
    display: flex;
  }
  
  .sidebar_tabs .tabs-desktop {
    flex: 1;
    margin: 0;
    margin-right: 24px;
    flex-direction: column;
    gap: 0;
    position: sticky;
    top: 80px;
  }
  
  .sidebar_tabs .tabs_container {
    flex: 4.8;
  }
  
  .sidebar_tabs .tabs-desktop.tabs li {
    font-size: 14px;
    padding: 10px 16px;
    border-radius: 8px;
    background: transparent;
    color: var(--body);
    font-weight: 500;
    border: 1px solid transparent;
    transition: none;
    margin: 0;
  }
  .sidebar_tabs .tabs-desktop.tabs li:hover {
    background-color: #fbfbfb;
  }
  
  
  .sidebar_tabs .tabs-desktop.tabs li.active {
    font-weight: bold;
    color: var(--primary);
    background-color: #FEF8F7;
    border: 1px solid var(--stroke);
  }

  .sidebar_tabs .tabs-desktop.tabs li.active a {
  color: var(--primary);  /* Color for <a> when the parent <li> is active */
  font-weight: bold;
}

  /* Financial Tools Css Start */
  .gainers-losers_sc {
    padding: 25px 0px;
  }
  .table_wrapper .head h3 {
    color: var(--black);
    font-weight: bold;
    font-size: 18px;
    margin: 0;
}
.table_wrapper .head {
    padding: 10px 0px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    border-bottom: 1px solid var(--stroke);
}
.retirement_planning_grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 26px;
    margin-top: 24px;
  }
  .retirement_planning_grid label{
    margin-bottom: 16px;
    font-size: 14px;
    font-weight:100;
  }
  .retirement_planning_grid .form_grid_container{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 24px;  
        margin-bottom: 10px;
  }
  .clear {
    display: inline-block;
    color: var(--primary);
    font-size: 14px;
    margin-top: 10px;
  }
  .merge-2 {
    grid-column: 1 / 3;
  }

  .retirement_planning_grid .input_wrapper{
    position: relative;
  }
  .retirement_planning_grid .input_wrapper > span{
    position: absolute;
    top: 50%;
    right: 12px;
    top: 50%;
    transform: translate(0, -50%);
  }
  .max-amt {
    color: #9299B5;
    font-size: 13px;
  }
  .result_amt {
    color: var(--z_black);
    font-weight: bold;
  }
  .result_amt span{
    color: var(--body-text);
    font-weight: 400;
  }
  .retirement_result_box {
    background: #FFFFFF;
  border-bottom: 4px solid var(--black);
  box-shadow: 0px 3px 22px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 22px 26px;
  }
  
  .retirement_result_box > p, .retirement_result_box ul li span {
    display: block;
    font-size: 14px;
  }
  .retirement_result_box ul li span {
    flex: 3;
  }
  .retirement_result_box ul li p {
    flex: 1;
    text-align: end;
  }
  .retirement_result_box > p, .retirement_result_box h3 {
    text-align: center;
  }
  .retirement_result_box h3{
    font-size: 24px;
    font-weight: bold;
    color: var(--primary);
    margin-top: 14px;
  }
  .retirement_result_box h3 span {
    font-size: 16px;
  }
  .retirement_result_box ul{
    padding-top: 24px;
    margin-top: 30px;
    border-top: 1px solid var(--stroke);

  }
  .retirement_result_box ul li{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .retirement_result_box ul li p {
    color: var(--black);
    font-weight: bold;
  }
  .retirement_result_box .bttn{
    width: 100%;
    padding: 16px;
    margin-top: 36px;
  }
  
  /*.disclaimer {
    margin-top: 30px;
  }*/
  
  .disclaimer span{
    display: block;
    color: var(--primary);
    font-size: 14px;
  }
  .disclaimer p{
    
    font-size: 14px;
  }


/* Media Queries mmqq*/

@media (max-width:1199px){
    .service_banner_container br {
        display: none;
    }
}

@media (max-width:991px){
    .tabs-desktop.tabs {
        display: none;
    }
    .gainers-losers_sc .sidebar_tabs {
        flex-direction: column;
    }
    .gainers-losers_sc .tabs-mobile {
        margin-bottom: 10px;
        display: block;
    }
    .service_banner_container h1 {
        font-size: 36px;
    }
    
}

@media (max-width:767px){
    body {
        font-size: 14px;
    }
    p {
        line-height: 24px;
    }
    .service_banner_sc {
        padding: 30px 0px;
    }
    .service_banner_container h1 {
        font-size: 32px;
    }
    .retirement_planning_grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .retirement_planning_grid label {
        margin-bottom: 10px;
        
    }
}

@media (max-width:575px){
    .service_banner_container h1 {
        font-size: 26px;
    }
}

@media (max-width:479px){
    .service_banner_container {
        flex-direction: column-reverse;
    }
    .service_banner_container .img-container {
        margin-left: 0;
        margin-bottom: 16px;
    }
    .retirement_result_box {
        padding: 22px 16px;
    }
}

@media (max-width:359px){
    
}


  
@keyframes tabs_fade_in_show {
    0% {
      opacity: 0;
    }
  
    100% {
      opacity: 1;
    }
  }
  