.sinatik-price bdi {
    font-size: 70%;
    color: #cccccc;
    text-decoration: line-through;
    margin-left: 5px;
}

.err {
    border: 1px solid #ff0000 !important;
}

.questions .t1 header {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
    padding: 10px;
    font-size: 16px;
    background: #CCC;
}

.questions .t1 .max {
    width: 70%;
}

.questions .t1 div.b {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 15px;
    margin-bottom: 20px;
    padding: 0 10px;
}

.questions .t1 div.b div {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
}

.t5 .question {
    box-sizing: border-box;
    width: 100%;
    color: #ccc;
    border: 1px solid #ccc;
    margin: 10px 0;
    border-radius: 5px;
    overflow: hidden;
}

.t5 .question.o {
    color: #000;
    border-color: #000;
}

.t5 .question.o .items {
    display: flex;
}


.t5 .question .items {
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    background: rebeccapurple;
    color: #fff;
    display: none;
}

.t5 .question .items>span {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
}

.t5 .question>span {
    padding: 10px;
    display: block;
}

.t7 .question {
    box-sizing: border-box;
    width: 100%;
    padding: 3px;
    border: 2px solid #000;
    margin-bottom: 10px;
}

.t7 .r {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 13px;
}

.t7 .r.f {
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #ccc;
}

.t7 .r.t {
    justify-content: stretch;
}

.t7 .r.t>span {
    flex-grow: 1;
    text-align: center;
    padding: 10px 0;
    cursor: pointer;
}

.t7 .r.t>span {
    background-color: #7b16ff4f;
}

.t7 .r.t>span:nth-child(1),
.t7 .r.t>span:nth-child(5) {
    background-color: #7b16ff;
}

.t7 .r.t>span:nth-child(2),
.t7 .r.t>span:nth-child(4) {
    background-color: #7b16ff70;
}

.t7 .r.th {
    gap: 45px;
}

.t7 .r.th>span:last-child {
    text-align: left;
}

.t7 .r.fo input {
    display: none;
}

.t7 .r.fo label {
    display: inline-block;
    padding: 10px;
    border-radius: 5px;
    border: 2px solid #000;
    cursor: pointer;
    color: #000;
}

.t7 .r.fo label:has(>input:checked) {
    color: #fff;
    background-color: #ff0000;
    border-color: #ff0000;
    ;
}

.t7 .r.fo label.dis {
    user-select: none;
    pointer-events: none;
    cursor: not-allowed;
    background-color: #ccc;
}

.add-via-id-popup {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #00000087;
    transition: ease all .3s;
    visibility: hidden;
    opacity: 0;
}

.add-via-id-popup .content {
    background: #fff;
    box-sizing: border-box;
    padding: 10px;
    border-radius: 10px;
    min-width: 400px;
    transition: ease all .3s;
    transform: translateY(30px);
}

.add-via-id-popup.o{
    visibility: visible;
    opacity: 1;
}

.add-via-id-popup.o .content{
    transform:  translateY(0);
}

.add-via-id-popup .content .title {
    font-weight: bold;
    padding: 10px 0;
    margin-bottom: 10px;
    border-bottom: 1px solid #ccc;
}

.add-via-id-popup .content .fields {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.add-via-id-popup .content .fields input {
    border: none;
}

.add-via-id-popup .content .fields button {
    padding: 10px;
    border: none;
}