.topics-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
    .topic-wrap {
        width: 200px;
        height: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        margin-bottom: 15px;
        transition: box-shadow .5s;
        background-color: rgba(245,245,245);
    }
    .topic-wrap:hover {
        box-shadow: 0 0 15px rgba(10,10,10,.1);
        cursor: pointer;
    }
        .topic-icon {
            width: 60%;
            height: 60%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;`
        }
            .icon-topic {
                display: block;
                width: 80%;
                height: 80%;
                //background-size: 80%;
                background-size: contain;
            }
            .icon-topic.fridge {
               background: url('imgs/themes/fridge.svg') no-repeat center; 
            }
            .icon-topic.washer {
               background: url('imgs/themes/washer.svg') no-repeat center; 
            }
            .icon-topic.dishwasher {
               background: url('imgs/themes/dishwasher.svg') no-repeat center; 
            }
            .icon-topic.boiler {
               background: url('imgs/themes/boiler.svg') no-repeat center; 
            }
            .icon-topic.gas {
               background: url('imgs/themes/gas.svg') no-repeat center;
            }
            .icon-topic.split {
               background: url('imgs/themes/split.png') no-repeat center;
               background-size: contain;
            }
            .icon-topic.pc {
               background: url('imgs/themes/pc.png') no-repeat center;
               background-size: 60%;
            }
            .icon-topic.stove {
               background: url('imgs/themes/stove.svg') no-repeat center;
               background-size: 60%;
            }
            .icon-topic.oven {
               background: url('imgs/themes/oven.svg') no-repeat center;
               background-size: 60%;
            }
            .icon-topic.sewing {
               background: url('imgs/themes/sewing.svg') no-repeat center;
               background-size: 60%;
            }
        
        .topic-name {
            font-weight: bold;
            font-size: 90%;
            color: rgba(150,150,150);
            transition: color .5s;
            text-align: center;
        }
        .topic-wrap:hover .topic-name {
            color: rgba(50,50,50);
        }
        
/* Группы */

.groups {
    position: fixed;
    bottom: -100%;
    height: 100%;
    width: 100%;
    background-color: rgba(255,255,255);
    z-index: 10;
    transition: bottom .5s;
    
    display: flex;
    align-items: center;
    flex-direction: column;
}
.groups.open {
    bottom: 0;
}
    .groups-title {
        height: 40px;
        background-color: rgba(255,209,98);
        text-align: center;
        font-weight: bold;
        line-height: 40px;
        margin-top: 15px;
        border-radius: 15px;
        padding: 0 15px;
        opacity: .3;
        transition: box-shadow .5s, opacity .5s;
    }
    .groups-title:hover {
        cursor: pointer;
        box-shadow: 0 0 10px rgba(10,10,10,.1);
        opacity: 1;
    }
    .groups-list {
        display: flex;
        align-items: center;
        flex-direction: column;
        overflow: scroll;
        width: 320px;
        box-sizing: border-box;
        padding: 15px;
    }
        .group-helper {
            width: 100%;
            text-align: center;
            box-sizing: border-box;
            padding: 5px 10px;
            font-size: 90%;
            margin: 15px 0;
        }
        .group-rule {
            background-color: rgba(245,245,245);
            box-shadow: 0 0 15px rgba(10,10,10,.3);
            width: 100%;
            box-sizing: border-box;
            padding: 20px;
            font-weight: bold;
            text-align: center;
            font-size: 90%;
            margin-bottom: 30px;
            border-radius: 15px;
        }
        .group-region {
            margin-bottom: 15px;
            font-weight: bold;
        }
a {
    text-decoration: none;
    color: inherit;
}
        a .sup {
            font-size: 60%;
            position: relative;
            top: -5px;
            left: 3px;
        }
        
        .link-bids, .link-chat, .link-partner {
            display: inline-block;
            padding: 5px 15px;
            margin-bottom: 15px;
            color: rgba(255,255,255);
            border-radius: 30px;
        }
        .link-bids {
            background-color: rgba(233,76,76);
        }
        .link-chat {
            background-color: rgb(71, 177, 103);
        }
        .link-partner {
            background-color: rgba(96,193,240);
        }
        
    .group-error {
        display: none;
    }
    .group-error.show {
        display: block;
    }
    .hide {
        display: none !important;
    }
    
/*Платная группа*/
.group-pay {
    position: absolute;
    z-index: 20;
    width: 320px;
    height: 100%;
    display: none;
    align-items: center;
    //justify-content: center;
    flex-direction: column;
    background-color: rgba(255,255,255);
    box-sizing: border-box;
    padding: 15px;
}
.group-pay.show {
    display: flex;
}
    .group-pay p {
        
    }
    .payment-details {
        background-color: rgba(255,209,98);
        font-weight: bold;
        padding: 5px 15px;
        //border-radius: 10px;
        transition: box-shadow .5s;
    }
    .payment-details:hover {
        cursor: pointer;
        box-shadow: 0 0 15px rgba(10,10,10,.3);
    }