/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.nectar-ultimus-fund-box {
    background: #00205B;
    padding: 4rem 3rem;
    color: #fff;
    text-align: center;
    width: 60%;
    margin: auto
}

.nectar-fund-select-wrapper {
    position: relative;
    display: inline-block;
    width: auto;
    background: #1e4489;
    padding: 20px;
}
  
.nectar-fund-select-wrapper::before {
    content: "▼"; /* Unicode down arrow or use custom font */
    pointer-events: none;
    position: absolute;
}

#nectar-fund-dropdown {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    width: auto;
    background: #1e4489;
    padding: 0px 0px 0px 25px;
    border: none;
    outline: none;
    appearance: none;
}
#nectar-fund-dropdown:focus {
    outline: none;
    box-shadow: none;
}

.fund-data {
    display: flex;
    justify-content: space-between;
    margin-top: 3em;
}
.fund-data .title {
    font-size: 16px;
}
.fund-data .value {
    font-size: 32px;
    padding: 10px;
    font-weight: 700;
}
.record-date {
    display: flex;
    bottom: 1em;
    position: absolute;
    font-size: 12px;
}
.record-date .title {
    font-weight: 700;
    padding-right: 5px;
}

@media only screen and (max-width:767px){
    .nectar-ultimus-fund-box {
        width: 100%;
        padding: 2rem 1rem;
    }
    #nectar-fund-dropdown {
        width: 100%;
        font-size: 16px;
        padding: 10px;
    }
    .fund-data{
        flex-direction: column;
        align-items: center;
    }
    .fund-data .data-item{
        width: 100%;
        margin-bottom: 1rem;
    }
    .fund-data .value {
        font-size: 24px;
    }
}
@media only screen and (min-width:767px) and (max-width:1023px){
    .nectar-ultimus-fund-box {
        width: 100%;
    }
    #nectar-fund-dropdown {
        font-size: 16px;
        padding: 10px;
    }
    .fund-data .value {
        font-size: 24px;
    }
}
@media only screen and (min-width:1024px) and (max-width:1199px){
    .nectar-ultimus-fund-box {
        width: 80%;
    }
    #nectar-fund-dropdown {
        font-size: 18px;
        padding: 10px;
    }
    .fund-data .value {
        font-size: 24px;
    }
}
@media only screen and (min-width:1200px) and (max-width:1399px){
    .nectar-ultimus-fund-box {
        width: 80%;
    }
}