﻿
/*-------------------------------------------------------------------------*/

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    background: none repeat scroll 0 0 #BADCF8;
}

.loader {
    display: inline-block;
    width: 50px;
    height: 50px;
    position: relative;
    border: 5px solid #000;
    animation: loader 2s infinite ease;
}

.loaderInner {
    vertical-align: top;
    display: inline-block;
    width: 100%;
    background-color: #000;
    animation: loaderInner 2s infinite ease-in;
}

@keyframes loader {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(180deg);
    }

    50% {
        transform: rotate(180deg);
    }

    75% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes loaderInner {
    0% {
        height: 0%;
    }

    25% {
        height: 0%;
    }

    50% {
        height: 100%;
    }

    75% {
        height: 100%;
    }

    100% {
        height: 0%;
    }
}

/*body {
    background-color: #fff;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
}

.wrapper {
    display: block;
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: left;
    word-wrap: break-word;
}*/

.heading {
        /*font-weight:bold;*/
        font-size:xx-large;
    }


.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    background: none repeat scroll 0 0 rgba(0,0,0,0.7);
}

.canvas {
  align-items: center;
  /*background: #eeeeee;*/
  border-radius: 50%;
  /*box-shadow: 0 5px 20px rgba(0,0,0,0.2);*/
  display: flex;
  height: 10em;
  justify-content: center;
  margin: 1em 1em 2em 1em;
  width: 20em;
}

.spinner6 {
  /*background: #4DB6AC;*/
  background: rgb(186,220,248);
  border-radius: 50%;
  height: 3em;
  margin: .3em;
  width: 3em;
}

.p1 {
  animation: fall 1s linear .3s infinite;
}

.p2 {
  animation: fall 1s linear .2s infinite;
}

.p3 {
  animation: fall 1s linear .1s infinite;
}

.p4 {
  animation: fall 1s linear infinite;
}

@keyframes fall {
  0% {
    transform: translateY(-15px);
  }
  25%, 75% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-15px);
  }
}

/*.loadingLoader {
    display: inline-block;
    width: 50px;
    height: 50px;
    position: relative;
    border: 5px solid rgb(186,220,248);
    animation: loader 2s infinite ease;
}

.loadingLoaderInner {
    vertical-align: top;
    display: inline-block;
    width: 100%;
    background-color: rgb(186,220,248);
    animation: loaderInner 2s infinite ease-in;
}*/


/*------------- NAVBAR/NAVBAR ANIMATION -------------*/

@keyframes slideIn {
    0% {
        transform: translateY(-1rem);
        opacity: 0;
    }

    100% {
        transform: translateY(0rem);
        opacity: 1;
    }

    0% {
        transform: translateY(-1rem);
        opacity: 0;
    }
}

@-webkit-keyframes slideIn {
    0% {
        -webkit-transform: transform;
        -webkit-opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        -webkit-opacity: 1;
    }

    0% {
        -webkit-transform: translateY(-1rem);
        -webkit-opacity: 0;
    }
}

.slideIn {
    -webkit-animation-name: slideIn;
    animation-name: slideIn;
}


/*------------- WELCOME TAB -------------*/

#welcome {
    height: auto;
    width: 100%;
    padding: 75px 80px 60px 80px !important;
    background-color: #B291C4;
}
 
    #welcome h3 {
        vertical-align:central;
        padding:25px 0 20px 0;
        text-align:center;
        font-weight: bold;
        font-size:34px;
    }

    #welcome p {
        vertical-align:central;
        text-align:center;
        font-weight: bold;
    }

    #pcanuLogo {
        display:block;
        height:100px;
        width:100px;
        margin-left:auto;
        margin-right:auto;
    }

    #welcome section{
        padding:20px 0 0 0;
    }

#RegistryLinks {
    height: auto;
    width: 100%;
    padding: 25px 80px 60px 80px !important;
    background-color:#E3D1ED;
}

#RegistryLinks #pillsContent {
    padding-top:30px;
}

#RegistryLinks h5 {
    font-weight:bold;
}

#RegistryLinks #lblSolicitarAccess {
    justify-content:flex-start;
    font-size:1.25rem;
}

#RegistryLinks #lblSolicitarAccess2{
    padding-left:75px; 
    color:black;
}

#RegistryLinks #lblReg {
    padding-left:75px;
    color:black;
}

#RegistryLinks #lblAuthStatus {
    padding-left:75px;
}

#RegistryLinks p {
    padding-left:35px;
    padding-bottom:20px;
}

#RegistryLinks ul{
    padding-bottom:20px;
}

.nav-pills .nav-link:not(.active) {
    background-color: rgb(100,0,0,0) !important;
    color:black !important;
}

.nav-pills .active {
    background-color:black !important;
}

/*------------- GENERAL HEADER FOR REGISTRO, REPORT AND USER REGISTRY -------------*/

#headerSection {
    height: auto;
    width: 100%;
    padding: 30px 0px 20px 50px !important;
    background-color: #B291C4;
}

#headerSection2 {
    height: auto;
    width: 100%;
    padding: 15px 200px 0px 200px !important;
    background-color: #7a598b;
}

#headerSection2 img{
    height: 80px;
    width: auto;
}

#headerSection2 .nav-link{
    color:white !important;
}

#headerSection2 .active{
    color:black !important;
}



#headerSection h4 {
    display:inline-block;
    vertical-align:central;
    padding:5px 0 0 10px;
    font-weight:bold;
}

#headerSection article {
    display:inline-block;
}

#pcanuLogoHeader {
    vertical-align:central;
    display:inline-block;
}

#headerSection section {
    padding:20px 0 0 20px;
}


#breadcrumb {
    line-height: normal;
}

    #breadcrumb li a::after {
        /*font-family: "Font Awesome\ 5 Free";*/
        position: absolute;
        font-weight: 900;
        font-size: 18px;
        line-height: 10px;
        top: 4px;
        right: 0;
        content: ">";
    }

    #breadcrumb ul {
        margin: 0;
        padding: 0;
        list-style: none;
        align-content: center;
    }

    #breadcrumb li {
        display: inline-block;
        margin: 0 6px 0 0;
        padding: 0;
    }

        #breadcrumb li a {
            display: block;
            position: relative;
            margin: 0;
            padding: 0 20px 0 0;
            font-size: 15px;
        }

        #breadcrumb li:last-child a {
            margin: 0;
            padding: 0;
        }

            #breadcrumb li:last-child a::after {
                display: none;
            }

    #breadcrumb a {
        color: black;
    }

    #breadcrumb li:last-child a {
        color: darkslategrey;
        text-decoration:none;
        pointer-events:none;
    }

/*.content-wrapper {
    margin: 0 auto;
    max-width: 90%;
}*/

/*#footerPage {
    background-color: #f7893f;
    background-image: -ms-linear-gradient(left, #f36200 0%, #fff 100%);
    background-image: -o-linear-gradient(left, #f36200 0%, #fff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=1, startColorstr='#f36200', endColorstr='#ffffff');
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=1, startColorstr='#f36200', endColorstr='#ffffff')";
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #f36200), color-stop(1, #fff));
    background-image: -webkit-linear-gradient(left, #f36200 0%, #fff 100%);
    background-image: linear-gradient(left, #f36200 0%, #fff 100%);
    font-size: .8em;
    height: 100px;
}

#powered {
    height: auto;
    width: 100%;
    padding: 30px 0 20px 0px !important;
    font-size: 1.2em;
}*/

.requiered{
    color:red;
    font-weight:bold;
}


/* ------------------ USER REGISTRY ------------------ */

.canuFeatured {
    background: -webkit-linear-gradient(left, rgba(186,220,248,1), rgba(186,220,248,0)); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(right, rgba(186,220,248,1), rgba(186,220,248,0)); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(right, rgba(186,220,248,1), rgba(186,220,248,0)); /* For Firefox 3.6 to 15 */
    background: linear-gradient(to right, rgba(186,220,248,1), rgba(186,220,248,0)); /* Standard syntax (must be last) */
}

#UserRegistry{
    height: auto;
    width: 100%;
    padding: 40px 80px 80px 70px !important;
}

#UserRegistry p{
    padding:0 0 0 5px;
}

#submitButton{
    padding-top:40px;
    text-align:center;
}

#submitButton .btnWidth{
    width:400px;
}

#PersonalInformation {
    padding-bottom:30px;
}

#JobPlace {
    padding-top:15px;
}

/* ------------------ REGISTRY PAGE ------------------ */

#PatientRegistry {
    height: auto;
    width: 100%;
    padding: 40px 80px 60px 70px !important;
}

.gvIcons{
    color:black;
}

#searchPanel {
    grid-column:span 12;
}

.autoStyle11{
    color:red;
    font-weight:bold;
}

.accordionInstruction {
    font-style:italic;
    font-size:0.9em;
}

.black {
    color:black;
}

.deactivated{
    text-decoration:none;
    pointer-events:none;
    color:dimgrey;
}

.activated{
    color:black;
}

.radioButtonList label{
    margin:3px 10px 0 7px;
}

.fancy-checkbox {
    /*padding-left:20px;*/
    padding:5px 0 15px 10px;
}

.fancy-checkbox label{
    display:inline;
    /*vertical-align:middle;*/
    position:relative;
    padding-left:5px;
    
}

.fancy-checkbox label::before{
    content:"";
    display:inline-block;
    position:absolute;
    width:17px;
    height:17px;
    left:0;
    top:2px;
    margin-left:-20px;
    border: 1px solid #ccc;
    border-radius:3px;
    background-color:#fff;
    -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
}

.fancy-checkbox label::after{
    display:inline-block;
    position:absolute;
    width:16px;
    height:16px;
    left:0;
    top:2px;
    margin-left:-20px;
    padding-left:3px;
    padding-top:1px;
    font-size:11px;
    color:#555;
}

.fancy-checkbox input[type="checkbox"]{
    opacity:0;
    z-index:1;
}

.fancy-checkbox input[type="checkbox"]:disabled + label::before{
    background-color:lightgrey;
    border-color:lightgrey;
}

.fancy-checkbox input[type="checkbox"]:checked + label::after{
    font-family: "FontAwesome";
    content: "\f00c";
}

.fancy-checkbox-primary input[type="checkbox"]:checked + label::before{
    background-color:#0D6EFD;
    border-color:#0D6EFD;
}

.fancy-checkbox-primary input[type="checkbox"]:checked + label::after{
    color:#fff;
}

.fancy-hor-checkbox {
    /*padding-left:20px;*/
    padding:0 0 15px 10px;
}

.fancy-hor-checkbox label{
    display:inline;
    vertical-align:middle;
    position:relative;
    padding-left:5px;
    padding-right:20px;
}

.fancy-hor-checkbox label::before{
    content:"";
    display:inline;
    position:absolute;
    width:17px;
    height:17px;
    left:0;
    top:1px;
    margin-left:-20px;
    border: 1px solid #ccc;
    border-radius:3px;
    background-color:#fff;
    -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
}

.fancy-hor-checkbox label::after{
    display:inline;
    position:absolute;
    width:16px;
    height:16px;
    left:0;
    top:0px;
    margin-left:-20px;
    padding-left:3px;
    padding-top:1px;
    font-size:11px;
    color:#555;
}

.fancy-hor-checkbox input[type="checkbox"]{
    opacity:0;
    z-index:1;
}

.fancy-hor-checkbox input[type="checkbox"]:disabled + label::before{
    background-color:lightgrey;
    border-color:lightgrey;
}

.fancy-hor-checkbox input[type="checkbox"]:checked + label::after{
    font-family: "FontAwesome";
    content: "\f00c";
}

.fancy-hor-checkbox-primary input[type="checkbox"]:checked + label::before{
    background-color:#0D6EFD;
    border-color:#0D6EFD;
}

.fancy-hor-checkbox-primary input[type="checkbox"]:checked + label::after{
    color:#fff;
}

/* Radio button */
.fancy-radiobutton {
    /*padding-left:20px;*/
    padding:10px 0 15px 10px;
}

.fancy-radiobutton label{
    display:inline;
    /*vertical-align:middle;*/
    position:relative;
    padding-left:5px;
    padding-right:20px;
}

.fancy-radiobutton label::before{
    content:"";
    display:inline-block;
    position:absolute;
    width:18px;
    height:18px;
    left:0;
    top:0;
    margin-left:-21px;
    border: 1px solid #ccc;
    border-radius:30px;
    background-color:#fff;
    -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
}

.fancy-radiobutton label::after{
    display:inline-block;
    position:absolute;
    width:16px;
    height:16px;
    left:0;
    top:0;
    margin-left:-2em;
    padding-left:0px;
    padding-top:3px;
    font-size:8px;
    color:#555;
}

.fancy-radiobutton input[type="radio"]{
    opacity:0;
    z-index:1;
}

.fancy-radiobutton input[type="radio"]:disabled + label::before{
    background-color:lightgrey;
    border-color:lightgrey;
}

.fancy-radiobutton input[type="radio"]:checked + label::after{
    font-family: "Font Awesome 5 Free";
    font-weight:900;
    content: "\f111";
}

.fancy-radiobutton-primary input[type="radio"]:checked + label::before{
    background-color:#0D6EFD;
    border-color:#0D6EFD;
}

.fancy-radiobutton-primary input[type="radio"]:checked + label::after{
    color:#fff;
}


table {
    font-size: medium !important;
}


/*------------- MEDIA -------------*/

@-ms-viewport {
    width: device-width;
}

@media (min-width:1200px) {

}

@media (min-width:992px) and (max-width:1199px) {

        /*------------- GENERAL HEADER FOR REGISTRO, REPORT AND USER REGISTRY -------------*/

    #headerSection {
        height: auto;
        width: 100%;
        padding: 20px 20px 20px 20px !important;
        background-color: #996BB3;
        text-align:center;
    }

    #headerSection h4 {
        display:block;
        padding:15px 0 0 15px;
        font-weight:bold;
    }

    #headerSection article {
        display:block;
    }

    #pcanuLogoHeader {
        display:block;
        margin-left:auto;
        margin-right:auto;
        height:70px;
        width:70px;
    }

    #headerSection section {
        padding:10px 0 0 15px;
        text-align:center;
    }

}

@media (min-width:768px) and (max-width:991px) {

    /*------------- GENERAL HEADER FOR REGISTRO, REPORT AND USER REGISTRY -------------*/

    #headerSection {
        height: auto;
        width: 100%;
        padding: 20px 20px !important;
        background-color: #996BB3;
        text-align:center;
    }

    #headerSection h4 {
        display:block;
        padding:15px 0 15px 0;
        font-weight:bold;
    }

    #headerSection article {
        display:block;
    }

    #pcanuLogoHeader {
        display:block;
        margin-left:auto;
        margin-right:auto;
        height:70px;
        width:70px;
    }

    #headerSection section {
        padding:0 0 15px 0;
        text-align:center;
    }

    /*------------- WELCOME TAB -------------*/

    #welcome {
        height: auto;
        width: 100%;
        padding: 75px 40px 60px 40px !important;
        background-color: #B291C4;
    }

    #RegistryLinks {
        height: auto;
        width: 100%;
        padding: 25px 25px 60px 25px !important;
        background-color:#E3D1ED;
        text-align:center;
    }

    #RegistryLinks p {
        padding-left:0;
    }

    /* ------------------ USER REGISTRY ------------------ */

    #UserRegistry{
        height: auto;
        width: 100%;
        padding: 40px 25px 80px 25px !important;
        text-align:center;
    }

    #UserRegistry p{
        padding:0;
    }

    /* ------------------ REGISTRY PAGE ------------------ */

    #PatientRegistry {
        height: auto;
        width: 100%;
        padding: 40px 25px 50px 25px !important;
    }

    #gridViewPanel {
        text-align:center;
    }


}

@media (max-width:767px) {

    /*------------- GENERAL HEADER FOR REGISTRO, REPORT AND USER REGISTRY -------------*/

    #headerSection {
        height: auto;
        width: 100%;
        padding: 20px 10px  !important;
        background-color: #996BB3;
        text-align:center;
    }

    #headerSection h4 {
        display:block;
        padding:15px 0 15px 0;
        font-weight:bold;
    }

    #headerSection article {
        display:block;
    }

    #pcanuLogoHeader {
        display:block;
        margin-left:auto;
        margin-right:auto;
        height:70px;
        width:70px;
    }

    #headerSection section {
        padding:0 0 15px 0;
        text-align:center;
    }

    /*------------- WELCOME TAB -------------*/

    #welcome {
        height: auto;
        width: 100%;
        padding: 75px 40px 60px 40px !important;
        background-color: #B291C4;
    }

    #RegistryLinks {
        height: auto;
        width: 100%;
        padding: 25px 25px 60px 25px !important;
        background-color:#E3D1ED;
        text-align:center;
    }

    #RegistryLinks p {
        padding-left:0;
    }


    /* ------------------ USER REGISTRY ------------------ */

    #UserRegistry{
        height: auto;
        width: 100%;
        padding: 40px 15px 80px 15px !important;
        text-align:center;
    }

    #UserRegistry p{
        padding:0;
    }

    #submitButton .btnWidth{
        width:35%;
    }

    /* ------------------ REGISTRY PAGE ------------------ */

    #PatientRegistry {
        height: auto;
        width: 100%;
        padding: 40px 15px 50px 15px !important;
    }

    .accordionInstruction {
        display:none;
    }

    #gridViewPanel {
        text-align:center;
    }

    .canvas {
        margin: 1em;
    }

}
