:root{
    --general-blue:#0065BD;
    --base-input-color: #212529;
    --btn-bg-hover: #0056a1;
    --danger-red: #E3342F;
}
@font-face {
  font-family: "Roboto";
  src:
    url("fonts/roboto/Roboto-Regular.def2ad7951cd.woff2") format("woff2"),
    url("fonts/roboto/Roboto-Regular.303c6d9e1616.ttf") format("truetype");
    font-weight: normal;
}
@font-face {
  font-family: "Roboto";
  src:
    url("fonts/roboto/Roboto-Medium.6082383954c9.woff2") format("woff2"),
    url("fonts/roboto/Roboto-Medium.7d752fb726f5.ttf") format("truetype");
    font-weight: 500;
}
@font-face {
  font-family: "Roboto";
  src:
    url("fonts/roboto/Roboto-Bold.048920b72c99.woff2") format("woff2"),
    url("fonts/roboto/Roboto-Bold.8c9110ec6a17.ttf") format("truetype");
    font-weight: bold;
}
header{
    border-top: 4px solid var(--general-blue);
    display: flex;
    justify-content: space-between;
    background: #fff;
    padding: 9px 80px;
}
body{
    display: flex;
    flex-direction: column ;
    min-height: 100vh;
    font-size: 18px;
    font-family: Roboto, sans-serif;
    padding: 0;
    margin: 0;
    color: var(--base-input-color);
}
main{
    margin:40px 80px;
}
h1{
    font-size: 2.3em;
    margin: 12px 0;
}
h2, .step-one-header{
    font-size: 1.2em;
    margin: 12px 0;
    font-weight: 700;
}
button{
    font-size: 14px;
    color: white;
    background-color: var(--general-blue);
    border: none;
    padding: 0.75rem 1.75rem;
    cursor: pointer;
    transition: .2s;
}
button:hover{
    background-color: var(--btn-bg-hover);
}
textarea{
    resize: none;
    min-height: 150px;
    font-family: Roboto, sans-serif;
    background-color: #f8f8f8;
    border:1px solid #505050;
    padding: .375rem .75rem;
    font-size: 14.5px;
    width: -webkit-fill-available;
    color: var(--base-input-color);
}
legend{
    width: 100%;
    font-weight: bold;
    font-size: 16px;
    margin-bottom:8px;
}
label{
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 16px;
    font-family: Roboto, sans-serif;
    line-height: 1.2;
    color: rgb(33, 37, 41);
}
table{
    width: 100%;
    text-align: left;
    font-size: 14px;
    vertical-align: top;
    border-collapse: collapse;
}
hr{
    opacity: .25;
    color: var(--base-input-color);
    margin-top: 25px;
}
.table>:not(caption)>*>*{
    padding: 5px;
}
.address-container{
    border:none;
    display: flex;
    flex-direction: column;
    padding: 0;
}
.address-container>label>input{
    width: auto;
    flex-grow: 1;
}
.address-container>label{
    display: flex;
    flex-direction: column;
}
thead{
    background-color: var(--general-blue);
    color: #fff;
}
th{
    padding: 12px;
}
td{
    padding: 12px;
}
td a{
    color: var(--general-blue);
}
tbody tr:nth-child(odd){
    background-color:rgb(222, 226, 230, 0.5);
}

select {
    width: 100%;
    height: 40px;
    font-family: Roboto, sans-serif;
    background-color: #f8f8f8;
    border: 1px solid #505050;
    height: 35px;
    padding: .375rem .75rem;
    font-size: 14.5px;
}

option {
    font-family: Roboto, sans-serif;
    background-color: #f8f8f8;
    border: 1px solid #505050;
    height: 35px;
    padding: .375rem .75rem;
    font-size: 14.5px;
}
 input{
    font-family: Roboto, sans-serif;
    background-color: #f8f8f8;
    border:1px solid #505050;
    height: 21px;
    padding: .375rem .75rem;
    font-size: 14.5px;
 }
 footer{
    background-color: rgba(248, 249, 250);
    margin-top:auto;
 }
.pub-info-container{
    display: grid;
    grid-template-columns: 25% 50% 25%;
    gap: 1rem;
    font-weight: 300;
}
.pub-links-container label{
    font-size: 18px;
}
.pub-links-container textarea{
    margin-bottom: 1rem;
    
}
.pub-links-container label,.pub-links-container textarea{
    display: block;
}
.pub-lock-btn{
    margin-bottom:16px;
}
.publication-title{
    border-left: 3px solid var(--general-blue);
    padding-left: 15px;
}

.pub-info-container-left p{
    margin: 0;
}
.pub-info-label{
    font-size: 16px;
    font-weight: bold;
    margin-top: 16px !important;
    line-height: 2;
}
.registered-status strong{
    color: var(--general-blue);
}
.row{
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.row>*{
    width: 100%;
    max-width: 100%;
    padding: 0 1rem;
}
.guidance{
    margin-right: 30px;
    font-size: 13px;
    border-left: 1px solid var(--general-blue);
    max-width: 25%;
}
.guidance ul li{
    font-size: 13px;
}
.container-step{
    display: grid;
    grid-template-columns: 20% 80%;
    gap: 30px;
}
.steps-pub-info-container{
    display: block;
    font-weight: 300;
}
.steps-pub-info-container p{
    margin: 0;
}
.col{
    flex: 1 0 0%;
    display: flex;
    flex-direction: column;
}
.checkbox-label{
    display: block;
    font-size: 14.4px;
    font-weight: 400;
    margin-bottom: 0.2rem;
    padding-left: 2em;
}
.checkbox-label::first-line{
    margin-left:-110px;
}
.checkbox-container {
    column-count: 2;
    column-gap: 20px;
    border: none;
    padding: 0;
}

.checkbox-container > div {
    break-inside: avoid;
    margin-bottom: 15px;
}
.checkbox-column{
    position: relative;
    width: 90%;
    margin-bottom: 10px;
}
input[type="checkbox"]{
    vertical-align: middle;
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
    
}
.error{
    color: var(--danger-red);
}
.checkmark {
    position: absolute;
    left: 0;
    height: 1em;
    width: 1em;
    background-color: #ffffff;
    border-radius: 0.25em;
    border: 1px solid #dee2e6;
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-column input:checked ~ .checkmark:after {
  display: block;
}
.checkbox-column input:checked ~ .checkmark {
  background-color: var(--general-blue);
  border-color: var(--general-blue);
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}
.checkmark:focus{
    box-shadow: 0 0 0 .25rem #0065bd40;
}
.header-container{
    display: flex;
    width: 97%;
    justify-content: space-between;
}
.step-one-header{
    color: var(--general-blue);
}
.text-danger{
    color: var(--danger-red);
    margin-top: 0;
}
.help-tip{
    color: var(--general-blue);
}
.show-helpful-text{
    border: 4px solid var(--general-blue);
    padding: 1rem;
    font-size: 16px;
}
.show-helpful-text h4, .show-helpful-text p{
    margin: 8px;
}
.publication-link-textarea{
    min-height: auto;
    place-content: center;
    height: 25px;
   
}
.show-mod-buttons{
    display: flex;
    margin-top: 8px;
}
.btn{
    text-decoration: none;
    font-size: 14px;
    color: white;
    background-color: var(--general-blue);
    border: none;
    padding: 0.75rem 1.75rem;
    cursor: pointer;
    transition: .2s;
}
.btn:hover{
    background-color: var(--btn-bg-hover);
}
.show-mod-buttons .btn-danger{
    background-color: white;
    color: var(--danger-red);
    border: 1px solid var(--danger-red);
    padding: 11px 28px;
    margin-left: 5px;
}
.show-mod-buttons .btn-danger:hover{
    background-color: var(--danger-red);
    color: var(--base-input-color);
}
.right{
    display: flex;
    align-items: center;
    color: #000000A6;
}
.logout-btn, .header-create-btn{
    font-size: 14px;
    text-decoration: none;
    background: none;
    color: #000000A6;
    padding: 8px;
    box-sizing: border-box;
    border: 2px solid transparent;
    transition: 0.2s;
    margin:0 4px;
}
.logout-btn:hover, .header-create-btn:hover{
    color: #000000CC;
    border-bottom: 2px solid var(--general-blue);
    background:none;
}
.logout-form{
    display: flex;
}
.header-search{
    height: 23px;
}
.update-json-btn{
    border-radius: 8px;
    margin-right: 8px;
    background-color: white;
    color: var(--general-blue);
    font-size: 12.6px;
    border: 1px solid var(--general-blue);

}
.update-json-btn:hover{
    color: white;
}
.step-one-next-btn{
    width: 130px;
}
.step-one-next-btn-container{
    width: 75%;
    align-items: end;

}
.col-guidance-ph{
    border: none;
}
.splitdatetime-container{
    width: 100%;
    margin: 0;
    display: flex;
    column-gap: 24px;
    flex-wrap: wrap;
    padding: 0;
    border: none;
}
.splitdatetime-container input{
    width: 100%;
    box-sizing: border-box;
    height: 35px;
    margin-top: 5px;

}
.splitdatetime-container input[type="date"]{
    flex: 3;
}
.splitdatetime-container input[type="time"]{
    flex: 1;
    
}

.splitdatetime-container label{
    width: 30px;
    flex:0 0 auto;
    width: 15%;
}
.splitdatetime-container label:first-child{
    flex-grow: 1;
}

.splitdatetime-container > label:not(:first-of-type) {
  width: 70px; 
}
small {
    font-size: .82rem;
}
footer{
    padding: 0 80px;
    display: flex;
    justify-content: space-between;
    color: #333;
}
footer a {
    color: inherit;
}
.no-border{
    border: none!important;
}

.warning-note{
    margin-top: 2px;
    font-size: 14px;
}
.registration-container{
    display: flex;
    column-gap: 24px;
    justify-content: center;
    
}
.placeholder{
     flex: 0 0 auto; 
     width: 25%; 
}
.registration-form{
    display: flex;
    flex-direction: column;
    flex: 1 0 0%;
    width: 100%;
}
.login-form{
    display: flex;
    flex-direction: column;
    flex: 2;
    width: 100%;
    align-items: flex-start;
}
.login-form>div{
    display: flex;
    flex-direction: column;
    width: 100%
}
.login-form>div>input{
    margin-bottom: 20px;
    height: 23px;
    max-width: 400px;
}
.registration-form label{
    font-weight: bold;
}

.registration-form input{
    margin-bottom: 20px;
    
}
 .registration-form select{
    margin-bottom: 20px;
    
 }
.registration-form button{
    max-width: 180px;
}
.registration-form .pickaday, .registration-form .hour-minute{
    height: 35px;
}
.registration-container .show-helpful-text{
    max-height: 120px;
    flex: 0 0 auto;
    width: 25%;
}
.privacy-container p,li, address{
    font-size: 14px;
}
.privacy-container a{
    color: var(--general-blue);
}
.login-container{
    display: flex;
    justify-content: center;
}
.login-inner-container{
    flex-direction: column;
    flex: 0 0 30%
}
.locked-text{
    padding: 16px;
    font-size: 16px;
    background-color: #D7F3E3;
}
.locked-embargo-text{
    padding:16px;
    font-size: 16px;
    background-color: #E2F0FB;
}
.not-registered{
    padding:16px;
    font-size: 16px;
    background-color: #fbf0e2;
}
#email-template{
    line-height: 1.6;
}
.checkbox-toggle{
    width: 100%;
}
.slider{
    cursor: pointer;
    display: block;
    background-repeat: no-repeat;
    height: 14px;
    width: 28px;
    border-radius: 2em;
    transition: background-position 0.15s ease-in-out;
    background-position: right center;
}
input[type="checkbox"]:not(:checked) ~ .slider{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='white'/%3e%3c/svg%3e");
    border-color: var(--general-blue);
    background-color: var(--general-blue);
    
}
input[type="checkbox"]:checked ~ .slider{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='white'/%3e%3c/svg%3e");
    background-color: gray;
    border-color: gray;
    background-position: left center;
}
.login-btn{
    font-size: 14px;
    text-decoration: none;
    background: none;
    color: #000000A6;
    padding: 8px;
    box-sizing: border-box;
    border: 2px solid transparent;
    transition: 0.2s;
    margin:0 4px;
}
.login-btn:hover{
    color: #000000CC;
    border-bottom: 2px solid var(--general-blue);
    background:none;
}
.bottom-text{
    font-size: 12px;
    text-align: left;
}
.choice_unavailable ~ .checkmark{
    background-color: var(--general-blue);
    border-color: var(--general-blue);
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    opacity: .5;
}
.cont-post-reg{
    grid-template-columns: 40% 60%;
}
.pub-info-post-registration{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem; 
}
.info-grid-item p{
    margin: 0;
    font-size: 16px;
}
.info-grid-item ul{
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.info-grid-item ul li{
    font-size: 16px;
}
.pub-info-span{
    font-size: 14px;
    
}
.empty-values{
    opacity: 0.75;
}
.title-container{
    display: flex;
    justify-content: space-between;
}
.title-container-right{
    color: var(--general-blue);
    align-content: center;
}
.title-container-right p{
    font-size: 16px;
}
.title-container-right p, .title-container-right h3{
    margin: 0;
}
.pub-title-container{
    display: flex;
    justify-content: space-between;
}
.pub-title-container .btn{
    padding: 0 36px;
    height: 36px;
    align-content: center;
    align-self: center;
}
.reg-complete-hr{
    opacity:.75;
    border:1px solid var(--general-blue);
}
.title-container-center{
    text-align: center;
    color: var(--general-blue);
}
.choices-list{
    padding-top:8px;
}
.confirm_column{
    width: 100%;
}
.menu{
    display: flex;
    align-items: center;
    color: #000000A6;

}
.menu-btn {
  position: relative;
  width: 30px;
  height: 22px;
  cursor: pointer;
  display: none;
}

.menu-btn span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #33333391;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center center; /* ensure perfect rotation */
}

/* place the three bars */
.menu-btn span:nth-child(1) {
  top: 0;
}
.menu-btn span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.menu-btn span:nth-child(3) {
  bottom: 0;
}

.menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translateY(0);
  top: 50%;
}

.menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(0);
  bottom: auto;
  top: 50%;
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.reset-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  
}

.reset-card {
  width: 600px;
  border: 1px solid #d0d0d0;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0,0,0,0.05);
  background-color: #fff;
}

.reset-header {
  background-color: #f7f7f7;
  padding: 15px 25px;
  border-bottom: 1px solid #ddd;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.reset-header h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 300;
}

.reset-form {
  padding: 40px 35px;
  
}

.form-group {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.form-group label {
  font-weight: 700;
  color: #222;
  font-size: 16px;
  margin-right: 15px;
  width: 120px;
  
}

.form-group input[type="email"], .form-group input[type="password"] {
  flex: 1;
  padding: 10px;
  border: 1px solid #999;
  border-radius: 2px;
  font-size: 16px;
  box-sizing: border-box;
  margin-left: 69px;
  height: 35px;
  width: 350px;
  
}
.form-group input[type="email"]:focus, .form-group input[type="password"]:focus{
    outline: medium solid var(--general-blue);
}
.button-group {
  display: flex;
  justify-content: flex-start;
  margin-left: calc(120px + 15px);
}

.button-group button {
  background-color: #0066cc;
  color: white;
  font-size: 14px;
  padding: 14px 18px;
  border: none;
  cursor: pointer;
  font-weight: 300;
  
}

.button-group button:hover {
  background-color: #0057b8;
}
.messages{
    margin-top:25px;

}
.alert{
    width: 90%;
    background-color: #D7F3E3;
    color:#164d2e;
    padding: 16px;
    justify-self: center;
    font-size: 16px;
    margin: 25px 0 0 0 ;
}
.forgot-password{
    font-size: 14px;
    margin-bottom:3px;
    color: var(--general-blue);
}
.reset-confirm{
    margin-top:100px;
}
.button-confirm{
    margin-left: 205px;
}
.password-requirements{
    margin: 0;
    margin-left:205px;
    font-size: 14px;
}

@media only screen and (max-width: 760px) {
    header{
       flex-direction: column;
        padding: 4px 20px;
    }
    main{
        margin: 10px 20px;
    }
    .login-form>div>input{
        width: auto;
        max-width: none;
    }
     .login-inner-container{
        flex:1;
    }
    .splitdatetime-container{
        display: block;
    }
    .splitdatetime-container > label:not(:first-of-type) {
        margin-top: 8px;
        display: inline-block;
        width: 47%; 
    }
    .splitdatetime-container label:last-child{
       float: right;
    }
    .menu-btn{
        display: flex;
    }
    .menu{
        display: none;
        flex-direction: column;
        padding: 10px 0;
    }
    .menu > * {
        padding:8px 0;
    }
    .menu.active{
        display: flex;
    }
    .divider.active{
        display: none;
    }
    .pub-info-container{
        display: block;
    }
    .pub-links-container{
        margin-top: 20px;
    }
    .publication-title, td{
        max-width: 100%;
        overflow-wrap: break-word; 
        word-wrap: break-word;
        white-space: normal;
    }
    table{
        width: 100%;
        table-layout: fixed;
        border-collapse: collapse;
    }
    h1{
        font-size: 2.0em;
    }
    .registration-container{
        display: block;
    }
    .registration-container .show-helpful-text{
        width: auto;
        margin-top: 8px;
    }
    .col{
        width: auto;
        max-width: none;
        padding: 0;
    }
    .container-step{
        display: block;
    }
    .row{
        display: block;
        margin-top:30px;
    }
    .guidance{
        border-left: none;
        margin:0;
    }
    .reset-container{
        margin-top: 80px;
    }
    .form-group input[type="email"] {
        margin-left: 0;
    }
    .button-group {
        margin-left: 0;
    }
    .form-group div{
        display: flex;
        flex-direction: column;
    }
}
@media only screen and (max-width: 450px) {
    header{
        display: block;
    }
    
}
.span_font{
    font-weight: 300;
    margin: 0;
    line-height: 1.4;
}
.legend_container span:nth-of-type(2){
    color: var(--general-blue);
}

 