.drop-down-card-cont {
    padding: 1rem;
    border-radius: 15px;
    width: 100%;
    -webkit-box-shadow: 0px 0px 24px 8px rgba(0,0,0,0.14);
    -moz-box-shadow: 0px 0px 24px 8px rgba(0,0,0,0.14);
    box-shadow: 0px 0px 24px 8px rgba(0,0,0,0.14);
    margin-bottom: 10px;
}

.drop-down-header {
    display: flex;
    align-items: center;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    justify-content: space-between;
}

.arrow {
    display: inline-block;
    margin-right: 10px;
    transition: transform 0.3s ease;
    font-size: 16px;
}

.arrow.open {
    transform: rotate(180deg);
}

.drop-down-content {
    padding: 0 15px;
}

.drop-down-content .drop-down-card-cont {
    margin: 10px 0;
    padding-left: 20px;
    box-shadow: none;
}

.sub-item {
    padding: 10px;
    font-size: 14px;
    border-top: 1px solid #e0e0e0;
    margin: 5px 0;
}

.sub-item:first-child {
    border-top: none;
}

.frequency-buttons {
    padding: 3px;
    text-align: right;
    border-radius: 30px;
    background: linear-gradient(to bottom, #034093, #006DB2);
}

.frequency-buttons button {
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
    border: none;
    background: transparent;
}

.frequency-buttons button.active {
    background-color: white;
    color: #006DB2;
}

.right-content-accordion {
    display: flex;
    align-items: center;
    gap: 15px;
}

.container-height
{
    min-height: 75px;
}
