.page_header_text {
    color: #3077E1;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.0em;
}

.subtitle_text {
    margin:5px;
    margin-bottom: 25px;
    font-weight: 600;
    color: #3b4752;
    line-height: normal;
}

.page_body_text {
    width: 90%;
    margin: auto;
    max-width: 500px;   
/*    line-height: normal;*/
}

.page_link {
    text-decoration: none;
    color: #3077E1;
    font-weight: bold;
}

/*Alert*/

.alert_notification_div {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    
    
    background-color: rgba(78, 78, 78, 0.73);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 101;
    
    display: none;
}

.alert_notification_background {
    position: fixed;
    width: 320px;
    height: 270px;
    margin: auto;
    top: 50%;
    margin-top: -135px;
    left: 50%;
    margin-left: -160px;
    border-radius: 14px;
    
    background-color: white;
    
    width: 340px;
    height: 245px;
    margin-left: -170px;
    margin-top: -110px;
}

.alert_notification_title {
    margin-bottom: 15px;
    font-size: 32px;
    font-weight: 500;
    color: #f24343;
    color: #3077E1;
}

.alert_notification_text {
    text-align: center;
    width: 85%;
    margin: auto;
    margin-bottom: 15px;
}

.alert_notification_btn {
    background-color: Transparent;
    background-repeat:no-repeat;
    border: none;
    cursor:pointer;
    overflow: hidden;
    outline:none;
    
    font-size: 16px;
    font-weight: 700;
    background-color: #4b4b4b;
    width: 140px;
    height: 34px;
    border-radius: 10px;
    font-size: 18px;
    color: white;
    margin: auto;
    
    width: 150px;
}

#alert_cancel {
    position: fixed;
    background-color: #3077E1;
    left: 50%;
    margin-left: -145px;
    
    margin-left: -155px;
}

#alert_continue {
    position: fixed;
    background-color: #f24343;
    background-color: #10a74a;
/*    #10a74a;*/
    left: 50%;
    margin-left: 5px;
}


#model_release_popup {
    width: 338px;
    height: 500px;
    height: 455px;
    margin-left: -169px;
    margin-top: -255px;
    margin-top: -230px;
}

#release_alert_cancel {
    position: fixed;
/*    background-color: #3077E1;*/
    background-color: #a0a0a0;
    left: 50%;
    margin-left: -145px;
    
    margin-left: -155px;
    margin-top: 60px;
    height: 40px;
}

#release_alert_continue {
    position: fixed;
/*
    background-color: #f24343;
    background-color: #10a74a;
*/
    background-color: #3077E1;
/*    #10a74a;*/
    left: 50%;
    width: 160px;
    margin-left: 5px;
    margin-left: -80px;
    margin-top: 20px;
    height: 40px;
}

/*Checkbox*/
.checkbox_container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox_container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkbox_checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  background-color: #ffffff;
    border-style: solid;
    border-width: 2px;
    border-color: #868686;
    border-radius: 4px;
}

/* On mouse-over, add a grey background color */
.checkbox_container:hover input ~ .checkbox_checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkbox_container input:checked ~ .checkbox_checkmark {
  background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkbox_checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox_container input:checked ~ .checkbox_checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox_container .checkbox_checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}