:root {
  --backcolor: #;
  --fontcolor: black;
  --fontfilter: 100%;
  --buttoncolor: #;
  --iconfilter: 100%;
  --iconcolor: black;
  --first: red;
  --second:  #038cfc;
  --green:  #00bf00;
  --maincolor: #036ffc;
}

button {
    color:var(--fontcolor);
    background-color: var(--buttoncolor);
}

button img {
    filter: invert(var(--fontfilter));
}

img.logo {
    height: 26px;
    position: relative;
    overflow: hidden;
    filter: invert(var(--iconfilter));
}

body {
    font-family: "Noto Sans", "Trebuchet MS";
    text-align: center;
    animation: filter .4s ease-in-out;
    background-color: var(--backcolor);
    color: var(--iconcolor);
}

img#ws, img#pho {
    filter: invert(0%) !important;
}


body.black {
    background-color: #171B29;
    padding: 0;
    color: white;
    
}

div.overlay {
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: black;
    opacity: 0.3;

    animation: all 0.4s ease;
}

div.sh {
    visibility: visible;
}

.normaloption {
    width: 250px;
    padding-top: 5px;
    padding-bottom: 5px;
    background-color: var(--maincolor);
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    color:  white;
    display: inline-block;
    border-radius: 25px;
    border: 2px;
    border-color: var(--maincolor);
}
.normaloption:hover{
    box-shadow: 0 0 6px var(--maincolor);
}

.option {
    width: 250px;
    padding-top: 5px;
    padding-bottom: 5px;
    background-color: var(--buttoncolor);
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    color:  white;
    display: inline-block;
    border-radius: 25px;
    border: 2px;
    border-color: var(--buttoncolor);
}

.option:hover{
    box-shadow: 0 0 6px var(--buttoncolor);
}

a.logout {
    width: 250px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 15px;
    text-align: center;
    text-decoration: none;
    color:  white;
    cursor:  pointer;
    display: inline-block;
    border-radius: 25px;
    border-width: 2px;
    border-color: var(--buttoncolor);
    border-style: solid;
  
}

.logout-fix {
    width: 110px !important;
}

.logout:hover{
    box-shadow: 0 0 6px var(--buttoncolor);
}


div.news-popup {
    
    width: 310px;

    border-radius: 5px;
    background-color: #171B29;
    color: white;
    text-align: center;
    position: fixed;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 6px black;
    padding: 10px;
    

    visibility: hidden;
    opacity: 0;
    animation: all .4s ease-in-out;
}


div.trans {
    visibility: visible;
    opacity: 1;
    bottom: 50%;
}

input.single {
    background: #565657;
    border-radius: 4px;
    color:  white;
    padding: 5px 10px;
    font-size: 13px;
    border:  0px;
    color-scheme: dark;
}

input.single::placeholder {
    color:  darkgrey;
}

button.popup-close {
    float: right;
    margin-right: 10px;
    margin-left: 0;
    width: 25px;
    background-color: transparent;
}

button.popup-close-message {
    float: right;
    margin-top: 7px;
    margin-right: 20px;
    margin-left: 0;
    width: 25px;
    background-color: transparent;
}

button.popup-close img {
    width: 23px;
}
button.popup-close-message img {
    width: 23px;
}

.message, .error {
    text-align: center;
    padding-left: 24px;
    line-height: 1.6;
    white-space: pre-line
    visibility: hidden;
    opacity: 0;

    position: fixed;
    width: 300px;
    bottom: 50%;
    left: 50%;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    

    border-radius: 5px;
    font-weight: bold;
    background-color: #24262B;
    box-shadow: 0 0 8px black;
    z-index: 9;
    
    transition: all .4s ease-in-out;
}
.message {
    color: #a2ff94;
}

.error {
    color: var(--first);
}

div.footlink {
    width: 300px;
    /*height: 50px;*/
    border-radius: 5px;
    border: 3px solid #171B29;
    padding:13px 11px;
    text-align: center;
}

div.footlink a {
    font-weight: bold;
    color:black;
    text-decoration:underline;
}

div.float-down {
    width: 330px;
    /*height: 50px;*/
    border-radius: 5px;
    background-color: #171B29;
    text-align: center;
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99999999;

    box-shadow: 0 0 6px black;
    padding: 5px 0px;

}
div.float-down a {
    color: white;
    text-decoration: none;
    z-index: 0;
}

div.float-down a img.downblock {
    width: 20px !important;
    padding-bottom: 5px;
    z-index: 0;
}

table.downtable {
    text-align: center;
    width: 100%;
    height: 50px !important;
    z-index: 0;
}
table.downtable td {
    width: 33%;
    border: 0;
    z-index: 0;
}


div.owner {
    background-color:  #24262B;
    color: white;
    padding: 4px;
}

.head {
    padding-top: 1rem;
    padding-bottom: 0;
    margin: 0;
    text-align: center;
   
}
span.name {
    font-weight: normal;
}

div.center {
    margin: auto;
    margin-bottom: 0;
    padding-bottom: 0;
    width: 330px;
    text-align: left;
}

div.no-card {
    top: 83px;
    left: 235px;
    width: 850px;
    height: 500px;
    position: absolute;
    top: 50%;
    left: 50%;
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    margin: auto;
    
    padding: 15px 40px;
    /* UI Properties */
    background: #24262B;
    text-align: center;
    justify-content:center;
    align-items:center;
    
}

table.menu {
    border: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    margin: auto;

    width: 800px;
    height: 450px;
    
    text-align:  center;
}
table.menu th {
    width: 50%;
}

img.big-logo {
    width:  80%;
    max-width: 800px;
}

img.circle  {
    max-height: 200px;
    width: 150px;
    height: 150px;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
}
img.group-img {
    width: 100px;
    height: auto;
    position: relative;
    overflow: hidden;
    border-radius: 5px;

    vertical-align: middle;
}

img.title {
        height: auto;
        width: 200px;
}
span.groupname {
    margin-left: 9px;
    display: inline-block;
    vertical-align: middle;
    font-weight: bold;
    line-height: 1.6;
    max-width: 221px;
}

span.namesub {
    margin: 10px;
    vertical-align: middle;
    display: inline-block;
    font-size: 18px;
}

span.bold {
    font-weight: bold !important;
}
p.address {
    margin: 5px 0 10px 0;
}

h2 {
    margin-bottom: 5px;
}

h3 {
    
    display: inline;
}
 


}
img.downblock {
    max-width: 20px !important;
    max-height: 20px !important;
    padding: 4px;
    vertical-align: middle;
}

img.share {
    padding: 2px;
    width: 36px;
    filter: invert(0%);
}

button#share {
    background-color: transparent;
    border: 0;
    margin: 0;
    padding: 0;
    width: auto !important;
}



div.socialdiv {
    max-width: 330px;
    display: inline-block;
}
ul.social {
	padding: 0;
    display:inline-block;
	list-style-type: none;

    
}

.social li {
	width: 80px;
    display:inline-block;
    margin: 25px 0 0 0;

}
#socialul {
     margin-top: 0 !important;
}


div.buttons {
    text-align: center;
    display: inline-block;
}

button {
    font-weight: bold;
    font-size: 90%;
    text-align: center;
    border: none;
    border-radius: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
    width: 330px;
    height: auto;
    cursor: pointer;
}

button:hover {
    text-decoration: underline;
}


iframe.map {
  width: 330px;
  height: 200px;
  border:0;
  border-radius: 5px;
}



a:hover {
    text-decoration: underline;
}


img.downimg {
    width: 25px;
    padding: 2px;
    padding-right: 10px;
    vertical-align: middle;
}

img.assist {
    height: 22px;
    padding: 2px;
    padding-right: 10px;
    padding-bottom: 5px;
    vertical-align: middle;
}

.g {
    background-color: #00bf00 !important;
}

.finalinfo {
    text-align: center;
    margin: auto;
    max-width: 320px;
    
}

.finalinfo h4 {
    font-weight: normal;
}
div.foot {
    text-align: center;
    background-color: #171B29;
    width: 300px;
    border-radius: 6px;
    padding: 20px;
    margin: auto;
    margin-top: 5px;
}

div.foot h3{
    color: white;

    margin: auto;
    line-height: 1.6;
}
a.outlink {
    background-image: linear-gradient(to right, var(--buttoncolor) , var(--backgroundcolor));
    color: white;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    padding: 7px 15px;
}