:root {
    --accent-color: #FFD12F;
    --border: #808080;
    --table-border: #EFEFEF14;
}
.accordion-container{
    border-radius: 20px;
    border: 1px solid var(--border);
    overflow: hidden;
    font-family: IR;
    color: white;
}

.accordion-component{
    padding: 20px 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    overflow: hidden;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    border-bottom: 1px solid var(--border);
}
.accordion-component-adaptive{
    display: none;
    border-bottom: 1px solid var(--border)
}
.accordion-component-header{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.component-header-title{
    font-size: 20px;
    font-weight: 500;
    color: white;
    line-height: 30px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    margin: 0;
}
.component-header-arrow{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
}
.arrow{
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
}
.table-wrapper{
    overflow: hidden;
    min-height: 0px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    max-height: 0px;
}
.accordion-container > .accordion-component .table-wrapper{
    max-height: 4000px;
}
.accordion-container > .accordion-component ~ .accordion-component .table-wrapper{
    max-height: 0;
}
.accordion-container > .accordion-component-adaptive .table-wrapper{
    max-height: 4000px;
}
.accordion-container > .accordion-component-adaptive ~ .accordion-component-adaptive .table-wrapper{
    max-height: 0px;
}
.table-web{
    margin: 20px 0 0;
    border: 1px solid var(--table-border);
    border-radius: 30px;
    overflow: hidden;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.table-web-header{
    background-color: var(--accent-color);
    color: black;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.table-web-header div{
    text-align: center;
    font-size: 16px;
    padding: 20px 16px;
}
.table-web-content{
    background-color: #1C1C1C;
    font-size: 18px;
    border-top: 1px solid var(--table-border);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.table-web-item-header{
    width: 100%;
}
.table-web-item-1{
    width: 22%;
}
.table-web-item-2{
    width: 22%;
}
.table-web-content-item{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 16px 16px;
    width: 100%;
}
.table-web-content-bordered{
    border-left: 1px solid var(--table-border);
    border-right: 1px solid var(--table-border);
}
.table-web-content-element{
    width: 22%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.table-web-content-decree{
    border-right: 1px solid var(--table-border);
}
.visible-elem{
    visibility: visible;
    opacity: 1;
    -webkit-transition: opacity 2s linear;
    -o-transition: opacity 2s linear;
    transition: opacity 2s linear;
}

.hidden-elem{
    visibility: hidden;
    opacity: 0;
    -webkit-transition: visibility 0s 2s, opacity 2s linear;
    -o-transition: visibility 0s 2s, opacity 2s linear;
    transition: visibility 0s 2s, opacity 2s linear;
}
.table-web-item-header-adaptive{
    font-weight: 500;
}
@media screen and (max-width:768px) {
    .accordion-component{
        display: none;
    }
    .accordion-component-adaptive{
        display: block;
        padding: 16px;
    }
    .table-web-header{
        display: block;
    }
    .table-web{
        margin: 16px 0;
    }
    .table-web-content{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        font-size: 14px;
        padding: 16px;
    }
    .table-web-content-item{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: start;
        gap: 0;
        padding: 0px;
    }
    .component-header-title{
        font-size: 16px;
    }
    .content-item-adaptive{
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        gap: 12px;
        padding-top: 12px;
    }
    .content-item-adaptive-element{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        width: 50%;
        border: none;
        padding: 0;
        gap: 8px;
    }
    .content-item-adaptive-element-title{
        color: #808080;
    }
}
@media screen and (max-width:480px) {
    .content-item-adaptive{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .table-web-header div{
        font-size: 14px;
    }
    .content-item-adaptive-element{
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        width: 100%;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
}