.container{
    display: block;
    overflow: auto;
    margin: auto;
    text-align: center;
    margin-top: 10px;
    padding-bottom: 200px;
}
#the-canvas {
    /* border:1px solid black; */
    /* max-width: 500px; */
    /* width: 100%;
    height: 100%; */
    /* position: fixed; */
    /* overflow: auto; */
    margin-top: 0px;
    /* left: 0; */
    /* top: 0; */
    border-radius: 6px;
    box-shadow: 0px 2px 3px rgba(0,0,0,0.4);
    background-color:#fff;
    width: 100%;
    max-width: 1440px;
    display: none;
    margin: auto;
}
.loading {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    display: block;
    flex-direction: column-reverse;
    justify-content: center;
    text-align: center;
    align-items: center;
}
.header{
    background: #b92b27;
    background: -webkit-linear-gradient(to right, #1565C0, #b92b27);
    background: linear-gradient(to right, #1565C0, #b92b27);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    color:#fff;
    text-shadow: 0px 1px 3px #000;
    /* font-family: 'Roboto Slab', serif; */
    padding: 10px;
    /* position: fixed; */
    /* left: 0; */
    /* top: 0; */
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    box-shadow: 0px 2px 5px rgba(0,0,0,0.5);
}

.header__documents{
    display: flex;
    justify-content: flex-start;
    align-content: center;
    flex-wrap: wrap;
}
.header__documents .row {
    margin-right: 15px;
    display: flex;
    align-items: center;
}
.header__documents .row:last-child{
    margin-right: 0px;
}
.header__documents .row select{
    border:1px solid #d2d2d2;
    background-color:#fff;
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 0px;
}

.header__documents a {
    color: #fff;
    text-decoration: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    /* padding-bottom: 3px; */
}
.header__documents a:hover{
    border-bottom: 2px solid transparent;
}

.bottom_nav_wrap{
    position: fixed;
    bottom: 0px;
    left: 0;
    width: 100%;
    /* padding-top: 10px; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 10px;
    padding-top: 0px;
    padding-bottom: 10px;
    flex-wrap: wrap;
    /* background-color: red; */
    /* background: #b92b27; */
    background: -webkit-linear-gradient(to right, #1565C0, #b92b27);
    /* background: linear-gradient(to right, #1565C0, #b92b27); */
}
.regform__actionbtn {
    animation-duration: 2s;
    animation-delay: 2s;
    animation-iteration-count: infinite;
    /* position: fixed;
    bottom: 10px;
    left: 10px; */
    padding: 6px;
    background-color: rgba(0,0,0,0.2);
    border-radius: 6px;
}

.regform__navbtn {
    /* position: fixed;
    bottom: 10px;
    right: 10px; */
    padding: 6px;
    background-color: rgba(0,0,0,0.2);
    border-radius: 6px;
}

.progressbar_wrap {
    height: 16px;
    width: 100%;
    max-width: 300px;
    background-color: #f2f2f2;
    border-radius: 6px;
    border: 1px solid #d2d2d2;
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}

.progressbar_wrap .bar {
    position: absolute;
    left: 0;
    top: 0;
    width: 31%;
    height: 100%;
    background: #44ea43;
    background: rgb(59,180,250);
    background: -moz-linear-gradient(18deg, rgba(59,180,250,1) 0%, rgba(39,224,36,1) 100%);
    background: -webkit-linear-gradient(18deg, rgba(59,180,250,1) 0%, rgba(39,224,36,1) 100%);
    background: linear-gradient(18deg, rgba(59,180,250,1) 0%, rgba(39,224,36,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#3bb4fa",endColorstr="#27e024",GradientType=1);
}

.bar_title {
    font-size: 11px;
    font-weight: bold;
    position: absolute;
    z-index: 1;
    left: 50%;
    transform: translate(-50%,0);
}

.regform__navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    flex-grow: 1;
    max-width: 500px;
}

.regform__navigation .current_item {
    /* background-color: rgba(255,255,255,1); */
    padding: 10px 10px;
    border-radius: 6px;
    display: none;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
    text-shadow: 0px 1px 3px #000;
    /* box-shadow: 0px 1px 2px rgba(0,0,0,0.3); */
}

.regform__navigation .nav_options {
    position: absolute;
    border-radius: 6px;
    background-color: rgba(0,0,0,0.25);
    padding: 10px;
    display: flex;
    flex-direction: column;
    left: 50%;
    bottom: 50px;
    width: 100%;
    max-width: 600px;
    transform: translate(-50%, 0);
    display: none;
    max-height: 400px;
    overflow: auto;
}

.regform__navigation .nav_options .bookmark-item {
    text-align: left;
    font-weight: bold;
    padding: 6px 8px;
    outline: none;
    font-size: 13px;
    cursor: pointer;
    /* border-radius: 6px; */
    /* margin-bottom: 1px; */
    border: 0px;
    border-bottom: 1px solid #d2d2d2;
    background-color: #fff;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-property: background-color;
    transition-property: background-color;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}

.regform__navigation .nav_options .bookmark-item:hover,
.regform__navigation .nav_options .bookmark-item.active{
    background: #182848;
    background: linear-gradient(90deg, #4b6cb7 0%, #182848 100%);
    color: #fff;
}

.white-popup {
    position: relative;
    background: #FFF;
    padding: 20px;
    width: auto;
    max-width: 800px;
    margin: 20px auto;
  }
  .white-popup h4 {
    margin-top: 0px;
    font-weight: normal;
    font-size: 21px;
    text-align: center;
}

.input_group {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

.white-popup label {
    font-weight: bold;
    display: block;
    margin-bottom: 4px;
    font-size: 15px;
}

.form-control {
    width: 100%;
    font-size: 15px;
    outline: none;
    padding: 6px 10px;
    border-radius: 3px;
    border: 1px solid #d2d2d2;
}

.input_group .row {
    flex-direction: column;
    width: calc((100% / 3) - (3rem / 3));
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.btn_group {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #d2d2d2;
    text-align: right;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    justify-content: center;
}
.input_group .row.wide {
    width: 100%;
}
.red{
    color:black;
}
.disqlaimer{
    font-style: italic;
    color:black;
}

/* Customize the label (the container) */
.container_checkbox {
    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 */
  .container_checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  /* Create a custom checkbox */
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
  }
  
  /* On mouse-over, add a grey background color */
  .container_checkbox:hover input ~ .checkmark {
    background-color: #ccc;
  }
  
  /* When the checkbox is checked, add a blue background */
  .container_checkbox input:checked ~ .checkmark {
    background-color: #2196F3;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .container_checkbox input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the checkmark/indicator */
  .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);
  }

  .yearno{
      margin: 20px;
  }


  form label.error,
  form label.error {
    margin: 10px 0px;
    font-size: 13px;
    color: red;
    /* font-style: italic; */
    background-color: #fff2f2;
    padding: 7px 10px;
    border-radius: 3px;
    display: block;
    font-weight: normal;
}
.loading__wrap {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(255,255,255,0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}
.loading__wrap.active{
    display: flex;
}
.autocomplete-suggestions { border: 1px solid #999; background: #FFF; overflow: auto; }
.autocomplete-suggestion { padding: 2px 5px; white-space: nowrap; overflow: hidden; }
.autocomplete-selected { background: #F0F0F0; }
.autocomplete-suggestions strong { font-weight: normal; color: #3399FF; }
.autocomplete-group { padding: 2px 5px; }
.autocomplete-group strong { display: block; border-bottom: 1px solid #000; }

.master_wizard {
    display: none;
}

.master_wizard.active {
    display: block;
}

@media screen and (max-width:530px) {
    .bottom_nav_wrap{
        justify-content: center;
        flex-direction: column;
    }
    .bottom_nav_wrap > div{
        margin-bottom: 5px;
    }
    .bottom_nav_wrap .regform__navbtn .btn > span{
        display: none;
    }
    .header {
        justify-content: center;
        /* flex-direction: column; */
        text-align: center;
    }
    .header > div{
        margin-bottom: 5px;
    }
    .header > div:last-child{
        margin-left: 10px;
    }
    .header__documents a{
        border-bottom: none;
        /* text-decoration: underline; */
        background-color: rgba(255,255,255,0.2);
        border-radius: 6px;
        padding: 5px 5px;
    }
    .input_group .row{
        margin-bottom: 10px;
        width: 100%;
        margin-right: 0;
    }
}

.header__count {
    cursor: pointer;
}

input#page_num {
    background-color: transparent;
    border: 0px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0px 1px 3px #000;
    display: inline-block;
    font-size: 15px;
    width: 40px;
    padding: 5px;
    text-align: center;
    border: 1px solid #d2d2d24d;
    border-radius: 6px;
}