.tpk-content#page-poll {
    display: block;
    position: relative;
}

.poll-list {
    margin: 20px 0;
}

.item-list.polls .item {
  width: 100%;
}

.poll-item {
    display: flex;
    border: 1px solid #ededed;
    margin: 5px 0;
    border-radius: 4px;
    position: relative;
    padding: 10px;
}

.poll-item .completed {
    background: url(../img/icons/check-green.svg) no-repeat left;
    color: #8ac34a;
    padding-left: 20px;
    margin: 0 0 0 15px;    
}

.poll-item .ls {
    width: 110px;
    min-height: 64px;
}

.poll-item .ls .img {
    width: 96px;
    min-height: 96px;
}

.img.no-img {
    background: url(../img/icons/poll.svg) no-repeat center;
    margin-top: 0;
    opacity: 0.6;
}

.poll-item .rs {
    flex: 1;
    display: flex;
    padding: 6px 10px;
}

.poll-content {
    flex: 1;
}

.poll-header {
    font-size: 18px;
}

.polls .desc {
    margin: 5px 0;
}

.poll-item-reward {
    width: 150px;
}

.poll-item-reward .hint {
    font-size: 12px;
    text-align: center;
    text-transform: uppercase;
    color: #9E9E9E;
}

.poll-desc {
    color: #9e9e9e;
    margin-bottom: 10px;
    display: flex;
    flex: 1;
}

.item .detail .props span.unit {
    display: inline;
}

.adm-tools {
  margin-left: 20px;
}  

.poll-completed {
  margin: 20px 0 10px;
}

.poll-q {
  display: flex;
  margin: 15px 0 25px;
  border: 1px solid #ededed;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 0.75rem 1.5rem rgb(18 38 63 / 3%);
}

.q-left {
    width: 40px;
    color: #9e9e9e;
}

.q-right {
    flex: 1;
}

.q-num {
    text-align: center;
    background: #ededed85;
    width: 25px;
    border-radius: 2px;
}

.q-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.poll-a {
  padding: 8px 16px;
  border-radius: 5px;
  border: 2px dashed #3b55e60a;
}

.a-item.checkbox, .a-item.radio {
  display: flex;
}

.a-item label {
  flex: 1;
}

.a-votes {
  width: 100px;
  text-align: right;
}

.poll-alert {
  margin: 10px 0;
  color: #ff9800;
}

.poll-additional {
    display: flex;
    margin-bottom: 30px;
}

.custom-checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
  }
.custom-checkbox+label {
    display: inline-flex;
    align-items: center;
    user-select: none;
    margin-bottom: 0;
  }
  .custom-checkbox+label::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    flex-shrink: 0;
    flex-grow: 0;
    border: 1px solid #adb5bd;
    border-radius: 0.25em;
    margin-right: 0.5em;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
  }
.custom-checkbox:checked+label::before {
    border-color: #0b76ef;
    background-color: #0b76ef;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
  }
.custom-checkbox:not(:disabled):not(:checked)+label:hover::before {
    border-color: #b3d7ff;
  }
  .custom-checkbox:not(:disabled):active+label::before {
    background-color: #b3d7ff;
    border-color: #b3d7ff;
  }
  .custom-checkbox:focus+label::before {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  }
  .custom-checkbox:focus:not(:checked)+label::before {
    border-color: #80bdff;
  }
  .custom-checkbox:disabled+label::before {
    background-color: #e9ecef;
  }

.custom-radio {
    position: absolute;
    z-index: -1;
    opacity: 0;
  }
  .custom-radio+label {
    display: inline-flex;
    align-items: center;
    user-select: none;
  }
  .custom-radio+label::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    flex-shrink: 0;
    flex-grow: 0;
    border: 1px solid #adb5bd;
    border-radius: 50%;
    margin-right: 0.5em;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
  }
  .custom-radio:not(:disabled):not(:checked)+label:hover::before {
    border-color: #b3d7ff;
  }
  .custom-radio:not(:disabled):active+label::before {
    background-color: #b3d7ff;
    border-color: #b3d7ff;
  }
  .custom-radio:focus+label::before {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  }
  .custom-radio:focus:not(:checked)+label::before {
    border-color: #80bdff;
  }
  .custom-radio:checked+label::before {
    border-color: #0b76ef;
    background-color: #0b76ef;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
  }

  .custom-radio:disabled+label::before {
    background-color: #e9ecef;
  }

  input[type="checkbox"] {
    display: none;
}

input.custom-text {
    border: 1px solid #adb5bd;
    background: #fff;
    border-radius: 6px;
    padding: 5px 15px 4px 15px;
    margin-bottom: 6px;
}

textarea.custom-textarea {
    border: 1px solid #adb5bd;
    background: #fff;
    border-radius: 6px;
    padding: 5px 15px 4px 15px;
    margin-bottom: 5px;
    height: 100px;
}

input.custom-text:focus, textarea.custom-textarea:focus {
    color:#344050;
    background-color:#fff;
    border-color:#adb5bd;
    outline:0;
    -webkit-box-shadow:0 0 0 .2rem rgba(44,123,229,.25);
    box-shadow:0 0 0 .2rem rgba(44,123,229,.25);
}

.input label, .textarea label {
    font-weight: normal;
    user-select: none;
}

.poll-submit {
    text-align: center;
    margin: 40px 0 20px;
}

.submit-btn {
    font-size: 18px;
    padding: 10px 20px;
    background: #ffc107;
    color: #fff;
    border-radius: 4px;
    width: 200px;
    margin: 0 auto;
    cursor: pointer;
    user-select: none;
}

.submit-btn:hover {
    background: #e3aa00;
}

.req {
  display: inline;
  margin-left: 5px;
  color: #ff0000;  
}

.q-additional {
    background: #ededed47;
    padding: 10px 15px;
    margin-bottom: 10px;
    border-radius: 6px;
}

.q-additional {
    background: #ededed47;
    padding: 10px 15px;
    margin-bottom: 10px;
    border-radius: 6px;
}

@media screen and (max-width: 640px) {
.row-dino .num {margin-right: 5px;margin-left: 0;font-size: 14px;}
.row-dino .img {margin-right: 15px;width: 55px;}
.row-dino .name {font-size: 16px;}
.row-dino .points {font-size: 16px;}
.chart-activity {margin-bottom: 25px;}
.row-dino .rate-points {display: none;}
.prefix {display: none;}
}
