﻿@font-face {
    font-family: 'Avenir';
    src: url(../fonts/Avenir.otf);
}

@font-face {
    font-family: 'Agency';
    src: url(../fonts/BureauAgency.otf);
}

.arrow-right {
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 10px solid white;

		-webkit-transform: rotate(0);
		-moz-transform: rotate(0);
		-o-transform: rotate(0);
	transform: rotate(0);

		-webkit-transition: all .2s ease;
		-moz-transition: all .2s ease;
		-o-transition: all .2s ease;
	transition: all .2s ease;
}

.arrow-left {
	transform: rotate(-180deg);
}

body {
    width: 100%;
    height: 100%;
    zoom: 1;
    overflow-x: hidden;
    overflow-y: auto;
    font-family: Avenir;
    padding: 0;
    margin: 0;
    color: white;
}

.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

.dl-horizontal dt {
    white-space: normal;
}

input,
select,
textarea {
    max-width: 280px;
    color: black !important;
}

input[type=submit] {
    color: white !important;
}

input[type=radio],
input[type=checkbox] {
    width: 23px;
    height: 23px;
    border: 2px solid rgb(128, 128, 128);
    border-radius: 4px;
    -webkit-appearance: none;
    -moz-appearance: none;
}
    input[type=radio]:checked,
    input[type=checkbox]:checked {
        background-color: #6e4a23;
    }

    input[type=radio]:focus,
    input[type=checkbox]:focus {
        outline: 0;
    }

a,
a:hover {
    color: #5f643e;
}

.align-right {
  float: right;
}

.content-container {
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 100px;
}

.content {
    transition: margin-left linear .25s; /* should match .content-container-fullscreen transition */
}

.content-nudged {
    /*margin-left: 320px;*/ /* Should match width of sheet-container */
}

.desc-text {
    font-size: small;
    padding: 4px;
    font-weight: normal;
    text-align: justify;
}

.header-small {
    color: #f3a61e;
    padding: 10px;
    font-family: Agency;
    font-size: large;
    font-weight: bold;
    width: 50%;
}

.header-text {
    color: white;
    background-color: black;
    padding: 10px;
    font-size: large;
    font-weight: bold;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-transform: uppercase;
    border-radius: 5px;
    border: 2px solid rgba(255,255,255,.5);
}

.logo {
    margin-top: 4px;
    margin-bottom: 5px;
    width: 200px;
}

.option-header {
    font-family: Agency;
    font-size: large;
    color: #f3a61e;
}

.page-background {
    background-image: url(../img/bg.png);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

#page-content {
    max-width: 800px;
    margin: auto;
}

.page-text {
    color: white;
    font-size: small;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    padding: 4px;
    font-weight: normal;
    text-align: center;
    max-width: 700px;
}

.panel {
    background-color: #323232;
    color: white;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5px;
    border-radius: 5px;
    padding: 5px;
    border: 2px solid rgba(255,255,255,0.5);
}

.panel div {
    padding: 5px;
}

.path-choice {
    background-color: #000000;
    opacity: .7;
    padding: 10px;
    text-align: justify;
    font-size: small;
    margin-bottom: 20px;
    cursor: pointer;
    box-shadow: 0 0 6px 3px rgba(0,0,0,.4);
    border-radius: 10px;
}
    .path-choice:hover {
        opacity: .9;
    }

.selection-header {
    color: white;
    font-size: large;
    font-weight: bold;
}

.shadow-box {
    box-shadow: 0px 0px 10px #000;
}

table.selection-list {
    width: 100%;
}
    table.selection-list td {
        padding: 5px;
        border-bottom: 1px solid gray;
    }

table.aspect-list td:first-child {
    width: 50%;
}

@media screen and (min-width: 0px) and (max-width: 800px) {
    .desc-text {
        font-size: small;
    }

    .header-text {
        text-align: center;
        font-size: 14px;
    }

    .logo {
        width: 280px;
    }

    table.selection-list td {
        font-size: x-small; 
    }
}