﻿#pageLeft {
    display: none;
}

#pageRight {
    width: 100%
}

#contentLayoutLeft {
    max-width: 100%;
}

div[id*='PlaceHolderMain'] {
    text-align: center;
}

#pageTitle {
    text-align: center;
    font-size: 3em
}

.column h3 {
    color: #98a0a6;
    text-align: center;
    margin: 0;
    font-size: 2em;
}

.column h1 {
    font-weight: bold;
    margin: .5em 0;
}

.column [id*="ZoneCell"] {
    padding: 8px;
}

.column.center>table>tbody>tr>[id*="ZoneCell"] {
    border-right: 2px #c2d5df solid;
    border-left: 2px #c2d5df solid;
}

.column>table>tbody>tr>[id*="ZoneCell"] {
    border-bottom: 15px #f3f3f3 solid;
    border-top: 15px #f3f3f3 solid;
}

.columnWrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    background-color: #f3f3f3;
    border-radius: 10px;
    padding: 10px;
    margin: 10px;
}

.column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: stretch;
        -ms-flex-pack: stretch;
            justify-content: stretch;
    min-width: 33.3%
}


.column .contentBox {
    position: relative;
    min-height: 350px;
    text-align: center;
    padding: 0 20px;
}

.column .btn {
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 90%;
    line-height: 1.75
}

.moreInfo {
    cursor: pointer;
    font-style: italic;
    -webkit-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
    border-bottom: #c2d5df solid;
    border-bottom-width: 0;
    display: inline-block;
    padding: 3px;
    margin-bottom: 3em
}

.moreInfo:hover {
    border-bottom-width: 1px;
    background-color: #e8e8e8;
}

.popOut {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    z-index: 999;
    background-color: #fff;
    padding: 20px;
    width: 80%;
    -webkit-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
    max-width: 600px;
    text-align: left;
    bottom:  0;
    -webkit-box-shadow: 0px 0px 40px -13px black;
    box-shadow: 0px 0px 40px -13px black;
    overflow-y: scroll;
}

.__closeBox {
    position: absolute;
    top: 0;
    right: 24px;
    text-align:right;
    background-color: black;
    color: white;
    padding: .75em;
    border-radius: 100px;
    width: .75em;
    height: .75em;
    cursor: pointer;
    -webkit-box-shadow: 0px 0px 10px -2px black;
    box-shadow: 0px 0px 10px -2px black;
}

.__closeBox::after {
    content: " ";
    display: block;
    background-color: #fff;
    width: 2px;
    position:  absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    transform: rotate(45deg);
}

.__closeBox::before {
    content: " ";
    display: block;
    background-color: #fff;
    width: 2px;
    position:  absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    transform: rotate(-45deg);
}

@media screen and (max-width: 768px) {
    .columnWrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column;
        flex-flow: column
    }
    .column>table>tbody>tr>[id*="ZoneCell"] {
        border: none !important;
    }
    .column {
        width: 100% !important;
    }
}
