/* ============================================ */
/* BASE STYLES (apply to all screen sizes) */
/* ============================================ */

/* Modal Window - Flexbox */
.modalDialog {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 99999;
    opacity: 0;
    transition: opacity 400ms ease-in;
    pointer-events: none;
}

.modalDialog:target {
    opacity: 1;
    pointer-events: auto;
}

.modalDialog > div {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow-x: hidden;
}

/* General Elements */
img, video {
    max-width: 100%;
    vertical-align: bottom;
}

/* Close Button */
.close {
    z-index: 10000;
    background-color: #fff;
    position: absolute;
    top: 20px;
    right: 19px;
    width: 50px;
    height: 50px;
    text-decoration: none;
    background-image: url(../img/close-X.svg);
    background-repeat: no-repeat;
}

.close:hover {
    background-color: #000;
    background-position: 0 -50px;
}

/* Tracy Video */
.tracyVideo {
    max-width: 1200px;
    color: #fff;
    text-align: center;
    line-height: 30px;
    background-color: rgba(0, 0, 0, 1);
    padding: 10px 10px 20px;
}

/* Video Container */
.vidContainer {
    max-width: 1200px;
    background-color: #06242e;
		background-image: url("../img/vidImg02.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

/* List Styles */
.ul-box-one {
    list-style: none;
}

.ul-box-one a {
    color: #b1b1b1;
    text-decoration: none;
}

.ul-box-one a:hover {
    color: #FFF;
}

.ul-box-one li:before {
    content: "○";
    font-size: 13px;
    padding-top: 5px;
    padding-right: 10px;
}

/* Center Icon */
.centerIcon {    
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Icon Container */
.s-icon-container {
    padding: 40px 0 0 25px;
}

/* Sponsor Links */
.mcknight-artist a,
.andrea-schwartz-gallery a,
.mnStateArts a,
.mnStateArts-02 a {
    display: block;
    height: 70px;
    width: 125px;
    background-color: #333;
    margin-bottom: 17px;
    border-radius: 0px;
    background-repeat: no-repeat;
}

.mcknight-artist a {
    background-image: url(../img/mcknight-artist-fellowships-final-smaller.png);
}

.mcknight-artist a:hover,
.andrea-schwartz-gallery a:hover {
    background-position: 0 -70px;
}

.andrea-schwartz-gallery a {
    display: none;
    background-image: url(../img/andrea-schwartz-gallery-2-final-smaller.png);
}

.mnStateArts a,
.mnStateArts-02 a {
    height: 90px;
    background-color: #fff;
}

.mnStateArts a:hover,
.mnStateArts-02 a:hover {
    opacity: 0.7;
}

.mnStateArts a:active,
.mnStateArts-02 a:active {
    color: #000;
}

.mnStateArts-02 a {
    background-image: url(../img/MNLegacy.png);
    background-position: center;
    background-size: cover;
}

/* Text Styles */
#item-32 {
    font-size: 13px;
    line-height: 18px;
    text-align: center;
    color: #0D0D0D;
    font-weight: bold;
}

/* MN Arts Board */
.mnArtsBoard {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 30px;
    margin: 0;
    color: #fff;
}

.ad-wrapper-copy {
    max-width: 720px;
    margin: 0 auto;
    padding-bottom: 30px;
}

.ad-wrapper {
    max-width: 720px;
    background-color: #262626;
    padding: 5px 0 0 5px;
    margin: 0 auto;
}

.ad-wrapper-01, 
.ad-wrapper-02 {
    width: 230px;
}

.ad-01 a, 
.ad-02 a, 
.ad-03 a, 
.ad-04 a, 
.ad-05 a {
    float: left;
    margin: 0 5px 5px 0;
}

.ad-01 a:hover, 
.ad-02 a:hover, 
.ad-03 a:hover, 
.ad-04 a:hover, 
.ad-05 a:hover {
    opacity: 0.5;
}

/* Miscellaneous */
#thisThingTimMade {
    background-color: rgba(0, 255, 255, 0);
    padding: 10px;
    margin: 10px;
}

#linkColor:hover {
    color: #fff;
}

#takeAwaySomeStyle {
    padding: 0;
    margin: 0;
    border: 0;
}

/* ============================================ */
/* MEDIA QUERIES (mobile-first approach) */
/* ============================================ */

/* Small devices (0px - 700px) */
@media all and (max-width: 700px) {
.close {
top: 20px;
right: 19px;
}
    
    .vidContainer {
        height: 200px;
    }
    
    /* MN Arts Board - Mobile */
    .mnArtsBoard {
        max-width: 800px;
    }
    
    .ad-wrapper-00, 
    .ad-wrapper-01, 
    .ad-wrapper-02 {
        margin: 0 auto;
    }
    
    #hide-this-ad-wrapper-copy {
        display: none;
    }
}

/* Medium devices (700px - 1000px) */
@media all and (min-width: 700px) {
    .vidContainer {
        height: 400px;
    }
}

/* Large devices (1000px+) */
@media all and (min-width: 1000px) {
    .vidContainer {
        height: 500px;
    }
    
    /* MN Arts Board - Desktop */
    .mnArtsBoard {
        width: 800px;
    }
    
    .ad-wrapper-copy {
        font-size: 17.22px;
        line-height: 28px;
    }
    
    .ad-wrapper-01, 
    .ad-wrapper-02 {
        float: left;
    }
}

/* Large desktop (800px+) */
@media all and (min-width: 800px) {
    .andrea-schwartz-gallery a {
        display: block;
    }
}