html, body {
    width: 100%;
    min-height: 100%;
    padding: 0.5rem;
    scroll-behavior: smooth;
}

#logo {
    width: 90%;
    margin: auto;
    display: block;
    opacity: 0;
}

.store-icon {
    width: 100px;
    margin: 10px;
}

.footer-blank {
    height: 10vh;
}

hr {
    background-color: deepskyblue;
}

#logo-underline {
    width: 0;
}

.cotfinder-footer {

    min-height: 3%;
    width: calc(100% - 2rem);
    background-color: rgba(255,255,255,0.75);
    background-image: url(../resources/AMZingLogo-3.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    position: fixed;
    bottom: 0;
    z-index: 99;
}

.drawer {
    position: fixed;
    height: 100%;
    width: 300px;
    padding: 0.5rem;
    top: 0;
    left: -300px;
    background-color: rgba(0,0,0,0.85);
    color: white;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: 1s;
    opacity: 0;
    z-index: 100;
}

.drawer-toggler {
    position: relative;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    text-align: center;
    left: 300px;
    background-color: rgba(0,0,0,0.85);
    transform: rotate(90deg);
    transform-origin: 3%;
    padding: 0.25rem;
    width: 50%;
    
}

.drawer-toggler:hover {
    cursor: pointer;
    background-color: rgba(50,50,50,0.85);
}

.drawer-toggler:active {
    background-color: rgba(250,250,250,1);
    color: #333;
}

.drawer-content {
    position: relative;
    top: -10px;
    height: calc(100% - 1.5rem);
    width: 100%;
    overflow-y: scroll;
}


.drawer-btn {
    width: 95%;
}

#greeting {
    padding: 0.5rem;
    border-radius: 0.5rem;
    background-color: #333;
    text-align: center;
    margin-bottom: 0.5rem;
}

#greeting:empty {
    padding: 0;
    margin-bottom: 0;
}

button {
    margin: 1px;
}

#map {
    height: 400px;
    border-radius: 10px;
    border: solid 0.5px #333;
    opacity: 0;
}

#key {
    opacity: 0;
}

#map:empty {
    height: 0;
    border: none;
}

.page-content *{
    transition: 1s;
}
.page-content>div {
    display: none;
    
}

.page-content > div.active {
    display: block;
    padding: 0.5rem;
    border-radius: 10px;
    border: solid 0.5px #333;
    margin-top: 1rem;
    
}

.logged-in {
    display: none;
}

.not-logged-in {
    display: inherit;
}

.hospital-card {
    width: calc(100% - 1rem);
    margin: 0.5rem;
    border-radius: 10px;
    padding: 0.5rem;
    border: solid 0.5px #333;
    box-shadow: 0px 1px 2px 2px rgba(0,0,0,0.25);
}

.hospital-card:hover {
    cursor: pointer;
    box-shadow: 1px 1px 2px 2px rgba(0,0,0,0.75);
}

.hospital-card:active {
    cursor: pointer;
    box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.75);
    background-color: #ccc;
}

.hospital-card:hover .hospital-card-title {
    color: darkblue;
}

.hospital-card-title {
    color: deepskyblue;
}

#change-hospital-div {
    display: none;
}

table, thead, tbody {
    border: solid 1px #333;
    width: 100%;
}

th, td {
    border: solid 0.5px #666;
    padding: 0.25rem;
    text-align: center;
}

th {
    background-color: aquamarine;
}

.sortable:hover {
    cursor: pointer;
}

.sortable:active {
    background-color: darkseagreen;
}

.card-block {
    overflow: scroll;
}

.alert-div {
    position: relative;
    left: 254px;
    top: -50px;
    height: 30px;
    width: 30px;
    text-align: center;
    border-radius: 50%;
    background-color: dodgerblue;
    background-size: cover;
    transition: 0.5s;
    font-size: 0.9rem;
    vertical-align: middle;
}

.alert-div:empty {
    display: none;
}

.alert-div:hover {
    cursor: pointer;
    background-color: royalblue;
}

.alert-div:active {
    background-color: blue;
}

input:out-of-range {
    background-color: #F99191;
}

input {
    min-width: 3rem;
    min-height: 2rem;
}

.radio-controlled {
    display: none;
}

.form-group.form-group {
    padding-left: 1rem;
}

.entitlement-tab {
    display: none;
}

.entitlement-tab.allow {
    display: block;
}

.switch {
    display:inline-block;
    width: 50px;
    height: 25px;
    vertical-align: middle;
    border-radius: 13px;
    border: solid 0.5px #aaa;
    transition: 1s;
}

.switch-toggler {
    width: 24px;
    height: 24px;
    background-color: #aaa;
    border-radius: 12px;
    border: solid 0.5px #fff;
    transition: 1s;
}

.switch[data-on="false"] {
    background-color: #555;
}

.switch[data-on="false"] .switch-toggler {
    float: left;
}

.switch[data-on="true"] {
    background-color: #0f0;
}

.switch[data-on="true"] .switch-toggler {
    float: right;
    background-color: #fff;
}

.on-call {
    color: #444;
    transition: 1s;
}

#oncall-switch[data-on="true"] ~ .on-call {
    color: #fff;
}
.card {
    margin-bottom: 0.5rem;
}

.grey-divider {
    width: 95%;
    margin: auto;
    background-image: url(../resources/divider.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding-left: 3rem;
 
}

.grey-divider>span {
    padding: 0 1rem;
    background-color: #fff;
    color: #999;
}

.grey-divider + div:empty {
    display: none;
}

div:empty + hr {
    display: none;
}


button {
    text-overflow: ellipsis;
}

.toggle-hide {
    transition: 1s;
    height: 0px;
    display: none;
}

.icon {
    width: 30px;
    max-height: 30px;
}

input[type=date], input[type=time] {
    min-width: 10rem;
}

.faq-link {
    font-size: 1.5rem;
}

.faq-link:hover {
    color: green;
    cursor: pointer;
}

.faq-info {
    display: none;
    padding: 1rem;
    border-radius: 10px;
    overflow: scroll;
}

.faq-info.active {
    display: block;
    border: solid 0.5px #333;
}

.ultimate-btn {
    display: none;
}

#guideline {
    overflow-x: hidden;
    text-align: justify;
}

.toggler-section {
    display: block;
    margin: auto;
}
.toggler-section .body {
    display: none;
    transition: 1s;
    word-wrap: break-word;
}

.toggler-section .header {
    padding: 0.5rem;
    color: #0066ff;
    background-color: #efefef;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border: solid 0.5px #ddd;
    margin-top: 1rem;
}

.toggler-section .header:hover {
    cursor: pointer;
} 

.toggler-section.active > .body {
    display: block;
    padding: 0.5rem;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border: solid 0.5px #ddd;
}

.toggler-section h1, .toggler-section h2, .toggler-section h3, .toggler-section h4, .toggler-section h5, .toggler-section h6 {
    color: #0066ff;
    padding: 0.5rem 0.5rem 0px 0.5rem;
}

.toggler-section label {
    color: #0066ff;
}