#price-block {
    padding: 80px 0px;
    background: var(--black);
}
#price-block .block-title {
    color: #fff;
}
#price-block .prices{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
#price-block .prices-item {
    border-radius: 20px;
    background: white;
    transition: 0.3s;
    cursor: pointer;
}
#price-block .prices-item.hidden {
    display: none;
}
#price-block .prices-item.show {
    display: block;
}
#price-block .prog-name{
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    padding: 25px 40px 25px 90px;
    position: relative;
    border-radius: 20px;
    background: white;
    border: 1px solid var(--bg);
    overflow: hidden;
    transition: 0.3s;
}
#price-block .prices-item:hover .prog-name,
#price-block .prices-item.is-opened .prog-name {
    border-color: var(--mainnew);
}
#price-block .prices-item svg circle:nth-child(2),
#price-block .prices-item svg circle:nth-child(2) {
    transition: 0.3s;
}
#price-block .prices-item:hover svg circle:nth-child(2),
#price-block .prices-item.is-opened svg circle:nth-child(2){
    fill: var(--mainnew);
}
#price-block .prog-name p {
    font-family: Lato;;
    font-size: 24px;
    font-weight: 700;
    line-height: 130%;
}
#price-block .icon{
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--greenlight);
}
#price-block .icon svg {
    transition: 0.6s;
}
#price-block .prices-item.is-opened .icon svg  {
    transform: rotateX(180deg);
}
#price-block .circle{
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    left: 0;
}
#price-block .circle svg{
    height: 100%;
    width: 100%;
}
#price-block .prog-section{
    display: none;
    flex-direction: column;
}
#price-block .prog-item{
    display: flex;
    align-items: center;
    padding: 0px 30px 0px 40px;
    border-bottom: 1px solid var(--bgH);
    justify-content: space-between;
    min-height: 70px;
}
#price-block .prog-item:last-child {
    border-bottom: unset;
}
#price-block .left-side{
    display: flex;
    gap: 5px;
    width: 40%;
    align-items: center;
}
#price-block .week-time{
    width: 40%;
    display: flex;
    flex-direction: column;
}
#price-block .week-item{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    border-left: 1px solid var(--bgH);
}
#price-block .week-item:nth-child(1) {
    background: var(--bg);
}
#price-block .section-name{
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}
#price-block .info {
    position: relative;
    height: 20px;
}
#price-block .info .warn-icon {
    height: 100%;
}
#price-block .left-side p {
    position: absolute;
    padding: 20px;
    width: max-content;
    max-width: 300px;
    border-radius: 20px;
    background: white;
    border: 1px solid var(--mainnew);
    top: 30px;
    left: unset;
    right: 0px;
    transform: translateX(40%);
    z-index: 12;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
#price-block .info:hover p {
    opacity: 1;
    visibility: visible;
}
#price-block .week-name,
#price-block .duration,
#price-block .price{
    padding: 7px 30px;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    border-right: 1px solid var(--bgH);
    max-width: 140px;
}
/*#price-block .btn {*/
/*    background: white;*/
/*    color: var(--mainnew);*/
/*}*/
/*#price-block .btn:hover{*/
/*    background: var(--hovernew);*/
/*    color: white;*/
/*}*/
#price-block #more {
    margin-left: auto;
    margin-right: auto;
    background: var(--mainnew);
    color: white;
}
#price-block #more:hover {
    background: var(--hovernew);
}
@media (max-width: 1200px) {
    #price-block .prog-item {
        padding: 0px 15px 0px 15px;
    }
    #price-block .left-side {
        width: 30%;
    }
    #price-block .week-time {
        width: 50%;
    }
}
@media (max-width: 996px) {
    #price-block .week-name, #price-block .duration, #price-block .price {
        padding: 7px;
        font-size: 13px;
    }
    #price-block .section-name {
        font-size: 13px;
    }
    #price-block .btn {
        padding: 10px;
        font-size: 13px;
        margin-left: 10px;
    }
    #price-block .prog-name p {
        font-size: 20px;
        width: 80%;
    }
    #price-block .prog-name {
        padding: 15px 15px 15px 65px;
    }
}
@media (max-width: 600px) {
    #price-block {
        padding: 40px 0px;
    }
    #price-block .icon {
        width: 40px;
        height: 40px;
    }
    #price-block .prog-name p {
        font-size: 18px;
    }
    #price-block .week-item {
        display: flex;
        flex-direction: column;
    }
    #price-block .week-name, #price-block .duration, #price-block .price {
        padding: 5px 7px;
    }
    #price-block .week-time {
        width: 30%;
    }
    #price-block .left-side {
        width: 50%;
    }
    #price-block .prog-name p {
        font-size: 16px;
    }
    #price-block .prog-name {
        padding: 10px 10px 10px 45px;
    }
    #price-block .prog-item {
        flex-direction: column;
        gap: 10px;
        padding: 10px;
    }
    #price-block .left-side {
        width: 100%;
        align-items: flex-start;
    }
    #price-block .week-time {
        width: 100%;
        flex-direction: column;
        border-top: 1px solid var(--bgH);
        border-bottom: 1px solid var(--bgH);
    }
    #price-block .circle {
        width: 40px;
    }
    #price-block .week-item {
        flex-direction: row;
    }
    #price-block .week-name, #price-block .duration, #price-block .price {
        width: calc((100% - 0px) / 3);
    }
    #price-block .left-side p {
        transform: translateX(93%);
        max-width: 250px;
        padding: 10px;
    }
    #price-block .btn {
        padding: 10px 20px;
    }
    #price-block .section-name {
        order: 2;
    }
    #price-block .info {
        order: 1;
    }
}
