/*

//Key Colours
    White        - #fff
    Light Grey   - #d9d9d9
    Light Blue   - #57e1ca
    Lighter Blue - #0fffff
    Dark Grey    - #262626

*/

html, body {
    margin: 0;
    padding: 0;
    background-color: #d9d9d9;
    width: 100vw;
}

.small-box {
    position: relative;
    display: inline-block;
    background-color: #262626;
    width: 25vw;
    height: 25vw;
    margin: 0 auto;
    background-size: cover;
    overflow: hidden;
    cursor: pointer;
    box-sizing: border-box;
    transition: all 200ms ease-in-out;
}

.content img {
    width: 100%;
    transition: all 200ms ease-in-out;
    box-sizing: border-box;
}

.box-outline {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-sizing: border-box;
    border: 0px solid #57e1ca;
    transition: all 200ms ease-in-out;
    z-index: 100;   
    pointer-events: none;
}


.thumb-text {
    background-color: #262626;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    transition: all 150ms ease-in-out;
    transform: translateY(100%);
    pointer-events: none;
}

.thumb-text h1 {
    margin: 0;
    text-align: right;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-size: 2em;
    color: #fff;
    margin-bottom: 20px;
}

.thumb-text hr {
    width: 50%;
    border: 0;
    border-top: 5px solid #57e1ca;
    margin: 0 0 20px 50%;
}

.thumb-text p {
    margin: 0;
    text-align: right;
    font-family: 'Raleway', sans-serif;
    font-size: .9em;
    color: #fff;
    margin-bottom: 20px;
}

.thumb-text-content {
    width: 19vw;
    margin: 30px auto calc(1vw + 50px) auto;
}


.quick-view {
    width: 100vw;
    background-color: #262626;
    height: 100vh;
    overflow: hidden;
}

.quick-view img {
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto;
    display: block;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.overlay {
	width: 100%;
    height: 100%;
    z-index: 1000;
}

.overlay-darken {
    position: fixed;
	width: 100%;
    height: 100%;
    background-color: #262626;
    opacity: 0.75;
    cursor: pointer;
    z-index: 1000;
}

.popup-overlay {
    margin: 0 auto;
    position: absolute;
    display: block;
    width: 30%;
    min-width: 400px;
    background-color: #d9d9d9;
    z-index: 2000;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.overlay-footer {
    position: relative;
    height: 70px;
    background-color: #262626;
    border-top: 8px solid #57e1ca;
}

.overlay-footer img {
    position: absolute;
    margin: 0 auto;
    width: 20%;
    min-width: 75px;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
/*    border: 1px solid aqua;*/
}

.overlay-text {
    position: relative;
    width: 80%;
    height: auto;
    left: 50%;
    transform: translateX(-50%);
/*    border: 1px solid red;*/
}

.overlay-text h1 {
    margin: 30px 0 20px 0;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 2em;
    color: #262626;
}

.overlay-text hr {
    width: 25%;
    border: 0;
    border-top: 5px solid #57e1ca;
}

.overlay-text p {
    margin-top: 20px;
    text-align: center;
    font-family: 'Raleway', sans-serif;
    margin-bottom: 30px;
}