body {
    background-color: #fbfbfb;
    font-family: roboto;
}
h5 {
    color: #137cc9;
    font-size: 22px;
}
.qc {
    margin-bottom: 30px;
}

.q {
    font-size: 18px;
    color: black;
    font-weight: 600;
}
.a {
    padding-top: 10px;
    padding-left: 20px;
}

textarea {
    width: 100%;
}

input[type="text"] {
    width: 100%;
}
input[type="url"] {
    width: 100%;
}

label {
    cursor: pointer;
    margin-left: 5px;
}

td {
    padding: 0 !important;
}

.btn.btn-xl.btn-sucsses:hover {
    background-color: #30c406;
}
.btn.btn-xl.btn-sucsses {
    font-size: 24px;
    padding: 15px 40px;
    border-radius: 10px;
    background-color: #1f8c00;
    color: white;
}


.btn.btn-xl.btn-warning:hover {
    background-color: #db8500;
}
.btn.btn-xl.btn-warning {
    font-size: 24px;
    padding: 15px 40px;
    border-radius: 10px;
    background-color: #c18830;
    color: white;
}

:disabled {
    opacity: 1;
    color: black;
    background-color: #fff;
    border: none;
    border-bottom: solid 1px;
    font-weight: bold;
}

input[type="checkbox"]:disabled {
    appearance: none;
    position: relative;
}

input[type="checkbox"]:disabled::before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    border: 1px solid gray;
    background-color: #f3f3f3;
    left: -15px;
    top: -16px;
}

input[type="checkbox"]:disabled:checked::before {
    content: "✓"; /* это будет отображаться, когда чекбокс отмечен */
    color: #079909;
    line-height: 18px;
    text-align: center;
    font-size: 20px;
    background-color: white;
}

input[type="radio"]:disabled {
    appearance: none;
    position: relative;
}

input[type="radio"]:disabled::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid gray;
    background-color: white;
    left: -15px;
    top: -12px;
}

input[type="radio"]:disabled:checked::before {
    content: ""; /* это будет отображаться, когда кнопка выбрана */
    background-color: #07c40a;
    border-color: gray;
}

label {
    color: #0040a2;
    font-size: 18px;
}

#t3 td {
    width: 50%;
}

a {
    text-decoration: underline;
}