@font-face {
    font-family: 'ProximaNovaMedium';
    src: url('../../../../Fonts/ProximaNovaMedium.woff2.ttf') format('truetype');
    /* You may need to adjust the path based on your project structure */
  }
.questions-bloack {
    /* font-family: Arial, sans-serif; */
    font-family:'ProximaNovaMedium';
    margin-top: 10px;
}

.question{
    margin-bottom: 20px;
}

.test-form {
    margin: 0 auto;
}

.options {
    margin-top: 15px;
}

.question-p {
    font-size: 16px;
    margin-bottom: 0px!important;
    font-weight: bold;
}

.instructions {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
}

.custom-input-type {
    display: block;
    margin-bottom: 15px;
    font-size: 14px;
    border: 1px solid #d2cfcf;
    padding: 15px;
    border-radius: 5px;
    position: relative;
    padding-left: 55px;
    cursor: pointer;
    color: #666;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.custom-radio-btn {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.custom-radio-box {
    position: absolute;
    top: 15px;
    left: 20px;
    height: 20px;
    width: 20px;
    background-color: white;
    border: 2px solid #00CFFF;
    border-radius: 4px;
    /* Rectangular shape */
}

.custom-radio-box::after {
    content: "";
    position: absolute;
    display: none;
    top: 3.5px;
    left: 3.5px;
    width: 10px;
    height: 10px;
    background: #4096f3;
    /* Color for checked state */
    border-radius: 2px;
    /* Rectangular shape */
}

.custom-radio-btn:checked+.custom-radio-box::after {
    display: block;
}


.custom-checkbox-btn{
    position: absolute;
    opacity: 0;
    cursor: pointer;
    /* margin-right: 3rem; */
}

.custom-checkbox {
    position: absolute;
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: white;
    border: 2px solid #00CFFF;
    border-radius: 4px;
    /* margin-right: 3rem; */
    margin-left: -2rem;
}

.custom-checkbox::after {
    content: "";
    position: absolute;
    display: none;
    top: 3.5px;
    left: 3.5px;
    width: 10px;
    height: 10px;
    background: #4096f3;
    border-radius: 2px;
}

.custom-checkbox-btn:checked + .custom-checkbox::after {
    display: block;
}

.options-boolean {
    display: flex;
    justify-content: space-between;
}

.section-btn{
    border: none;
    color: white;
    font-family: Arial, sans-serif;
    width: 7rem;
    border-radius: 4px;
    margin-right: 1.3rem;
}

.section-pager.p{
    padding:0.8rem;
    margin-bottom: -1rem;
    font-family: Arial, sans-serif;
    
}

.red-asterisk{
    color: red;
}

.cursor-not-allowed{
    cursor: not-allowed ;
}