/*------------------- окно результата -------------------------------*/
.pub_results {
    width: 500px;
    padding: 0 10px;
}

.mobile .pub_results {
    width: 100%;
}

.pub_results_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #e5e5e5;
}

.pub_results_top {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pub_results_logo {
    flex-shrink: 0;
}

.pub_results_avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: contain;
}

.pub_results_name {
    font-size: 15px;
    color: #1e90ff;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pub_results_company {
    font-size: 12px;
    color: #696969;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pub_results_button {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pub_results_close {
    width: 20px;
    height: 20px;
    background-image: url('/assets/img/delete-light.png');
    background-repeat: no-repeat;
    background-size: contain;
}

.pub_results_main {
    color: #000000;
}

.pub_results_title {
    margin-top: 10px;
    font-size: 17px;
    font-weight: bold;
}

.pub_results_content {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.pub_results_time {
    flex-basis: 160px;
    flex-grow: 0;
    display: flex;
    gap: 10px;
    align-items: center;
}

.pub_results_clock {
    width: 50px;
    height: 50px;
}

.pub_results_value_title {
    font-size: 15px;
}

.pub_results_value {
    font-size: 20px;
    font-weight: bold;
}

.pub_results_procent {
    position: relative;
    flex-basis: 130px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pub_results_center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.pub_results_prize {
    width: 30px;
    height: 30px;
}

.pub_results_result {
    font-size: 26px;
    font-weight: bold;
}

.pub_results_value_wrapper {
    display: flex;
    gap: 10px;
}

.pub_results_icon {
    width: 20px;
    height: 20px;
}

.pub_results_ring_bg {
    fill: none;
    stroke: #e0e0e0;
    stroke-width: 10;
    }

.pub_results_ring_fill {
    fill: none;
    stroke: #4caf50;
    stroke-width: 10;
    stroke-linecap: round;
    stroke-dasharray: 314.0;
}

.pub_results_footer {
    margin: 20px 0;
}

button.pub_results_start {
    width: 100%;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    font-weight: bold;
    color: #ffffff;
    background-color: #1e90ff;
    border-radius: 20px;
}

.pub_results_spinner {
    width: 100%;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1e90ff;
    border-radius: 20px;
}

.pub_results_gif {
    width: 20px;
    height: 20px;
}

/*------------ список пользователей с результатами -----------------------------------*/
.results_container {
    height: 100%;
}

.results_header {
	height: 60px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 20px;
	border-bottom: 1px solid #e5e5e5;
}

.results_close {
	width: 25px;
    height: 25px;
    flex-shrink: 0;
    background-image: url('/assets/img/delete-light.png');
    background-repeat: no-repeat;
    background-size: contain;
}

.results_table_wrapper {
    width: 100%;
    height: calc(100% - 60px);
    overflow: auto;
    scrollbar-width: thin;
}

.results_main_table {
    width: 875px;
	font-size: 12px;
}

.results_avatar {
    width: 40px;
    border-radius: 50%;
}

.results_show_button {
    width: 80px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    font-weight: bold;
    color: #ffffff;
    background-color: #1e90ff;
    border-radius: 20px;
}

.results_tr {
    cursor: pointer;
}

.results_tr:hover {
    color: #1e90ff;
}

.results_tr td {
    padding-bottom: 10px;
}

.results_company {
    min-width: 150px;
}

/*---------- вспомогательные классы  ------------------------------*/
.pub_hidden {
    display: none;
}
