﻿/* Copyright 2019, Sciamble Corp. All Rights Reserved. We will take legal action against those who copy our HTML content, CSS style sheets and JavaScript functions. */

.bluelink {
    color: dodgerblue;
}

#body-wrapper {
    min-height: calc(100vh - 142px); /* this pushes the footer to be at bottom of screen when content is not sufficient enough to fill the whole screen. */
}

#body-wrapper-banner { /* if page has top banner, compensate for its height .*/
    min-height: calc(100vh - 142px - 56px);
}

#banner {
    margin-top: 46px;
    margin-bottom: 24px;
    background-repeat: repeat-x;
    background-image: url("https://sciamble.com/Images/Banner/Banner.png");
    height: 56px;
}

#footer {
    background-color: lightgrey;
    padding-top: 24px;
}

.disclaimer {
    color: gray;
    font-size: 12px;
}

/* centers image to page. */
#hourglass {
    margin: auto;
    position: absolute;
    top: 50px;
    left: 50px;
    bottom: 50px;
    right: 50px;
    z-index: 5;
    /*background-color: white;*/
}

/* For accessibility. Do not make display none. Then screen reader will ignore it too. Rather make the element 1px with -1px magrin so effectily does not visually exist on screen but screen reader can pick it up. */
.visual-hidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

#socialmedia-hr1, #socialmedia-hr2 {
    display: block;
    width: 100%;
    color: black;
    background-color: black;
    height: 2px;
    border: none;
}

.socailmediaLink {
    padding-left: calc(1vw + 5px);
    padding-right: calc(1vw + 5px);
}

.handCursonOnHover:hover {
    cursor: pointer;
}

.collapsed {
    display: none;
}

.expanded {
    display: block;
}

.img-text-inline {
    margin: 0;
    vertical-align: middle;
}

ul.bullet-list {
    padding-left: 24px;
}

.bullet-list li {
    list-style-type: disc;
}

@media screen and (max-width: 1000px) {
    .col-container-reverse .pointsBigBold, .col-container-reverse .pointsSmall {
        padding-left: 0;
    }
}

@media print {
    #footer {
        display: none;
    }
}
