* {
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #efefef;
}

header {
    margin-top: 20px;
    position: relative;
}

header .inner {
    display: flex;
    flex-direction: row;
    justify-content: right;
}

header .inner > div.logo {
    text-align: left;
    width: 60%;
}

header .inner > div.logo.one {
    width: 100%;
    text-align: center;
}

header .inner > div.feedback,
header .inner > div.change_town {
    width: 20%;
    padding-left: 20px;
}

div.logo a {
    font-weight: normal;
    background: #121FCF;
    background: linear-gradient(to right, #e289ed 0%, #5ad1d5 100%);  
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent; 
    text-decoration: none;
    text-transform: uppercase;
    font-size: 25px;
    text-shadow: 0px 4px 3px rgba(66, 68, 90, 0.10);
    position: relative;
    padding: 5px 0 0 40px;
}

div.logo a::before {
    position: absolute;
    top: 0;
    left: 0;
    height: 32px;
    width: 32px;
    display: block;
    background: url("/wallet.png") no-repeat left top;
    content: "";
}

main, header, footer {
    max-width: 1280px;
    padding-right: 20px;
    padding-left: 20px;
    min-width: 960px;
    width: 100%;
}

main {
    flex: 1;
}

main .feedback {
    margin-top: 50px;
    text-align: center;
    font-size: 13px;
    color: #444;
}

main .feedback a {
    margin-top: 30px;
    font-size: 25px;
    color: #1e90ff;
    display: inline-block;
}

main #table {
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    -webkit-box-shadow: 0px 16px 21px -9px rgba(34, 60, 80, 0.46);
    -moz-box-shadow: 0px 16px 21px -9px rgba(34, 60, 80, 0.46);
    box-shadow: 0px 16px 21px -9px rgba(34, 60, 80, 0.46);    
    border: 6px solid #fff;
    border-spacing: 0;
    color: #222;
}

main #table thead th,
main #table tbody td
 {
    font-weight: normal;
    text-align: center;
    padding: 15px;
}

main #table thead th {
    color: #fff;
    background: #7f7f7f;
    border: 1px solid #979797;
}

main #table tbody td {
    border: 1px solid #f3f3f3;
}

main #table tbody tr:hover {
    background-color: #efefef;
}

main #table .map_url a {
    text-decoration: none;
    border-bottom: 1px dotted #816729;
    color: #816729;
}
main #table .map_url a:hover {
    border-color: transparent;
}

main H1 {
    width: 100%;
    text-align: center;
    font-weight: normal;
    background: #121FCF;
    background: linear-gradient(to right, #121FCF 0%, #CF1512 100%);  
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;  
    font-size: 150%;
    opacity: 0.3;
    margin: 50px 0;      
}

main H1 #change_town_h1 {
    cursor: pointer;
    border-bottom: 1px dotted #CF1512;
}

main #table th[role=columnheader]:not([data-sort-method='none']) {
	cursor: pointer;
}

main #table th[role=columnheader]:not([data-sort-method='none']):after {
	content: '';
	float: right;
	margin-top: 5px;
	border-width: 0 8px 8px;
	border-style: solid;
    border-color: #ccc transparent;
	opacity: 0.2;
	-ms-user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

main #table th[aria-sort=ascending]:not([data-sort-method='none']):after {
	border-bottom: none;
	border-width: 8px 8px 0;
}

main #table th[aria-sort]:not([data-sort-method='none']):after {
    opacity: 1;
    border-color: #9cceff transparent;
}

main #table td span {
    display: block;
    font-size: 10px;
    margin-top: 5px;
    font-weight: bold;
    opacity: 0.5;
}

footer {
    text-align: center;
    font-size: 10px;
    text-transform: uppercase;
    margin-top: 100px;
}

footer > p {
    padding: 15px 0;
    opacity: 0.6;
}

footer a {
    color: #fff;
}

footer a:hover {
    text-decoration: none;
}

footer #bank_copyright {
    border-radius: 8px 8px 0 0;
    background-color: #444;
    padding: 5px 20px;
    display: inline-block; 
    opacity: 0.7;
    color: #fff;
}

#city_map {
    position: absolute;
    top: 40px;
    left: 20px;
    right: 20px;
    background-color: #fff;
    z-index: 2;
    padding: 30px;
    border-radius: 10px;
    -webkit-box-shadow: 0px 16px 21px -9px rgba(34, 60, 80, 0.46);
    -moz-box-shadow: 0px 16px 21px -9px rgba(34, 60, 80, 0.46);
    box-shadow: 0px 16px 21px -9px rgba(34, 60, 80, 0.46);    
    border: 6px solid #34b6eb;    
    text-align: center;
    display: none;
}

#city_map p {
    font-size: 25px;
    margin-bottom: 20px;
    opacity: 0.7;
}

#city_map a {
    display: inline-block;
    margin: 5px;
    color: #fff;
    background-color: #ac76e9;
    padding: 3px 15px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
}

#city_map a:hover {
    background-color: #693b9d;
}

#city_map #city_map_close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    display: block;
    cursor: pointer;
}

#city_map #city_map_close::after {
    content: "X";
    color: #f16f9f;
    font-size: 35px;
}

header .button {
    padding: 7px 10px;
    width: 100%;
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    color: #fff;
    cursor: pointer;
    text-align: center;
    border: none;
    background-size: 300% 100%;

    border-radius: 50px;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;    

    background-image: linear-gradient(to right, #25aae1, #4481eb, #04befe, #3f86ed);
    box-shadow: 0px 6px 15px 0 rgba(65, 132, 234, 0.75);

    text-decoration: none;
}

header .button:hover {
    background-position: 100% 0;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

header .button:focus {
    outline: none;
}

header div.feedback .button {
    background-image: linear-gradient(to right, #ed6ea0, #ec8c69, #f7186a , #FBB03B);
    box-shadow: 0 4px 15px 0 rgba(236, 116, 149, 0.75);
}

.error404 {
    margin-top: 50px;
    text-align: center;
    color: #d3558e;
}

.error404 p {
    font-size: 60px;
    margin-bottom: 20px;
}