/* Background || Makes it look fancy. */

@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700');
body {
    background: rgb(230, 230, 233);
    font-family: 'Open Sans', sans-serif;
    overflow-x: hidden;
	min-width: 400px;
	margin: 0;
}
/* Feedback Circle || Appears when player clicks on screen when mobile support is activated.  */

.clickSize {
    position: fixed;
    width: 80px;
    height: 80px;
    cursor: default;
    z-index: 2000;
    pointer-events: none;
}
.clickCircle {
    position: relative;
    border-radius: 50%;
    width: 0%;
    height: 0%;
    margin: auto;
    transition: .45s;
    background: black;
}
/* Top Menu || Handles the menu bar. */

.top-menu {
    position: fixed;
    height: 45px;
    width: 100%;
    background: rgb(250, 250, 250);
    top: 0;
    left: 0;
    z-index: 1005;
    padding: 0 5px;
    box-shadow: 0px 0px 0px 2px rgba(0, 0, 0, 0.2);
}
.feedback {
    width: 100vw;
    top: 0;
    left: 0;
    position: fixed;
    z-index: 2;
    transition: background .2s;
    display: block;
}
.feedback.off {
    background: rgba(0, 0, 0, 0);
    height: 0;
}
.feedback.on {
    background: rgba(0, 0, 0, .3);
    height: 100vh;
}
.menu-size {
    width: 1145px;
    margin: 0 auto;
}
.menu-button {
    position: relative;
    display: inline-block;
    font-size: 14px;
    padding: 15px 0 0 0;
    top: 0;
    height: 30px;
    width: 80px;
    text-align: center;
    transition: 0.2s opacity;
    opacity: 0.7;
    cursor: pointer;
    color: rgb(20, 20, 20);
    transition: .2s;
}
.menu-button.right {
    float: right;
}
.underline-menu {
    bottom: -2px;
    position: absolute;
    opacity: 0;
    height: 0px;
    width: 100%;
    background: rgb(0, 128, 255);
    transition: .2s;
}
.menu-button:hover {
    background: rgb(256, 256, 256);
    color: rgb(0, 128, 255);
}
.menu-button:active {
    top: 2px;
    height: 28px;
}
.menu-button:hover .underline-menu {
    opacity: 1;
    height: 2px;
}
.menu-dropdown {
    display: inline-block;
}
.menu-dropdown .icon-menu {
    display: block;
    font-size: 0;
}

.icon-info {
    position: relative;
    font-size: 19px;
    top: -3px;
}
.information-page {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    display: flex;
    align-items: center;
}
.information-page .info {
    text-align: justify;
    display: block;
    position: relative;
    width: 500px;
    margin: 0 auto;
    height: auto;
    font-size: 14px;
    padding: 10px;
    color: rgb(70, 70, 70);
    border-style: solid;
    border-width: 1px 1px 2px 1px;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgb(0, 128, 255) rgba(0, 0, 0, 0.1);
    transition: .3s;
    background: rgb(256, 256, 256);
    z-index: 5;
}
.information-page .info.off {
    display: none;
}
.information-page .info.on {
    animation: fade-in;
    animation-duration: 0.3s;
    box-shadow: 0 0 12px 0px rgba(0, 0, 0, .2);
}
.information-page .info a {
    transition: .2s;
    color: rgb(56, 56, 156);
    text-decoration: none;
    font-weight: bold;
}
.information-page .info a:hover {
    color: rgb(256, 56, 30);
}
/* Pages || Assets used to display information & results. */

.content-box {
    width: 1145px;
    padding: 62px 0 0 0;
    margin: 0 auto;
}
.placeholder {
    display: inline-block;
    height: 13px;
    width: 120px;
    background-color: rgb(0, 0, 0);
    border-radius: 5px;
    opacity: 0.075;
	animation: loader;
	animation-duration: 5s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}
.result-placeholder {
    display: inline-block;
    height: 10px;
    width: 50px;
    background-color: rgb(0, 0, 0);
    border-radius: 3px;
    opacity: 0.075;
	animation: loader;
	animation-duration: 5s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}
.middle-content {
    position: absolute;
    display: block;
    width: 1142px;
    margin: 0 auto;
    background-color: rgb(253, 253, 253);
    border-style: solid;
    border-width: 1px 1px 2px 1px;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.1);
}
.middle-content .top-title {
    width: 100%;
    height: 23px;
    display: inline-block;
    font-weight: normal;
    padding: 5px 0;
    border-style: solid;
    border-width: 0 0 1px 0;
    border-color: rgba(0, 0, 0, 0.1);
}
.middle-content .top-title span {
    color: rgb(0, 48, 130);
    font-size: 16px;
    padding: 0 7px;
    text-align: left;
}
.middle-content .top-title span i {
    color: rgb(90, 90, 90);
    font-style: normal;
}
.middle-content .top-title div {
    display: block;
    float: right;
    color: rgb(140, 140, 140);
    font-size: 14px;
    padding: 3px 7px 0 0;
}
.middle-content .bottom-title {
    width: 100%;
    height: 25px;
    display: inline-block;
    font-weight: normal;
    padding: 5px 0;
    cursor: default;
}
.page-buttons {
    position: relative;
    width: 100%;
    text-align: center;
}
.page-buttons .page {
    display: inline-block;
    font-size: 14px;
    height: 16px;
    padding: 2px 6px;
    text-align: center;
    margin: 0 auto;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.page-buttons .page i {
    font-size: 12px;
}
.page-buttons .ellipsis {
	display: inline-block;
    font-size: 14px;
}
.page-buttons .ellipsis.off {
	display: none;
}
.page-buttons .page.on {
    background: rgb(246, 246, 246);
    color: rgb(120, 120, 120);
    border-style: solid;
    border-width: 1px 1px 2px 1px;
    border-color: rgba(0, 0, 0, 0.07) rgba(0, 0, 0, 0.07) rgba(0, 0, 0, 0.14) rgba(0, 0, 0, 0.07);
    cursor: pointer;
}
.page-buttons .page.on:hover {
    background: rgb(236, 236, 236);
    border-color: rgba(0, 0, 0, 0.12) rgba(0, 0, 0, 0.12) rgba(0, 0, 0, 0.24) rgba(0, 0, 0, 0.12);
}
.page-buttons .page.on:active {
    background: rgb(226, 226, 226);
    color: rgb(120, 120, 120);
    padding: 2px 6px 3px 6px;
    border-style: solid;
    border-width: 1px;
    border-color: rgba(0, 0, 0, 0.14);
    cursor: pointer;
}
.page-buttons .page.active {
    background: rgb(235, 235, 235);
    color: rgb(160, 160, 160);
    padding: 2px 6px 3px 6px;
    border-style: solid;
    border-width: 1px;
    border-color: rgba(0, 0, 0, 0.1);
    cursor: default;
}
.middle-content .results-display .result {
    height: 75px;
    width: 100%;
    transition: 0.1s;
    border-style: solid;
    border-width: 0 0 1px 0;
    border-color: rgba(0, 0, 0, 0.1);
	position: relative;
	overflow: hidden;
}
.middle-content .results-display .result-loading {
    width: 100%;
    border-style: solid;
    border-width: 0 0 1px 0;
    border-color: rgba(0, 0, 0, 0.1);
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
}
.middle-content .results-display .result-error {
    width: 100%;
    border-style: solid;
    border-width: 0 0 1px 0;
    border-color: rgba(0, 0, 0, 0.1);
    text-align: center;
    color: rgb(226, 73, 73);
    padding: 20px 10px;
    box-sizing: border-box;
}
.middle-content .results-display .result:hover {
    background-color: rgb(249, 249, 249);
}
.middle-content .results-display .result .url-button {
    position: absolute;
    font-size: 16px;
    opacity: 0;
    transition: 0.3s;
    right: 0;
    margin-right: 20px;
    top: 0;
    float: right;
    text-decoration: none;
    color: rgb(0, 48, 130);
    padding: 0 20px;
    height: 100%;
    line-height: 75px;
    vertical-align: middle;
}
.middle-content .results-display .result .icon-right-open {
    position: relative;
    font-size: 20px;
    top: 2px;
}
.result:hover .url-button {
    opacity: 0.5 !important;
    margin-right: 0px !important;
}
.result .left-panel {
    display: inline-block;
    width: 150px;
    height: 75px;
}
.result .right-panel {
    display: inline-block;
    padding-left: 10px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}
.result .results-table {
    font-size: 12px;
    white-space: nowrap; 
    overflow: hidden;
    text-overflow: ellipsis;
}
.result .results-table i {
    color: rgba(0, 0, 0, .6);
}
.result .results-table .table-side {
    color: rgb(0, 121, 211);
    width: 80px;
}
.result .flag {
    position: relative;
    text-align: center;
    width: 100%;
    padding-top: 4px;
    box-sizing: content-box;
    height: 32px;
}
.result .country {
    position: relative;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
	box-sizing: border-box;
    padding: 0 4px;
    font-size: 13px;
    color: rgb(0, 121, 211);
    white-space: nowrap; 
    overflow: hidden;
    text-overflow: ellipsis;
}
.result .chance {
    text-align: center;
    width: 100%;
    position: relative;
    padding: 2px 0 0 0;
    font-size: 11px;
    white-space: nowrap; 
    overflow: hidden;
    text-overflow: ellipsis;
}
.right-content {
    position: absolute;
    height: 398px;
    width: 550px;
    display: inline-block;
    background-color: rgb(253, 253, 253);
    border-style: solid;
    border-width: 1px 1px 2px 1px;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.1);
    margin: 0 0 0 10px;
}
.right-content span {
    width: 100%;
    height: 23px;
    display: inline-block;
    padding: 3px 3px 2px 9px;
    color: rgb(0, 48, 130);
    font-weight: normal;
    font-size: 16px;
    text-align: left;
}
.map {
    padding: 15px 4px;
    height: 334px;
    max-width: 542px;
}
.left-content {
    position: relative;
    height: 400px;
    width: 572px;
    display: inline-block;
    margin: 0 10px 0 0;
}
.information-table {
    width: 100%;
}
.information-table i {
    font-size: 13px;
    color: rgb(120, 120, 120);
}
.information-table th {
    width: 100%;
    height: 23px;
    display: inline-block;
    font-size: 15px;
    padding: 3px 3px 2px 5px;
    color: rgb(0, 48, 130);
    font-weight: normal;
    font-size: 16px;
    text-align: left;
}
.information-table th img {
    margin-bottom: -.1rem;
}
.information-table .table-side {
    width: 102px;
    padding: 0 0 0 12px;
}
.information-table {
    background-color: rgb(253, 253, 253);
    color: rgb(0, 121, 211);
}
.information-table.bottom {
    border-style: solid;
    border-width: 0 1px 2px 1px;
    border-color: rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.1);
    padding-bottom: 4px;
}
.information-table.top {
    border-style: solid;
    border-width: 1px 1px 0 1px;
    border-color: rgba(0, 0, 0, 0.1);
}
.information-table.topspacer {
    margin-top: 20px;
}
.information-table.url {
    border-style: solid;
    border-width: 1px 1px 2px 1px;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.1);
}
.information-table tr {
    height: 24px;
    font-size: 14px;
}
.inputbox-url {
    background-color: rgba(245, 245, 252, 0.9);
    border: 0;
    padding: 5px 4px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    border-style: solid;
    border-width: 1px 1px 0 1px;
    border-color: rgba(235, 235, 242, 0.9);
    outline: none;
    width: 100%;
    font-family: 'Open Sans', sans-serif;
}
.inputbox-outside {
    padding: 0 7px 5px 7px;
}
.inputbox-url:hover {
    background-color: rgba(242, 242, 256, 0.9);
}
.generatebutton-outside {
    width: 1142px;
    margin: 0 auto;
}
.info-name {
    display: inline-block;
    outline: none;
    font-size: 15px;
    color: rgb(60, 60, 60);
    transition: .2s;
}
.info-name:hover {
    color: rgb(0, 121, 211);
    cursor: pointer;
}
.create-button {
    margin: 20px auto 0 auto;
    width: 100%;
    height: 40px;
    display: block;
    font-size: 17px;
    text-align: center;
    border-style: solid;
    border-width: 1px 1px 2px 1px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    cursor: pointer;
    color: rgb(255, 255, 255);
    text-shadow: 0 1px 2px rgba(50, 50, 50, 0.6);
    font-family: 'Open Sans', sans-serif;
    transition: .2s;
}
.create-button.on {
    background: rgb(56, 210, 66);
    border-color: rgb(69, 150, 28);
}
.create-button.off {
    background: rgb(185, 185, 185);
    border-color: rgb(146, 146, 146);
}
.create-button.deny {
    background: rgb(210, 104, 104);
    border-color: rgb(117, 33, 33);
}
.button-text {
    position: relative;
    top: -38px;
    left: 0;
    opacity: 1;
    padding-top: 8px;
    height: 30px;
    width: 100%;
    transition: .15s;
    pointer-events: none;
}
.create-button.on:hover .button-text {
    transition: .2s;
    background-color: rgb(79, 200, 87);
}
.create-button.on:active .button-text {
    padding: 10px 0 0 0;
    height: 28px;
    width: 100%;
    background: rgb(58, 167, 69);
    opacity: 1;
}
.create-button.on:active {
    background: rgb(84, 215, 93);
    border-width: 2px 1px 1px 1px;
}
.underline-create {
    position: relative;
    top: 0;
    left: 0;
    opacity: 0;
    height: 38px;
    width: 100%;
    border-style: solid;
    border-color: rgb(79, 200, 87);
    border-width: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
.create-button.on:hover .underline-create {
    box-shadow: inset 0 -5px 10px 0px rgb(79, 200, 87);
    transition: .15s border-width;
    opacity: 1;
    border-width: 0 0 38px 0;
}
.menu-dropdown {
    display: none;
}
.menu-hover {
    display: inline-block;
    width: 100%;
}
.outer-name-box {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    display: flex;
    align-items: center;
}
.name-box {
    background: rgb(255, 255, 255);
    border-color: rgb(117, 33, 33);
    position: relative;
    width: 500px;
    padding: 7px;
    margin: 0 auto;
    z-index: 1006;
    border-style: solid;
    border-width: 1px 1px 2px 1px;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.1);
    transition-timing-function: ease-in-out;
    transition: .4s;
	box-shadow: 0 0 15px 1px rgba(10,10,10,0.25);
    display: block;
}
.name-box .notice {
    margin-top: 7px;
    padding: 4px;
    width: 100%;
    font-size: 13px;
    background: rgba(208, 34, 34, 0.8);
    border-style: solid;
    border-width: 1px;
    border-color: rgb(160, 80, 80);
    color: rgb(255, 255, 255);
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
}
.name-box.on {
    display: block;
	animation-name: fade-in;
	animation-duration: 0.3s;
}
.name-box.off {
    display: none;
	animation-name: fade-out;
	animation-duration: 0.3s;
}
.name-box.default {
    display: none;
}
.name-box p {
    width: 100%;
    margin: 0;
    padding: 0 0 7px 0;
    color: rgb(0, 48, 130);
    font-weight: normal;
    font-size: 16px;
}
.name-box input {
    background-color: rgb(244, 244, 244);
    border: 0;
    padding: 5px 4px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    border-style: solid;
    border-width: 1px;
    border-color: rgb(180, 180, 180);
    outline: none;
    width: 100%;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    transition: .2s;
    color: rgb(0, 121, 211);
}
.name-box input:hover {
    background-color: rgb(249, 249, 249);
    border-color: rgb(170, 170, 170);
}
.name-box input:focus {
    background-color: rgb(252, 252, 252);
    border-color: rgb(0, 121, 211);
}
.name-box .button {
    top: 0;
    height: 40px;
    display: inline-table;
    font-size: 17px;
    text-align: center;
    border-style: solid;
    border-width: 1px 1px 2px 1px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    cursor: pointer;
    color: rgb(255, 255, 255);
    text-shadow: 0 1px 2px rgba(50, 50, 50, 0.6);
    font-family: 'Open Sans', sans-serif;
    transition: .2s;
    position: relative;
}
.button span {
    display: block;
    font-size: 11px;
}
.button.submit {
    width: 300px;
    background: rgb(56, 210, 66);
    border-color: rgb(69, 150, 28);
}
.button.cancel {
    margin: 0;
    width: 193px;
    margin: 7px 0 0 7px;
    text-align: center;
    background: rgb(210, 104, 104);
    border-color: rgb(117, 33, 33);
}
.button.submit b {
    position: relative;
    top: 2px;
}
.button.cancel b {
    position: relative;
    top: 7px;
}
.button.submit:hover {
    background: rgb(79, 200, 87);
}
.button.submit:active {
    background: rgb(84, 215, 93);
}
.button.cancel:hover {
    background: rgb(204, 103, 103);
}
.button.cancel:active {
    background: rgb(234, 123, 123);
}
/* Interface Bar || On input box focus */

.fancyBar {
    position: relative;
    display: block;
    width: 100%;
    height: 2px;
    background-color: rgba(235, 235, 242, 0.9);
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    -ms-box-sizing: content-box;
    box-sizing: content-box;
}
.animateBar {
    margin: 0 auto;
    position: relative;
    width: 0%;
    height: 2px;
    background-color: rgba(0, 128, 255, .85);
    transition: 0.4s;
}
/* None || When nothing is needed. */

.none {
    opacity: 0;
    padding: 0px;
    margin: 0px;
    display: none;
}
/* Animations */

@keyframes fade-out {
    0% {
        margin-top: 0;
        opacity: 1;
        display: block;
    }
    95% {
        margin-top: 15px;
        opacity: 0;
        display: block;
    }
    100% {
        margin-top: 15px;
        opacity: 0;
        display: none;
    }
}
@keyframes fade-in {
    0% {
        margin-top: 15px;
        opacity: 0;
        display: block;
    }
    95% {
        margin-top: 0;
        opacity: 1;
        display: block;
    }
    100% {
        margin-top: 0;
        opacity: 1;
        display: block;
    }
}
@keyframes loader {
    0% {
		opacity: 0.075;
    }
    20% {
		opacity: 0.085;
    }
    45% {
		opacity: 0.045;
    }
    65% {
		opacity: 0.095;
    }
    80% {
		opacity: 0.035;
    }
    100% {
		opacity: 0.075;
    }
}

/* ADD ANOTHER STEP WHICH WILL FIRST REDUCE THE INFORMATION SIDE */

@media screen and (max-width: 1210px) {
    .menu-size {
        width: auto;
        padding: 0 24px;
        margin: 0 auto;
    }
    .content-box {
        top: 0;
        right: 0;
        position: relative;
        display: block;
        width: 100%;
        margin: 0;
        display: table;
        padding: 62px 17px 0 17px;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
    }
    .middle-content {
        position: relative;
        display: block;
        width: 100%;
        margin: 0;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
    }
    .left-content {
        height: auto;
        width: 100%;
        padding: 0 20px 0 0;
        display: table-cell;
        top: -1px;
    }
    .right-content {
        display: table-cell;
        position: relative;
        margin: 0;
        top: 0;
        width: 542px;
        min-width: 542px;
    }
    .create-button {
        position: relative;
        display: block;
        width: 100%;
    }
    .generatebutton-outside {
        width: 100%;
        padding: 2px 15px 0 15px;
        margin: 0 auto;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
    }
}
@media screen and (max-width: 960px) {
    .content-box {
        position: relative;
        top: 0;
        left: 0;
        padding: 60px 7px 7px 7px;
    }
    .result .right-panel {
        position: absolute;
        margin-top: 5px;
    }
    .middle-content .bottom-title {
        height: 42px;
        padding: 10px 0;
        cursor: default;
    }
    .page-buttons .page {
        height: auto;
        padding: 5px 9px 7px;
    }
    .page-buttons .page.on:active {
        padding: 7px 9px 7px;
    }
    .page-buttons .page.active {
        padding: 5px 9px 8px;
    }
    .middle-content .results-display .result .url-button {
        opacity: 0.5 !important;
        margin-right: 0px !important;
        color: rgba(0, 0, 0, 0);
    }
    .middle-content .results-display .result .icon-right-open {
        color: rgb(0, 48, 130) !important;
    }
    .middle-content {
        position: relative;
        display: block;
        width: 100%;
        margin: 9px 0 0 0;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
    }
    .right-content {
        position: relative;
        height: auto;
        width: 100%;
        display: block;
        margin: 7px 0 0 0;
        min-width: 100%;
    }
    .map {
        min-width: 100%;
        padding: 15px 0;
        margin: 0 auto;
    }
    .left-content {
        height: auto;
        width: 100%;
        margin: 10px 0 0 0;
        display: block;
        padding: 0;
    }
    .inputbox-url {
        margin: 0;
        width: 100%;
    }
    .information-table.topspacer {
        margin-top: 7px;
    }
    .generatebutton-outside {
        padding: 0 5px 7px 7px;
        margin: 0 auto;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
    }
    .create-button {
        margin: 7px auto 0 auto;
    }
    .top-menu {
        height: 60px;
    }
    .menu-dropdown {
        display: inline-block;
        position: absolute;
        top: 61px;
    }
    .menu-dropdown .icon-menu {
        display: block;
        position: fixed;
        font-size: 30px;
        top: 0;
        left: 15px;
        padding: 12px 29px 14px 8px;
        height: 34px;
        width: 20px;
        transition: .2s;
    }
    .menu-hover {
        position: absolute;
        width: 60px;
        left: 0;
        height: 16px;
    }
    .menu-hover.off {
        top: -600px;
    }
    .menu-hover.on {
        top: 46px;
    }
    .menu-dropdown .icon-menu:hover {
        cursor: pointer;
        color: rgb(0, 128, 255);
        background: rgb(256, 256, 256);
    }
    .menu-button {
        position: relative;
        display: block;
        font-size: 18px;
        padding: 15px 0 15px 0;
        top: 15px;
        left: -15px;
        height: auto;
        width: 105vw;
        text-align: center;
        background: rgb(90, 90, 90);
        border-style: solid;
        border-color: rgb(150, 150, 150);
        border-width: 0 0 2px 0;
        color: rgb(255, 255, 255);
        opacity: 1;
        transition: 0s, background .2s, color .2s;
    }
    .menu-button.right {
        float: none;
    }
    .menu-button:hover {
        background: rgb(120, 120, 120);
        color: rgb(255, 255, 255);
    }
    .menu-button:hover .underline-menu {
        opacity: 0;
        height: 0;
    }
    .menu-button:active {
        top: 15px;
        height: auto;
        background: rgb(160, 160, 160);
    }
    .menu-search {
        right: -35px;
    }
    .menu-search .icon-search {
        font-size: 26px;
        right: 57px;
        padding: 14px 10px 16px;
        top: 1px;
    }
    .menu-search .icon-search:active {
        padding: 14px 10px 16px;
        top: 1px;
    }
    .menu-search .search-input {
        height: 57px;
        font-size: 17px;
        padding: 2px 57px 2px 10px;
    }
}

@media screen and (max-width: 500px) {
	.content-box {
		padding: 60px 2px 7px 2px
	}
	.result .left-panel {
		width: 120px;
	}
	.result .right-panel {
		margin-left: 5px;
	}
    .middle-content .results-display .result .icon-right-open {
		position: absolute;
		font-size: 20px;
		right: 10px;
    }
}