﻿.toggle-card-container {
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.toggle-card-rounded-div-for-images {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #FFFBDE;
    border-radius: 50px;
}


.toggle-card-label {
    font-family: Inter;
    font-weight: 500;
    font-size: 14px;
    color: #2C2C2C;
    line-height: 20px;
}

.toggle-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: auto;
    border-radius: 14px;
    border: 1px solid #E5E5E5;
    box-shadow: 0px 8px 16px 0px #0000000A;
    background: #FFFFFF;
}

.toggle-card-gray {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: auto;
    border-radius: 12px;
    border: 1px solid #E5E5E5;
    background: #FAFAFA;
}

.toggle-card:hover {
    background: #FFFBDE;
}

.toggle-card.open {
    background: #FFFBDE;
    border: 2px solid #1A7CCA;
    box-shadow: 0px 8px 16px 0px #0000000A;
}

.toggle-card-gray.open > .toggle-card-main-layout {
    height: 64px;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    border-bottom: 1px solid #E5E5E5
}

.toggle-card-main-layout {
    height: 64px;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.toggle-card-left {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 20px;
}

.toggle-card-point-group {
    display: flex;
    align-items: center;
    gap: 6px;
}

.toggle-card-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.toggle-card-toggle-arrow {
    width: 16px;
    height: 16px;
    float: right;
    margin-right: 24px;
}

.toggle-card-child-layout {
    max-height: 0px;
    display: none;
    transition: max-height 0.1s ease;
}

.toggle-card-child-layout-open {
    display: block;
    width: 100%;
    border-radius: 0 0 10px 10px;
    background-color: #FFFFFF;
    box-shadow: 0px 4px 6px 0px #00000017;
    padding: 24px;
}

.toggle-card-cutoff-child-layout-open {
    display: flex;
    width: 100%;
    border-radius: 0 0 10px 10px;
    background-color: #FFFFFF;
    box-shadow: 0px 4px 6px 0px #00000017;
    padding: 24px;
    flex-direction: column;
    gap: 20px;
}
