/**/
.toggle-widget__title{
    font-size: 18px;
    font-weight: 600;
}
/* 
.arrow__ico {
    top: 0;
    width: 54%;
    height: 54px;
    right: 0;
}

 .checkbox:checked+.arrow__ico {
    width: 54%;
    height: 51%;
} 

.checkbox:checked+.arrow__ico {
    transform: rotate(0);
}

.arrow__ico:before {
    right: -5rem;
}

.checkbox:checked+.arrow__ico:before {
    transform: rotate(135deg);
}  */

.toggle-widget__header{
    position: relative;
    padding: 15px 10px;
    padding-right: 55px;
    border: 2px solid rgb(222, 222, 222);
    border-radius: 10px;
    cursor: pointer;
    background-color: rgb(242, 246, 247);
    position: relative;
    z-index: 5;
}
.toggle-widget__arrow{
    width: 20px;
    height: 20px;
    border: 1px solid #de002b;
    border-radius: 50%;
    position: absolute;
    right: 20px;
    transition: all .2s ease;
}
.toggle-widget__arrow:before{
    content: '';
    width: 4px;
    height: 4px;
    border-right: 2px solid #de002b;
    border-bottom: 2px solid #de002b;
    display: inline-block;
    transform: rotate(45deg);
    position: absolute;
    top:-2px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    transition: all .2s ease;
}
.toggle-widget__content{
    display: none;
    padding: 20px 15px;
    transform: translateY(-10px);
    border: 1px solid #ccc;
}


.toggle-widget__header.active .toggle-widget__arrow{
    transform: scale(-1);
    background: #de002b;
}
.toggle-widget__header.active .toggle-widget__arrow:before{
    border-color: #fff;
}



@media (max-width: 767px) {
    .tbl th:first-child, .tbl td:first-child {
        width: 100% !important;
    }
    .tbl th:first-child, .tbl td:first-child {
        width: 100% !important;
    }
    .toggle-widget__content tr {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .toggle-widget__content td {
        font-size: 14px;
    }
    table td {
        padding: 4px 9px;
    }

    .toggle-widget__content h3 {
        font-size: 19px;
    }
    .toggle-widget__content {
        padding: 20px 7px;
    }
    .toggle-widget__content th {
        font-size: 14px;
    }
}

@media (max-width: 400px) {
    .tbl th:first-child, .tbl td:first-child {
        width: 100% !important;
    }
    .toggle-widget__title {
        font-size: 16px;
    }
    .toggle-widget__content tr {
        display: flex;
        flex-direction: column;
    }
}
.counter{
    max-width: 880px;
}