.wilsons-tool h2 {
    margin-bottom: 30px;
}

.question-container {
    background-color: #ACD1B6;
    padding-top: 25px;
    padding-bottom: 25px;
}

.question-container h1 {
    color: #0F3B61;
    font-weight: 500;
    font-size: 23px;
    text-align: center;
}

.question-container h2 {
    color: #0F3B61;
    font-weight: 500;
    font-size: 20px;
    text-align: center;
    margin-bottom: 10px;
}

.question-container h3 {
    color: #0F3B61;
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    margin-bottom: 15px;
}
.question-container #content {
    color: #0F3B61;
}
.question-container #content a {
    color: #007bff;
    text-decoration: underline;
}

#corner_note p {
    font-weight: 500;
    color: #855254;
    font-size: 16px;
    text-align: right;
    padding-right: 10px;
}

.question-container .first_screen_btns {
    display: flex;
    flex-direction: row;
    justify-content: center;    
    margin: 30px 0 30px 0;    
}

.question-container .first_screen_btns button:nth-child(1) {
    width: 330px;
    margin-right: 30px;
    text-transform: uppercase;
    height: 75px;
    color: white;
    font-weight: 500;
    border-radius: 5px;
    background-color: #855254;
    border: none;
}
.question-container .first_screen_btns button:nth-child(2) {
    width: 330px;
    text-transform: uppercase;
    height: 75px;
    color: white;
    font-weight: 500;
    border-radius: 5px;
    background-color: #855254;
    border: none;
}
.question-container .first_screen_btns button:hover {
    background-color: #90686a !important;
}

.button-column {
    text-align: right;
    min-width: 110px;
}
.button-column button {
    margin-right: 10px;
    background-color: transparent;
    border: none;
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 15px;
}
.button-column button:nth-child(1) {
    margin-right: 10px;
}
.button-column button:nth-child(2) {
    padding-top: 10px;
}
.button-column i {
    font-size: 20px;
}
.button-column button:nth-child(1) i {
    font-size: 18px;
}
.button-column button:hover {
    color: #855254;
}

/** Animation */
.fade-in {
	opacity: 1;
	animation-name: fadeInOpacity;
	animation-iteration-count: 1;
	animation-timing-function: ease-in;
	animation-duration: 0.4s;
}

@keyframes fadeInOpacity {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.zoom-in {
    animation:animatezoom 0.5s
}
@keyframes animatezoom{
    from{transform:scale(0)} 
    to{transform:scale(1)}
}

#expandable_row {
    padding: 10px;
    padding-right: 0;
}
#expandable_row div {
    padding: 0;
    padding-right: 10px;
    padding-bottom: 10px;
}
/* Style the button that is used to open and close the collapsible content */
.collapsible {
    color: #0F3B61;
    cursor: pointer;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px; 
    border-radius: 5px;
    background-color: #ACD1B6;
    padding-left: 20px;
    padding-right: 15px; 
    padding-top: 12px;
    padding-bottom: 12px; 
    transition: border-radius 0.4s ease-in-out;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .collapsible:hover {
    background-color: #caead3; 
}
.active {
    font-weight: 500;
    border-radius: 5px 5px 0 0;
    background-color: #8fbb9b;
    transition: border-radius 0s ease-out;
}

/* Style the collapsible content. Note: hidden by default */
.collapsible_content {
    padding: 0 10px !important;
    background-color: #f9f9f9;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    font-size: 16px;
    color: #0F3B61;
    border-radius: 0 0 5px 5px;
}
.collapsible_content p {
    font-size: 16px;
    color: #0F3B61;
}

.collapsible:after {
    content: '\002B'; /* Unicode character for "plus" sign (+) */
    font-size: 24px;
    line-height: 18px;
    color: #0F3B61;
    float: right;
    margin-left: 5px;
}
  
.active:after {
    content: "\002D"; /* Unicode character for "minus" sign (-) */
}

/* Radio buttons */
.radio-container {
    display: block;
    position: relative;
    padding: 0!important;
    padding-left: 45px !important;
    margin-bottom: 20px !important;
    font-size: 16px !important;
    line-height: 32px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.radio-container input {
    position: absolute;
    opacity: 0;
    height: 0;
    width: 0;
}
.radio-container label {
  cursor: pointer;
}
.radio-container label:hover {
  color: white;
}
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 30px;
    width: 30px;
    background-color: #fff;
    border-radius: 50%;
    margin-top: 2px;
}
/* On mouse-over, add a grey background color */
.radio-container label:hover input ~ .checkmark {
    background-color: #F5F5F5;
}
/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}  
/* Show the indicator (dot/circle) when checked */
.radio-container input:checked ~ .checkmark:after {
  display: block;
}
/* Show the indicator (dot/circle) when hover */
.radio-container label:hover input ~ .checkmark:after {
  display: block;
}  
/* Style the indicator (dot/circle) */
.radio-container .checkmark:after {
  top: 9px;
  left: 9px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ACD1B6;
}

.radio-container label {
  padding: 0; 
  margin: 0;
  font-size: 16px;
}

.radio-buttons-padding {
    padding-left: 80px;
    padding-top: 30px;
}

.ferenchi_curr_score {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.4);
}
#ferenchi_score_nxtLine {
    font-size: 20px;
    line-height: 20px;
    color: #ff6b6b;
}
.mortality_curr_score {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.4);
}
#mortality_score_nxtLine {
    font-size: 20px;
    line-height: 20px;
    color: #ff6b6b;
}

.reset_btn_conclusion {
    text-align: center;
    padding-top: 20px;
}
.reset_btn_conclusion button {
    background-color: transparent;
    border: none;
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 15px;
}
.reset_btn_conclusion button:hover {
    color: #855254;
}
.reset_btn_conclusion i {
    font-size: 21px;
}

.continue_btn_conclusion {
    text-align: center;
    padding-top: 20px;
    font-size: 19px !important;
    font-weight: 500;
    color: white !important;
    cursor: pointer;
}
.continue_btn_conclusion:hover {
    color: #855254 !important;
}

.monitoring_section {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.4);
    padding-bottom: 5px;
}
.monitoring_section p {
    margin-bottom: 0;
    font-size: 17px;
}
.monitoring_section p:nth-child(1) {
    text-align: right;
    padding-right: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #855254;
}

.necessary_conclusion {
    margin: 0;
    text-align: center;
    font-size: 20px !important;
    font-weight: 500;
    text-decoration: underline;
    padding-top: 10px;
    margin-bottom: -5px;
}

.ferenchi_table {
    text-align: center;
    margin-right: -10px;
    margin-left: -10px;    
    width: -webkit-fill-available;
}
.ferenchi_table thead{
    background-color: #ACD1B6;
    color: white;
}
.ferenchi_table tbody{
    color: #7F7F7F;
    background-color: white;
}
.ferenchi_table tbody tr:hover{
    color: #2B2B2B;
}
.ferenchi_table tbody .row_dark{
    background-color: #F6F6F6;
}
.ferenchi_table tbody .row_title{
    font-weight: 500;
}
.ferenchi_table th, .ferenchi_table td {
    width: 20%;
    padding: 5px 5px;
}
.ferenchi_table td {
    border: 1px solid #e4e4e4;
}
.ferenchi_table th {
    border: 1px solid #ACD1B6;
}

.image_center {
    text-align: center;
}

#next_btn_ferenchi, #next_btn_mortality, #previous_btn_ferenchi, #previous_btn_mortality, #previous_btn_small_screen, #global_reset_btn_small_screen, #global_reset_btn_mortality, #global_reset_btn_ferenchi {
    margin-top: 15px;
}

#next_btn_mortality, #next_btn_ferenchi {
    padding-top: 10px;
    margin-right: 20px;
}

#previous_btn_ferenchi, #previous_btn_mortality, #previous_btn_small_screen, #global_reset_btn_small_screen, #global_reset_btn_mortality, #global_reset_btn_ferenchi {
    display: none;
}

#ferenchi_score_div_small_screen, #mortality_score_div_small_screen {
    visibility: hidden;
}

/* Modal disclaimer style */
.modal_disclaimer {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 19999; /* Sit on top */
    padding-top: 160px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
/* Modal Content */
.modal_disclaimer_content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    text-align: center;
}
.modal_disclaimer_content h3 {
    margin-bottom: 15px;
    margin-top: 2px;
}
.modal_disclaimer_content p {
    text-align: left;
}

/* The Close Button */
.close_btn {
    padding: 7px 15px;
    border-radius: 5px;
    background-color: #45BCC9;
    color: white;
    text-transform: uppercase;
    border: none;
    margin-top: 10px;
    margin-bottom: 6px;
}
  
.close_btn:hover,
.close_btn:focus {
    background-color: #40aeba;
    cursor: pointer;
}

.mortality_score_inner_div_btn button:nth-child(1), #previous_btn_ferenchi {
    margin-bottom: 20px;
}
.mortality_score_inner_div_btn button:nth-child(2), #global_reset_btn_ferenchi {
    margin-left: 0;
}

.mortality_score_inner_div_btn {
    min-width: 100px;
}

#mortality_score_div .button-column {
    min-width: 100px;
}

/* Small screen configuration */
@media only screen and (max-width: 991px) {
    .radio-buttons-padding {
        padding-left: 15px !important;
    }
    #previous {
        display: none !important;
    }
    #global_reset_btn {
        display: none !important;
    }
    #previous_btn_small_screen, #global_reset_btn_small_screen {
        display: block;
    }
    #previous_btn_mortality, #global_reset_btn_mortality, #previous_btn_small_screen, #global_reset_btn_small_screen, #previous_btn_ferenchi, #global_reset_btn_ferenchi {
        display: inline-block;
    }
    #ferenchi_score_div_small_screen, #mortality_score_div_small_screen {
        visibility: visible;
    }
    .ferenchi_score_inner_div_btn, .mortality_score_inner_div_btn {
        text-align: left;
        margin-top: 5px;
    }
    .ferenchi_score_inner_div_btn button, .mortality_score_inner_div_btn button {
        margin-left: 20px;
    }    
    .collapsible_content {
        position: initial !important;
        width: 100% !important;
    }
}

@media only screen and (max-width: 768px) {
    .ferenchi_curr_score  {
        padding: 0 !important;
    }  
    .button-column {
        padding: 0 !important;
    }
    .modal_disclaimer_content {
        width: calc(100% - 30px);
    }
    .modal_disclaimer {
        padding-top: 90px;
    }
}

@media only screen and (max-width: 580px) {
    .question-container .first_screen_btns {
        display: block;
        text-align: center;
    }
    .question-container .first_screen_btns button {        
        margin-bottom: 15px;        
        margin-right: 0 !important;
    }
}
@media only screen and (max-width: 465px) {
    .ferenchi_score_inner_div_btn {
        min-width: 100px;
    }
    .ferenchi_curr_score {
        max-width: 47%;
    }
    .ferenchi_score_inner_div_btn_next {
        min-width: 100px;
    }
}
@media only screen and (max-width: 450px) {
    
}
@media only screen and (max-width: 400px) {
    #ferenchi_score_div .button-column {
        min-width: 60px;
    }
    #previous_btn_ferenchi {
        margin-left: 0;
        margin-right: 0;
    }
    #next_btn_ferenchi {
        margin-right: 0;
    }
}

@media only screen and (max-width: 370px) {
    #main_quiestion_container {
        padding-left: 5px;
        padding-right: 5px;
    }    
    .question-container .first_screen_btns button {
        width: 100% !important;
    }
    .ferenchi_score_inner_div_btn button {
        margin-left: 0px;
    }
    .mortality_score_inner_div_btn button {
        margin-left: 0px;
    }
    .button-column button {
        margin-right: 0px !important;
    }
    #mortality_score_div .button-column {
        min-width: 70px;
    }
    #mortality_score_div .button-column {
        max-width: 20%;
    }
    #mortality_score_div .mortality_score_inner_div_btn {
        min-width: 70px;
    }
}

/* Prevent hover on touchscreen */
@media (hover:none), (hover:on-demand) {
    .radio-container label:hover:hover {
    color: #0F3B61 !important;
    }
    .button-column button:hover {
        color: white;
    }
    .reset_btn_conclusion button:hover {
        color: white;
    }
    .continue_btn_conclusion:hover {
        color: white !important;
    }
}

