:root {
    --accent: #5b4baa;
    --accent_rgb: 91, 75, 170;
    --sub-accent: #c35d7f;
    --sub-accent_rgb: 195, 93, 127;
    --color-1: #48a3a5;
    --color-1_rgb: 72, 163, 165;
    --page-bg: rgba(91, 75, 170, 0.04)
}

html {
    font-size: 62.5%
}

body {
    color: #535353;
    margin: 0 auto;
    padding: 0;
    text-align: center;
    font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 14px;
    background-color: var(--page-background);
    background-image: url(../img/white_wall_hash.png);
    background-repeat: repeat;
    background-color: var(--page-bg);
}

img {
    max-width: 100%;
    vertical-align: top
}

a {
    text-decoration: none;
    border: none;
    outline: none
}

a:focus,
a:hover,
a:active {
    outline: 0;
}

.outer {
    margin: 0 auto
}

.content {
    background-color: rgba(var(--accent_rgb), 0.02);
}

.header {
    width: 100%;
    height: 30vh;
    display: table;
    background-color: rgba(var(--color-1_rgb), 0.2);
    position: relative;
    border-bottom: 2px solid var(--accent);
}

.content .logo {
    width: 100%;
}

.content .logo img {
    max-height: 18vh;
    border-radius: 50%;
    border: 2px solid var(--accent);
}

.content .details a {
    color: var();
    font-weight: bold;
    text-align: left;
    display: block;
    border-radius: 8px;
    text-align: center;
}

.content .details a:hover,
.content .details a:active {
    transform: scale(1.02);
}

.content .details a i {
    position: absolute;
    left: 14px;
    color: var(--sub-accent);
    margin-top: 3px;
}

.heading_div {
    text-align: center;
    display: table-cell;
    vertical-align: middle;
    position: absolute;
    bottom: -24%;
    width: 100%;
}

.heading {
    font-size: 20px;
    font-weight: bold;
    color: var(--accent);
    margin-bottom: 14px;
    padding-bottom: 6px;
    display: inline-block;
    font-family: Arial, Helvetica, sans-serif;
}

.subhead {
    font-size: 14px;
}

hr.divider {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(var(--accent_rgb), 0.75), rgba(0, 0, 0, 0));
}

.controls {
    width: 100%;
    height: 70vh;
    overflow: auto;
}

.details {
    display: table;
    margin: 0 auto;
    margin-top: 10vh;
}

.main {
    display: table-cell;
    vertical-align: bottom;
}

.menu_container {
    height: 16vh;
    display: table;
    margin: 0 auto;
    width: 75vw;
    max-width: 500px;
}

.menu_cell {
    display: table-cell;
    vertical-align: bottom;
    /* background-color: rgba(var(--color-1_rgb), 0.2); */
}

.menu_outer {
    display: grid;
    grid-auto-columns: 1fr;
    grid-auto-flow: column;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    background-color: rgba(var(--color-1_rgb), 0.2);
    border-radius: 12px;
}

.menu_outer a.menu {
    padding: 8px 4px;
}

.menu_outer a.menu .menu_icon {
    height: 26px;
    width: 26px;
    line-height: 24px;
    color: whitesmoke;
    background-color: var(--accent);
    border-radius: 10px;
    margin-right: 4px;
    margin: 0 auto;
}

.menu_outer a.menu .menu_icon i {
    font-size: 12px;
}

.menu_outer a.menu .menu_text {
    color: var(--sub-accent);
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    margin-top: 6px;
}

.more_menu .menu_title {
    color: var(--sub-accent);
}

.menu_outer a:active,
.menu_outer a:focus {
    outline: 0;
    background-color: rgba(var(--accent_rgb), 0.2);
}

.menu_outer a .menu_icon:active,
.menu_outer a .menu_icon:focus {
    outline: 0;
    background-color: var(--accent);
}

.info {
    width: 75vw;
    max-width: 500px;
    /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); */
    color: var(--sub-accent);
    text-align: center;
    /* border-radius: 6px; */
    padding: 8px;
}

.info .icon,
.info .dtl {
    display: inline-block;
    vertical-align: middle;
    padding: 4px;
    text-align: center;
}

.info .dtl {
    width: 78%;
    text-align: center;
}

.info .dtl a {
    color: var(--sub-accent);
}

.info .icon {
    text-align: center;
    height: 20px;
    width: 20px;
    line-height: 20px;
    border-radius: 50%;
    color: var(--accent);
    font-size: 18px;
}

.info:active,
.info:focus {
    transform: scale(1.02);
}

#moreMenu {
    display: none;
}

.more_menu {
    position: relative;
    background-color: rgba(var(--accent_rgb), 0.02);
    height: 100vh;
    -webkit-animation: slide-in-fwd-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-in-fwd-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@-webkit-keyframes slide-in-fwd-bottom {
    0% {
        -webkit-transform: translateZ(-1400px) translateY(800px);
        transform: translateZ(-1400px) translateY(800px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateZ(0) translateY(0);
        transform: translateZ(0) translateY(0);
        opacity: 1;
    }
}

.more_menu .menu_outer {
    padding: 12px 12px 8px;
    display: block;
    background-color: transparent;
}

.more_menu .menu_outer .info {
    margin: 12px auto;
}

.back_btn_div {
    margin-top: 12px;
    display: block;
    position: absolute;
    bottom: 16px;
    width: 96%;
    margin-left: -5px;
}

.back_btn_div a {
    padding: 8px;
    text-align: center;
    background-color: var(--accent);
    color: white;
    font-weight: bold;
    border-radius: 0;
    /* margin: 0 auto; */
    border-radius: 3px;
    font-size: 14px;
    /* width: 90%; */
    max-width: 500px;
    display: block;
}

.back_btn_div i {
    margin-right: 4px;
}

.back_btn_div a:active,
.back_btn_div a:hover {
    background-color: rgba(var(--accent_rgb), 0.1);
}

a.back_link {
    position: absolute;
    top: 8px;
    left: 8px;
    font-size: 12px;
    z-index: 999;
}

.back_link i {
    margin-right: 4px;
    height: 32px;
}

@media (min-width:0px) {
    .heading {
        font-size: 18px;
    }
    .info {
        padding: 4px;
    }
    .content .logo img {
        max-height: 16vh;
    }
}

@media (min-width:400px) {
    .heading {
        font-size: 20px;
    }
    .info {
        padding: 6px;
    }
    .content .logo img {
        max-height: 18vh;
    }
}

@media (min-width:641px) {
    .heading {
        font-size: 22px;
    }
}

@media (min-width:961px) {}