/* Custom style for the DatePickerSingle placeholder */
.custom-date-picker .DateInput_input {
    font-size: 16px;
    font-weight: 400;
    border-radius: 0;
    width: 100%;
    height: 45px;
    margin-left: 0px !important;
}

.no-pointer-events .js-plotly-plot {
    pointer-events: none;  /* Disables pointer events */
    touch-action: none;  /* Allows scrolling while preventing other touch actions */
}

.js-plotly-plot .plotly .cursor-ew-resize {
    cursor: default;
}

/* Default font size for larger screens */
.model-portfolio {
    font-size: 48px;
}

/* Smaller font size for screens with a width less than 768px */
@media only screen and (max-width: 768px) {
    .model-portfolio {
        font-size: 32px;
    }
}

/* Even smaller font size for screens with a width less than 480px */
@media only screen and (max-width: 480px) {
    .model-portfolio {
        font-size: 24px;
    }
}

.p2-titleup {
    font-size: 40px;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgb(0, 0, 0);
    font-weight: 40;
    text-align: center;
    font-family: 'Varela', sans-serif;
}

.p2-titledown {
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #124076 ;
    font-size: 60px;
    font-weight: 500;
    text-align: center;
    font-family: 'PT Sans', sans-serif;
}

/* Smaller font size for screens with a width less than 768px */
@media only screen and (max-width: 768px) {
    .model-portfolio2 {
        font-size: 32px;
    }

    .p2-titleup {
        font-size: 34px;
    }

    .p2-titledown {
        transform: translate(-50%,-40%);
    }
}

/* Even smaller font size for screens with a width less than 480px */
@media only screen and (max-width: 480px) {
    .model-portfolio2 {
        font-size: 24px;
    }
}

/* Target navbar links */
.navbar-nav .nav-link {
    color: #000 !important; 
    font-weight: bold;  
    
}

/* Optional: Change text color on hover */
.navbar-nav .nav-link:hover {
    color: #8e8f8f !important; /* Replace #007bff with your desired hover color */
    font-weight: bold; 
}

/* Optional: Change text color for active links */
.navbar-nav .nav-link.active {
    color: #8e8f8f !important; /* Replace #0056b3 with your desired active link color */
    font-weight: bold; 
}

/* Scrollbar for the table custom-container */
.custom-scroll {
    max-height: 650px; /* Fixed height */
    overflow-y: scroll; /* Enable vertical scrolling */
    scrollbar-width: thin; /* For Firefox */
    scrollbar-color: #b4e1ff #152647; /* Scrollbar track and thumb colors */
    border-radius: 5px;
    margin-bottom: 10px;
}

.custom-scroll::-webkit-scrollbar {
    width: 8px; /* Scrollbar width */
}

.custom-scroll::-webkit-scrollbar-track {
    background: #b4e1ff; /* Track color */
}

.custom-scroll::-webkit-scrollbar-thumb {
    background-color: #b4e1ff; /* Thumb color */
    border-radius: 10px; /* Rounded corners */
    border: 2px solid #b4e1ff; /*Optional border for thumb*/
}

.custom-scroll::-webkit-scrollbar-thumb:hover {
    background-color: #b4e1ff; /* Thumb color on hover */
}

/* Scrollbar for the table custom-container */
.custom-scroll2 {
    max-height: 650px; /* Fixed height */
    overflow-y: scroll; /* Enable vertical scrolling */
    scrollbar-width: thin; /* For Firefox */
    scrollbar-color: #ededed #1c4d26; /* Scrollbar track and thumb colors */
    border-radius: 5px;
    margin-bottom: 10px;
}

.custom-scroll2::-webkit-scrollbar {
    width: 8px; /* Scrollbar width */
}

.custom-scroll2::-webkit-scrollbar-track {
    background: #ededed; /* Track color */
}

.custom-scroll2::-webkit-scrollbar-thumb {
    background-color: #ededed; /* Thumb color */
    border-radius: 10px; /* Rounded corners */
    border: 2px solid #ededed; /*Optional border for thumb*/
}

.custom-scroll2::-webkit-scrollbar-thumb:hover {
    background-color: #ededed; /* Thumb color on hover */
}

.service-card {
    position: relative;
    max-height: 120px;
    border: 1px solid #ffffff;
    overflow: hidden;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 20px;
    background-color: #919aa14d;
    overflow-y: hidden;
    margin-right: 15px;
    margin-left: 15px;
}

.service-card .body {
    padding: 5px;
    align-items: center;
    justify-content: center;
}

.service-card .body .title {
    font-size: 20px;
    font-weight: bold;
    color: #363A3F;
}

.service-card .body .indexnum {
    font-size: 26px;
    font-weight: bold;
}

.service-card .body .indexchange {
    font-size: 14px;
}

.service-card .body .subtitle {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all, 0.3s;
    transition: all, 0.3s;
    font-size: 13px;
    align-items: center;
}

.custom-container {
    width: 100%;
    padding-right: 5px;
    padding-left: 5px;
    margin-right: auto;
    margin-left: auto;
  }
  
  @media (min-width: 576px) {
    .custom-container {
      max-width: 540px;
    }
  }
  
  @media (min-width: 768px) {
    .custom-container {
      max-width: 720px;
    }
  }
  
  @media (min-width: 992px) {
    .custom-container {
      max-width: 960px;
    }
  }
  
  @media (min-width: 1200px) {
    .custom-container {
      max-width: 1140px;
    }
  }

/* footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex; 
    flex-direction: column;
    min-height: 50px;
    border-top: 1px solid #ddd8d8;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
    align-items: center;
    background-color: white;
    color: #CECECE;
    width: 100%;
    font-size: 8px;
} */

footer {
    border-top: 1px solid #ddd8d8;
}

.footer .frow {
    margin: 0;
    padding: 10px;
    text-align: justify;
    font-family: 'Ariel', sans-serif;
    color: #474747;
    font-size: 0.7rem;
    letter-spacing: 0.015rem;
}

.footer .frow .text {
    color: #000
}

.p2-heading1 {
    text-align: center;
    margin-top: 60px;
    font-weight: bold;
    font-size: 30px;
    margin-bottom: 60px;
    color: black
}

.p2-heading3 {
    text-align: center;
    margin-top: 60px;
    font-weight: bold;
    font-size: 30px;
    margin-bottom: 15px;
}

.p2-heading2 {
    text-align: center;
    margin-top: 30px;
    font-weight: bold;
    font-size: 25px;
}

.p2-chartarea {
    overflow-x: hidden;
}

.p2-chart {
    height: 400px;
    width: 100%;
    cursor: default;
    padding-right: 10px;
    padding-left: 10px;
    margin-bottom: 50px;
}

.custom-nav { 
    padding: 10px 0;
}

.text-bold{
    font-weight: bold;
}

.p2-tablearea {
    padding-right: 20px;
    padding-left: 20px;
}

.layout-main {
    overflow-x: hidden;
}

#grid1 {
    height: 400px;
    /* background: #ededed; */
    background-image: linear-gradient(to right bottom, #c1e5f3, #4a83b8);
    object-fit: cover;
    object-position: center;

}

#grid2 {
    height: 400px;
    background: #ffe4e1;
    background-image: linear-gradient(to right bottom, #c1e5f3, #4a83b8);
    object-fit: cover;
    object-position: center;

}

#grid3 {
    height: 400px;
    background: #5e778f;
    background-image: linear-gradient(to right bottom, #c1e5f3, #4a83b8);
    object-fit: cover;
    object-position: center;

}

#grid4 {
    height: 400px;
    background: #5e778f;
    background-image: linear-gradient(to right bottom, #c1e5f3, #4a83b8);
    object-fit: cover;
    object-position: center;
}

.wrapper {
    width: min(100rem, 100% - 2rem);
    margin-inline: auto;
}
  
.channel-info {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}
  
.channel-info :not(h2) {
    opacity: 0.8;
}
  
.channel-info__meta {
    display: flex;
    gap: 1rem;
}
  
.channel-info__img {
    block-size: 8.5rem;
    border-radius: 50%;
}
  
[role="tablist"] {
    position: relative;
    display: flex;
    width: fit-content;
    border-bottom: 3px solid hsl(0, 0%, 83%);
    margin-block: 1rem;
    color: #000;
}

[role="tablist"]::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0;
    scale: var(--_width, 0.33333333333) 1;
    translate: var(--_left, 4) 0;
    transform-origin: left;
    transition: scale 200ms, translate 200ms;
    background: black;
    font-weight: bold;
    border-bottom: 3px solid hsl(0, 15%, 9%);
  }

  [role="tab"] {
    color: #000;
    background: lightblue;
    background: transparent;
    padding: 1em 2em;
    border: 0;
    font: inherit;
    text-transform: uppercase;
    font-weight: 500;
    opacity: 0.7;
    cursor: pointer;
  }
  
  [role="tab"]:hover {
    opacity: 1;
    font-weight: bold;
  }
  
  [role="tab"][aria-selected="true"] {
    opacity: 1;
    font-weight: bold;
  }
  
.refresh-button1 {
    width: 100%;
    height: 40px;
    border-radius: 5px;
    /* background: linear-gradient(to right ,#c1e5f3, #89bae7); */
    background-color: #ededed;
    color: black;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;

}

.refresh-button2 {
    width: 100%;
    height: 40px;
    border-radius: 5px;
    background: #fff;
    color: #000;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
}

.refresh-button3 {
    width: 100%;
    height: 40px;
    border-radius: 2px;
    background: #fff;
    color: #000;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
}


/* FOR COMMENTARY PAGE */

.posting-thread-box {
    display: block;
    padding: 20px;
    border-radius: 15px;
    margin-top: 20px;
    background: #ededed
    /* linear-gradient(to left bottom, #4a83b8, #c1e5f3); */
}

.post-thread-btn {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    width: 100%;
    border-radius: 10px;
}

.post-thread-input {
    margin-bottom: 10px;
    border-radius: 10px;
    width: 100%;
}

.post-thread-input-long {
    display: block;
    margin-bottom: 10px;
    border-radius: 10px;
    min-height: 50px
}

.post-thread-header {
    color: black
}

.form-control2 {
    display: block;
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.5;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-clip: padding-box;
    border: none;
    border-radius: 10px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.form-control2 {
    transition: none;
}
}
.form-control2[type=file] {
overflow: hidden;
}
.form-control2[type=file]:not(:disabled):not([readonly]) {
cursor: pointer;
}
.form-control2:focus {
color: var(--bs-body-color);
background-color: #f7f7f9;
border-color: #8d8d8d;
outline: 0;
box-shadow: 0 0 0 0.25rem rgba(26, 26, 26, 0.25);
}
.form-control2::-webkit-date-and-time-value {
min-width: 85px;
height: 1.5em;
margin: 0;
}
.form-control2::-webkit-datetime-edit {
display: block;
padding: 0;
}
.form-control2::-moz-placeholder {
color: var(--bs-secondary-color);
opacity: 1;
}
.form-control2::placeholder {
color: var(--bs-secondary-color);
opacity: 1;
}
.form-control2:disabled {
background-color: #eceeef;
opacity: 1;
}
.form-control2::-webkit-file-upload-button {
padding: 0.75rem 1.5rem;
margin: -0.75rem -1.5rem;
-webkit-margin-end: 1.5rem;
margin-inline-end: 1.5rem;
color: var(--bs-body-color);
background-color: var(--bs-tertiary-bg);
pointer-events: none;
border-color: inherit;
border-style: solid;
border-width: 0;
border-inline-end-width: 0;
border-radius: 0;
-webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-control2::file-selector-button {
padding: 0.75rem 1.5rem;
margin: -0.75rem -1.5rem;
-webkit-margin-end: 1.5rem;
margin-inline-end: 1.5rem;
color: var(--bs-body-color);
background-color: var(--bs-tertiary-bg);
pointer-events: none;
border-color: inherit;
border-style: solid;
border-width: 0;
border-inline-end-width: 0;
border-radius: 0;
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.form-control2::-webkit-file-upload-button {
    -webkit-transition: none;
    transition: none;
}
.form-control2::file-selector-button {
    transition: none;
}
}
.form-control2:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
background-color: var(--bs-secondary-bg);
}
.form-control2:hover:not(:disabled):not([readonly])::file-selector-button {
background-color: var(--bs-secondary-bg);
}


.threads-wrapper {
    padding: 20px;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 15px;
    margin-left: 10px;
    margin-right: 20px;
    margin-bottom: 10px;
    top: 20px;
    left: 20px;
    bottom: 10px;
}

/* For page 3 onwards */
.p3-title {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: white;
    font-size: 48px;
    font-weight: 500;
    text-align: center;
    font-family: 'Red Hat Display', sans-serif;
}
.p3-header-area {
    position: relative;
    text-align: center;
}

.p3-header-col {
    padding: 0;
    margin-bottom: 10px;
}

.uport-wrapper11 {
    padding-top:20px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 0;
    background-color: #ffffff;
    border-radius: 10px;
    margin-top: 20px;
    margin-right: 15px;
    margin-left: 15px;
    left: 10px;
    bottom: 10px;
    height: 100%;
    margin-bottom: 0px;
    overflow-x: auto;
    overflow-y: auto;
}

.uport-wrapper12 {
    padding-top:20px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 0;
    /* background: linear-gradient(to top, #8cbacc, #4a83b8);  */
    background-color: #ededed;
    border-radius: 10px;
    margin-top: 20px;
    margin-right: 15px;
    margin-left: 15px;
    left: 10px;
    bottom: 10px;
    height: 100%;
    margin-bottom: 0px;
    overflow-x: auto;
    overflow-y: auto;
    display: flex;
    flex-direction: column;

}

.uport-wrapper12 .button-holder {
    margin-top: auto;
    height: 50px;
}

.uport-wrapper21 {
    padding-top:20px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 10px;
    /* background: linear-gradient(to top, #c1e5f3, #8cbacc);  */
    background-color: #ededed;
    border-radius: 10px;
    margin-top: 20px;
    margin-right: 15px;
    margin-left: 15px;
    left: 10px;
    bottom: 10px;
    height: 100%;
    margin-bottom: 20px;
    overflow-x: auto;
    overflow-y: auto;
}

.uport-wrapper22 {
    padding-top:20px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 10px;
    background: transparent;
    border-radius: 10px;
    margin-top: 20px;
    margin-right: 15px;
    margin-left: 15px;
    left: 10px;
    bottom: 10px;
    height: 100%;
    margin-bottom: 20px;
    overflow-x: auto;
    overflow-y: auto;
}

.uport-row {
    margin-top: 20px;
    margin-bottom: 20px;
}

.uport-h1 {
    font-size: 25px;
    font-weight: bold;
    color: black;
}

.uport-h12 {
    font-size: 25px;
    font-weight: bold;
    color: black;
}
.uport-h13 {
    font-size: 25px;
    font-weight: bold;
    color: black;
}
.uport-h2 {
    font-size: 15px;
    font-weight: bold;
    color: black;
    margin-bottom: 5px;
}
.uport-h22 {
    font-size: 15px;
    font-weight: bold;
    color: black;
    margin-bottom: 5px;
}
.uport-form-wrapper { 
    background-color: transparent;
}

.accordian-uport {
    border-radius: 10px;
    margin-bottom: 10px;
    background-color: transparent;
}

.form-control3 {
    display: block;
    width: 100%;
    padding: 0.75rem 10px;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.5;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-clip: padding-box;
    border: none;
    border-radius: 2px;
    height: 45px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.form-control3 {
    transition: none;
}
}
.form-control3[type=file] {
overflow: hidden;
}
.form-control3[type=file]:not(:disabled):not([readonly]) {
cursor: pointer;
}
.form-control3:focus {
color: var(--bs-body-color);
background-color: #f7f7f9;
border-color: #8d8d8d;
outline: 0;
box-shadow: 0 0 0 0.25rem rgba(26, 26, 26, 0.25);
}
.form-control3::-webkit-date-and-time-value {
min-width: 85px;
height: 1.5em;
margin: 0;
}
.form-control3::-webkit-datetime-edit {
display: block;
padding: 0;
}
.form-control3::-moz-placeholder {
color: var(--bs-secondary-color);
opacity: 1;
}
.form-control3::placeholder {
color: var(--bs-secondary-color);
opacity: 1;
}
.form-control3:disabled {
background-color: #eceeef;
opacity: 1;
}
.form-control3::-webkit-file-upload-button {
padding: 0.75rem 1.5rem;
margin: -0.75rem -1.5rem;
-webkit-margin-end: 1.5rem;
margin-inline-end: 1.5rem;
color: var(--bs-body-color);
background-color: var(--bs-tertiary-bg);
pointer-events: none;
border-color: inherit;
border-style: solid;
border-width: 0;
border-inline-end-width: 0;
border-radius: 0;
-webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-control3::file-selector-button {
padding: 0.75rem 1.5rem;
margin: -0.75rem -1.5rem;
-webkit-margin-end: 1.5rem;
margin-inline-end: 1.5rem;
color: var(--bs-body-color);
background-color: var(--bs-tertiary-bg);
pointer-events: none;
border-color: inherit;
border-style: solid;
border-width: 0;
border-inline-end-width: 0;
border-radius: 0;
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.form-control3::-webkit-file-upload-button {
    -webkit-transition: none;
    transition: none;
}
.form-control3::file-selector-button {
    transition: none;
}
}
.form-control3:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
background-color: var(--bs-secondary-bg);
}
.form-control3:hover:not(:disabled):not([readonly])::file-selector-button {
background-color: var(--bs-secondary-bg);
}

.form-control4 {
    color: #8d8d8d;
    font-weight: 450 !important;
    display: block;
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.5;
    margin-left: 0px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-clip: padding-box;
    border: 1px;
    border-radius: 2px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    background-color: #d8d8d834;
}
@media (prefers-reduced-motion: reduce) {
.form-control4 {
    transition: none;
}
}
.form-control4[type=file] {
overflow: hidden;
}
.form-control4[type=file]:not(:disabled):not([readonly]) {
cursor: pointer;
}
.form-control4:focus {
color: var(--bs-body-color);
background-color: #f7f7f9;
border-color: #8d8d8d;
outline: 0;
box-shadow: 0 0 0 0.25rem rgba(26, 26, 26, 0.25);
}
.form-control4::-webkit-date-and-time-value {
min-width: 85px;
height: 1.5em;
margin: 0;
}
.form-control4::-webkit-datetime-edit {
display: block;
padding: 0;
}
.form-control4::-moz-placeholder {
color: var(--bs-secondary-color);
opacity: 1;
}
.form-control4::placeholder {
color: var(--bs-secondary-color);
opacity: 1;
}
.form-control4:disabled {
background-color: #eceeef;
opacity: 1;
}
.form-control4::-webkit-file-upload-button {
padding: 0.75rem 1.5rem;
margin: -0.75rem -1.5rem;
-webkit-margin-end: 1.5rem;
margin-inline-end: 1.5rem;
color: var(--bs-body-color);
background-color: var(--bs-tertiary-bg);
pointer-events: none;
border-color: inherit;
border-style: solid;
border-width: 0;
border-inline-end-width: 0;
border-radius: 0;
-webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-control4::file-selector-button {
padding: 0.75rem 1.5rem;
margin: -0.75rem -1.5rem;
-webkit-margin-end: 1.5rem;
margin-inline-end: 1.5rem;
color: var(--bs-body-color);
background-color: var(--bs-tertiary-bg);
pointer-events: none;
border-color: inherit;
border-style: solid;
border-width: 0;
border-inline-end-width: 0;
border-radius: 0;
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.form-control4::-webkit-file-upload-button {
    -webkit-transition: none;
    transition: none;
}
.form-control4::file-selector-button {
    transition: none;
}
}
.form-control4:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
background-color: var(--bs-secondary-bg);
}
.form-control4:hover:not(:disabled):not([readonly])::file-selector-button {
background-color: var(--bs-secondary-bg);
}

.form4-output{
    width: 98%;
    margin-left: 15px;
    margin-right: 10px;
    background-color: transparent;
    border-radius: 1px;
    padding: 10px;
    color: #333; 
    font-weight: bold;
}

.small-note {
    text-align: center;
    font-style: italic;
    font-size: small;
    color: black
}

.small-note2 {
    text-align: center;
    font-style: italic;
    font-size: small;
    color: black
}

.regular-note {
    color: rgb(124, 124, 124);
    font-size: 15;
}


/* FOR MODEL PORTFOLIO PAGE */

.mport-wrapper1 {
    padding: 30px;
    /* background: linear-gradient(to top,#c1e5f3, #4a83b8); */
    background-color: #ededed;
    border-radius: 2px;
    margin-top: 5px;
    margin-left: 15px;
    margin-right: 15px;
    left: 10px;
    bottom: 10px;
    height: 100%;
    margin-bottom: 20px;
    overflow: auto;
    color: black;
}

.mport-wrapper2 {
    padding: 30px;
    /* background: linear-gradient(to top,#c1e5f3, #4a83b8); */
    background-color: #ededed;
    border-radius: 2px;
    margin-top: 5px;
    margin-left: 15px;
    margin-right: 15px;
    left: 10px;
    bottom: 10px;
    height: 100%;
    margin-bottom: 20px;
    overflow: auto;
}

.mport-h1 {
    text-align: center;
    margin-top: 30px;
    font-weight: bold;
    font-size: 30px;
}

.mport-h12 {
    text-align: center;
    margin-top: 30px;
    font-weight: bold;
    font-size: 30px;
    color: #000;
}

.mport-text-norm {
    text-align: left;
    color: #000;
    margin-top: 0;
    font-size: 16px;
    margin-bottom: 3px;
    letter-spacing: inherit;
    background-color: transparent;
    background: none;
}

.mport-text-norm2 {
    text-align: left;
    color: #000;
    /* font-family: Arial, sans-serif; */
    font-size: 16px;
    background-color: transparent;
    background: none;
}

.mport-text-bold {
    text-align: left;
    color: #000;
    margin-top: 0;
    /* font-family: Arial, sans-serif; */
    font-weight: bold;
    font-style: italic;
    margin-top: 15px;
    margin-bottom: 8px;
}

.mport-input {
    width: auto;
    background-color: transparent;
    color: #000;
    vertical-align: middle;
    /* font-family: Arial, Helvetica, sans-serif; */
}

.mport-input-wrapper {
    border-radius: 25px;
    border: 1px solid #969696;
    height: 50px
}

.mport-chart-area {
    cursor: default;
    margin-top: 20px;
    height: 600px;
}

.mport-chart-note {
    font-size: small;
    color: #000;
    margin-top: 5px;
    margin-right: 5px;
    font-style: italic;
    text-align: right;
}

.container2 {
    display: flex;
	flex-direction: column;
	height: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    margin-bottom: 20px;
}

footer {
    margin-top: 10px;
}

.p1-header-col {
    overflow-x: hidden;
}

.p1-header-col .header-img-div {
    padding: 0;
    margin-bottom: 50px;
}

.p1-header-col .header-img-div .image-bg{
    width: 100%;
    height: 850px;
    object-fit: cover;
    object-position: center;
}

.risk-gauge {
    width: 100%;
    cursor: default;
    margin-top: 30px;
    margin-bottom: 30px;
}

#portfolio-table{
    flex-grow: 1;
}

.buy-sell-stock-dropdown {

    width: 100%;
    height: 45px;
    font-size: 20px;
    align-items: center;
    border: none;
}

.Select-control {
    border-radius: 2px;
    width: 100%;
    height: 45px;
    font-size: 20px;
    align-items: center;
    border: none;
}

.DateInput {
    margin: 0;
    padding: 0;
    background: #fff;
    position: relative;
    display: inline-block;
    width: 130px;
    vertical-align: middle;
    width: 100%;
    border-radius: 20px;
    border: none;
}
.DateInput1 { 
    width: 100%;
    border: none;
    height: 40px;
}

.SingleDatePicker {
    width: 100%;
    border: none;
    height: 40px;
} 

.SingleDatePicker_1 {
    width: 100%;
    border: none;
    height: 40px;
}

.buy-stock-select {
    height: 40px;
    border: none;
    border-radius: 2px;
}

.buy-stock-select2 {
    height: 40px;
    border: none;
    border-radius: 2px;
}

.buy-price-output { 
    width: 100%;
    margin: 0;
    background-color: rgb(255, 255, 255);
    border-radius: 1px;
    height: 40px;
    text-align: left;
    padding-left: 10px;
    padding-top: 10px;
    color: black
}

.fixed-width-col {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.fixed-width-col1 {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    overflow: auto;
}

.fixed-width-col2 {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.fixed-width-col31 {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.fixed-width-col32 {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.fixed-width-col6 {
    width: 100%;
    max-width: 700px;
    margin-left: 15px;
    margin-right: 15px;
}

@media (min-width: 1420px) {
    .fixed-width-col31 {
        margin: 0 0 0 10px; /* top right bottom left */
    }

    .fixed-width-col32 {
        margin: 0 10px 0 0; /* top right bottom left */
    }
}

.fixed-width-col-footer {
    width: 100%;
    margin: 0 auto; /* Center by default */

    /* Apply fixed max width only on md and larger */
    max-width: none;
}

@media (min-width: 768px) {
    .fixed-width-col-footer {
        max-width: 1250px;
    }
}

.fixed-width-col4 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.fixed-width-col51 {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
}

.fixed-width-col52 {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
}

@media (min-width: 1740px) {
    .fixed-width-col51 {
        margin: 0 0 0 10px; /* top right bottom left */
    }

    .fixed-width-col52 {
        margin: 0 10px 0 0; /* top right bottom left */
    }
}

#fee-dropdown .Select-menu-outer {
    bottom: 100% !important;
    top: auto !important;
    width: 100%;
}

.brokerage-select {
    height: 50px;
    border: none;
    border-radius: 2px;
    width: 100%;
}

#fee-dropdown .Select-value-label {
    flex-direction: row;
    margin-left: 10px;
    display: flex;
    font-family: 'Nunito Sans', sans-serif;
    font-size: medium;
}

#fee-dropdown-us .Select-menu-outer {
    bottom: 100% !important;
    top: auto !important;
    width: 100%;
}

#fee-dropdown-us .Select-value-label {
    flex-direction: row;
    margin-top: 0px;
    margin-left: 10px;
    display: flex;
    font-family: 'Nunito Sans', sans-serif;
    font-size: medium;
}

#react-select-2--value-item {
    margin-top: 10px;
}

.js-plotly-plot .plotly .cursor-ns-resize {
    cursor: default !important;
}

.js-plotly-plot .plotly .cursor-pointer {
    cursor: default !important;
}

.risk-card {
    position: relative;
    max-height: 120px;
    border: 1px solid #ffffff;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 20px;
    background-color: #919aa14d;
    margin-right: 15px;
    margin-left: 15px;
    overflow-y: hidden;
    overflow-x: auto;
}

.risk-card .rc-content {
    text-align: left;
    font-weight: 700;
    font-size: 25px;
    color: #000;
    margin-left: 6rem;
    margin-top: 1rem;
}

@media only screen and (max-width: 768px) {
    .risk-card {
        margin-right: 20px !important;
        margin-left: 20px !important;
    }

    .risk-card .rc-content {
        font-size: 18px;
        margin-left: 4rem !important;
    }

}

/* Even smaller font size for screens with a width less than 480px */
@media only screen and (max-width: 480px) {
    .risk-card {
        margin-right: 20px !important;
        margin-left: 20px !important;
    }

    .risk-card .rc-content {
        font-size: 14px;
        margin-left: 1rem !important;
    }
}

.table-margin {
    margin-left: 15px !important;
    margin-right: 15px !important;
    width: 95% !important;
}

.responsive-chart {
  width: 100%;
  max-width: 1100px; 
  margin-right: 10px;
  margin-left: 10px;
}

/* For smaller screens */
@media (max-width: 768px) {
  .responsive-chart {
    max-width: 97%;
    padding: 5px;
  }

  .responsive-chart .js-plotly-plot {
    height: 300px !important; /* Shrink height */
  }
}

@media (max-width: 1099px) {
    .responsive-chart {
      max-width: 97%;
      padding: 5px;
    }
}

.Select--single>.Select-control .Select-value, .Select-placeholder {
    bottom: 0;
    color: #aaa;
    left: 0;
    line-height: 45px;
    padding-left: 10px;
    padding-right: 10px;
    position: absolute;
    right: 0;
    top: 0;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 16px;
    font-weight: 400;
}

.SingleDatePickerInput__withBorder {
    border-radius: 2px;
    border: none;
    width: 100%;
    height: 45px;
}
.DateInput_input__focused {
    outline: 0;
    background: #fff;
    border: 0;
    border-top: 0;
    border-right: 0;
    /* border-bottom: 2px solid #008489; */
    border-left: 0;
}

.DateInput_input {
    margin-left: 10px !important;
    color: black;
    font-weight: 400;
    font-size: 16px;
}

#usportfolio-table {
    overflow: auto;
}

#portfolio-table {
    overflow: auto;
}

@media (max-width: 700px) {
    #usportfolio-table {
        font-size: small;
    }
    #portfolio-table {
        font-size: small;
    }
}

@media (max-width: 490px) {
    table {
        font-size: small;
    }
}

.body-wrapper {
    min-height: 94vh;
    display: flex;
    flex-direction: column;
}

.mt-75rem  {
    margin-top: 0.75rem !important;
}

#quant-model-trades .buy-stock-select2 .Select-control .Select-multi-value-wrapper .Select-placeholder {
    background-color: #d8d8d834;
    padding-left: 1.5rem;
    color: rgba(85, 89, 92, 0.75) !important;
    letter-spacing: initial;
    font-weight: 450;
}

#quant-model-trades .buy-stock-select2 .Select-control .Select-multi-value-wrapper .Select-value {
    background-color: #d8d8d834;
    padding-left: 1.5rem;
    color: rgba(85, 89, 92, 0.75) !important;
    letter-spacing: initial;
    font-weight: 450;
}

.has-value.Select--single>.Select-control .Select-value .Select-value-label, .has-value.is-pseudo-focused.Select--single>.Select-control .Select-value .Select-value-label {
    color: rgba(85, 89, 92, 0.75) !important;
}

.quick-action-wrapper1 {
    padding-top: 20px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 10px;
    background-color: #919aa14d;
    border-radius: 10px;
    margin-top: 20px;
    margin-right: 15px;
    margin-left: 15px;
    left: 10px;
    bottom: 10px;
    height: 300px;
    margin-bottom: 20px;
    overflow-x: auto;
    overflow-y: auto;
}

@media only screen and (max-width: 480px) {
    .quick-action-wrapper1 {
        margin-right: 10px !important;
        margin-left: 10px !important;
    }

    .quick-action-wrapper1 .rc-content {
        font-size: 14px;
        margin-left: 1rem !important;
    }
}

@media only screen and (max-width: 768px) {
    .quick-action-wrapper1 {
        margin-right: 20px !important;
        margin-left: 20px !important;
    }
}

.quickbutton {
    border: none;
    background-color: #a02a2a;
    /* width: 20%; */
    text-align: right;
    border-radius: 5px;
    color: white;
}


@media (min-width: 1740px) {
    .fixed-width-col32 {
        margin: 0 0 0 10px; /* top right bottom left */
    }

    .fixed-width-col32 {
        margin: 0 10px 0 0; /* top right bottom left */
    }
}

.p-personal-acc {
    font-weight: 500;
    margin-bottom: 0;
}

.fw-500 {
    font-weight: 500;
}

.col-left {
    width: 70%;
    padding: 0;
    margin: 0;
}
  
.col-right {
    width: 30%;
    padding: 0 0 0 10px;
    flex: none;
}

.refresh-button4 {
    width: 100%;
    height: 45px;
    border-radius: 2px;
    background: #fff;
    color: #000;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 0;
}

@media only screen and (max-width: 480px) {
    .refresh-button4 {
        font-size: 11px;
    }
}

.flex-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.left-label {
    text-align: left;
    font-weight: 500;
}

.right-value {
    text-align: right;
    font-weight: 600;
}