:root {
  --first: #036ffc;
  --second:  #038cfc;
  --green:  #00bf00;
}

html {
  overflow-y: scroll;
  font-family: "Noto Sans", "Trebuchet MS";
  min-width: 1280px;
  height: 100%;
  margin: 0;
}
body {
    background-color: #171B29;
    color: white;

    height: 100%;
    margin: 0;
    
    scrollbar-width: thin;
    scrollbar-color: #24262B #171B29;
}
/*scrollbar*/
/* Works on Firefox */

/* Works on Chrome, Edge, and Safari */
body::-webkit-scrollbar {
  width: 12px;
}

body::-webkit-scrollbar-track {
  background: #171B29;
}

body::-webkit-scrollbar-thumb {
  background-color: #787878;
  border-radius: 4px;
}

header {
    color: white;
}

/* login & home page*/
div.centerator {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    height: 100vh; /* Full height viewport */
}
div.front-block {
    background: #21232c;
    width: 850px;
    padding:70px 30px;

}

div.front-block-long {
    width: 850px;
    height: auto;
    margin: auto;
    margin-top: 40px;
    /* UI Properties */
    background: #21232c;
    border-radius: 5px;
    
    text-align: center;   
    justify-content: center;
}

img.close-img {
    width: 20px;
}

span.errors {
    display: inline-block;
    color:  red;
    width: 80%;
    
}

span.messages {
    display: inline-block;
    color:  #00ff37;
    width: 80%;
    
}

div.menu-block {
    max-width: 100%;
    height: auto;
    margin:auto;
    padding: 0;
    
    
}
img.big-logo {
    width:  80%;
    max-width: 800px;
}

div.title {
    text-align: center;
    padding-top: 1px;
    margin: auto;
    width: 30%;
}

div.title-italic {
    text-align: left;
    padding-top: 10px;
    margin-left:15px;
    margin-bottom: 20px;
    font-style: italic;
    text-transform: uppercase;
    width: 30%;
}
div.title-italic h1,  div.title-italic h2{
    margin:2px;
}
div.little-logo {
    position: absolute;
    top: -12px;
    right:30px;
    padding:15px;
    width: 50px;
    height: auto;
   
}

div.little-logo img {
    width: 80px;
}

div.yourinfo {
    text-align: right;
}
div.yourinfoadmin {
    text-align: center;
}

div.yourinfo h4, div.yourinfo h5 {
    margin:3px 1px;
}

img.circle  {
    width: 150px;
    height: auto;
    position: relative;
    overflow: hidden;
    border-radius: 50%;

}

img.squared {
    width: 150px;
    height: auto;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}


h5 {
    padding: 3px 10px 3px 10px;
}


table.menu {
    border: 0;
    margin: auto;
    text-align:  center;
}
table.menu th {
    width:  50%;
}

th.sx {
    width: 20%;
    max-width: 250px;
}

hr.separator {
    border-style: none none dotted;
    border-top: dashed 3px var(--second);
    color: transparent;
    margin:  40px auto;
    width: 55%;
}
hr.separator-top {
    border: none;
    margin:  40px auto;
    margin-top: 10px;
    width: 95%;
    height:  3px;
    background-color: var(--second);
}

hr.underline {
    border:  none;
    width: 100%;
    height:  1px;
    background-color: var(--first)
}

hr.underline-2 {
    border:  none;
    width: 30%;
    height:  1px;
    background-color: var(--first);
}

hr.bord {
    border:  none;
    width: 40%;
    height:  1px;
    background-color: var(--first);
    margin: 25px auto;
}

input {
    font-family: 'Noto Sans', 'Trebuchet MS';
}
select {
    cursor: pointer;
}
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

input.param  {
    background-color: #3a3d49;
    color:  white;
    padding: 13px 23px;
    margin: 10px 0;
    border-radius: 4px;
    font-size: 15px;
    border:  0px;
    width: 70%;
    max-width :70%
}

input:-webkit-autofill {
     -webkit-text-fill-color: white;
     background-color: #3a3d49;
     transition: background-color 5000s ease-in-out 0s;
}
input:focus{
    outline: none;
}

::placeholder {
    color: white;
    opacity: 0.7;
}

/* administration panels */


table.menu-data {
    padding-top: 20px;
    margin: 0 auto !important;

    
}

table.menu-data th.dx{
    border-left: 1px solid var(--first);
    
}
 

table.menu-data th.sx{
    padding-right: 22px;

}

table.data-list, table.data-list th, table.data-list td {
    border-bottom: 2px solid var(--first);
    width:  auto;
    text-align: center;
    border-collapse: collapse;
}

div.data-list-little {
    width: 90%;
    margin: auto;
    padding-right: 10px;
}


/*Checkboxes*/
.container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
  border: 1px solid var(--first);
  outline: 2px solid #F00
  
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 14px;
  width: 14px;
  background-color: #171B29;
  border-radius: 2px;
  outline: 2px solid white;
  
}

td.check {
   border-color: black;
   
}
/* On mouse-over, add a grey background color */
input.container:hover input ~ .checkmark {
  background-color: darkgrey;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color: #171B29;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 4px;
  height: 7px;
  border: solid var(--second);
  border-width: 0 3px 3px 0px;

  transform: translate(-5px, -5px) rotate(45deg);
}

/* The popup form - hidden by default */
.form-popup {
  visibility: hidden;
  opacity: 0;

  position: fixed;
  top: -30;
  right: 10%;
  width: 80%;

  cursor: pointer;
  border-radius: 25px;
  background-color: #24262B;
  z-index: 9;

  transition: all .4s ease-in-out;
}


.form-popup-show {
  visibility: visible;
  opacity: 1;
  top: 0;
}

.popup-close {
    float: right;
    opacity: 0.5;
    
    background-color: transparent;
    border: 0;
    padding: 14px;
    color: white;
    cursor: pointer;
    font-size: 17px;
    font-weight: bold;
}

.popup-title {
    text-align: center;
    width: 50%;
    margin: auto;
    margin-top: 10px;
    font-style: italic;
    transform: translateX(20px);
}

table.form {
    width: 97%;
    margin: auto;
    border-spacing: 10px;
    text-align:  center;
    align-content: center;
    border-collapse: collapse;

}

table.form thead {
    font-size: 18px;

}

table.form td {
    width: 33%;
    border: 1px solid var(--second);
    padding: 10px 26px;
}
table.form tr td, table.form tr th {
    border-bottom: 0;
    border-top: 0;
}

table.form tr td:first-child, table.form tr th:first-child {
    border-left: 0;
    width: 33%;
}

table.form tr td:last-child, table.form tr th:last-child {
    border-right: 0;
    
}

table.form td.large {
    width: 32%;
    padding:  6px 0px;
}

tr.topad td {
    padding: 10px 0px;
}

div.form-popup {
    box-shadow: 0 0 8px black;
}
div.form-popup input, div.form-popup select {
    background-color: #3a3d49;
    border-radius: 2px;
    color:  white;
    padding: 7px 15px;
    font-size: 13px;
    border:  0px;
    
    align-content: center;
    min-height: 37px;
    
}

::placeholder {
    color: white;
    opacity: 0.7;
     font-family: 'Noto Sans', 'Trebuchet MS';

}

input[type=number] {
    width: 60px;
}

input.double {
    width: 48% !important;
    min-height: 37px;
    margin: auto;

}


table.form input.single {
    width: 100%;
    min-height: 37px;
}
table.form input[type=number].single {
    width: 70%;
    min-height: 37px;
}
button.adder {
    background-color: var(--first);
    border-radius: 1px;
    border: 0;
    padding-bottom: 3px;
    margin-right: 5px;
    font-weight: bold;
    color: white;
    font-size: 17px;
    cursor: pointer;
}

button.subber {
    background-color: var(--second);
    border-radius: 1px;
    border: 0;
    font-weight: bold;
    letter-spacing: -2px;
    padding-right: 8px;
    padding-bottom: 3px;
    margin-left: 5px;
    color: white;
    font-size: 17px;
    cursor: pointer;
}
textarea.large {
    resize: none;
    background-color: #3a3d49;
    border-radius: 4px;
    color:  white;
    padding: 5px 10px;
    font-size: 13px;
    border:  0px;
    margin: auto;
    margin-top: 6px;
    

}

textarea.large {
    width: 100%;
}

textarea:focus {
    outline: 0;
    border: 0;
}
textarea.large::-webkit-scrollbar {
    width: 1em;
    background-color: darkgrey;
}

textarea.large::-webkit-scrollbar-corner {
    visibility: hidden;
}

textarea.large::-webkit-resizer {
     visibility: hidden;
}

.little-option {
    width: auto;
    padding: 5px 10px;

    align-items:center;

    margin-left: 10px;
    background-image: linear-gradient(to right, var(--first) , var(--second));
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    color:  white;
    display: inline-block;
    border-radius: 12px;
    border: 0;
}

.option {
    width: 250px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right:10px;
    background-image: linear-gradient(to right, var(--first) , var(--second));
    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(--second);
}

.option:hover{
    box-shadow: 0 0 6px var(--second);
}
.men {
    text-align: left !important;
}

.big-option {
    height: 37px;
    width: 200px !important;
}
button.coption {
    align-items: center;
  
    margin:auto;
    display: flex;
    justify-content: center;

}
button img {
    margin-top: 1px;
}


.little-option:hover{
    box-shadow: 0 0 6px var(--second);
}



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(--second);
    border-style: solid;
  
}

.logout-fix {
    width: 110px !important;
}

.logout:hover{
    box-shadow: 0 0 6px var(--second);
}

a.mod-profile {
    text-decoration: underline;
    color: white;
}

div.filler {
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: black;
    opacity: 0.3;

}

div.overlay {
    visibility: hidden;
    margin:auto;

    background-color: black;
    opacity: 0.3;
    text-align: center;

    animation: all 0.4s ease;
}
div.sh {
    visibility: visible;
}

.message, .error {
    text-align: center;
    margin:auto;
    padding-left: 24px;
    line-height: 1.6;
    white-space: pre-line
    visibility: hidden;
    opacity: 0;
    width: 80%;

    position: fixed;
    top: -30px;
    right: 10%;
    
    min-height: 300px;
    

    border-radius: 25px;
    font-weight: bold;
    background-color: #24262B;
    box-shadow: 0 0 8px black;
    z-index: 9;

    text-transform: uppercase;
    font-size: 26px;
    font-style: italic;
    
    transition: all .4s ease-in-out;
}


.message-show, .error-show {
    visibility: visible;
    opacity: 1;
    top: 0;
}

.darker {
    filter: brightness(0.5);
}

div.up-back-left {
    position: fixed;
    left: 15px;
    top: 15px;
}

div.bot-back-left {
    position: fixed;
    margin: auto;
    bottom: 15px;
    right: 47%;

    -moz-transform: translateX(-500px);
    -webkit-transform: translateX(-500px);
    transform: translateX(-500px);    
}

div.bot-back-right {
    position: fixed;
    margin: auto;
    bottom: 15px;
    left: 47%;

    -moz-transform: translateX(500px);
    -webkit-transform: translateX(500px);
    transform: translateX(500px);    
    
}

p.info {
    width: auto;
    max-width: 300px;
    font-size: 12px;
    margin-left: 10px;
    margin: auto;
    line-height: 1.3;
    
}

p.big-info {
    max-width: 510px;
    font-size: 13px;
    margin: auto;
    
}

p.info2 {
    width: 210px;
    font-size: 11px;
    margin-left: 15px;
    

}
div.map {
     display: inline-block;
     text-align: center;


}
div.map p {
    float: right;
}
div.map input, div.map label {
    float: left;
    margin-top: 15px;
    margin-right: 10px;
}

label.upload {
    background-color: var(--first);
    border-radius: 5px;
    border: 0;
    padding: 7px;

    cursor: pointer;
}

label.upload:hover {
    box-shadow: 0 0 6px var(--first);
}

span.upload-path {
    border: 1px solid var(--first);
    border-radius: 5px;
    padding: 6px; 
    margin: 0;
    padding-left: 10px;
    padding-right: 8px;
    margin-left: -5px;
    line-height: 2;
  
}

span.upload-path-g {
    border: 1px solid  var(--green);
    border-radius: 5px;
    padding: 6px;
    margin: 0;
    padding-left: 10px;
    padding-right: 8px;
    margin-left: -5px;
    line-height: 2;
}

.file {
   display: none;

}

input.big-single {
    border-radius: 4px !important;
    padding: 8px 5px !important;
    font-size: 14px !important;
   
}


button.upcsv {
    width: auto;
    padding:  5px 8px;
    font-size: 15px;
    font-weight: bold;
    color: white;
    background-color: var(--first);
    cursor: pointer;
    border-radius: 5px;
    border: 0;
}

button.upcsv:hover{
    box-shadow: 0 0 6px var(--second);
}

button.upimg {
    width: auto;
    background-color: var(--first);
    cursor: pointer;
    border-radius: 5px;
    border: 0;
    transform: translateY(-3px);
}

button.upimg:hover{
    box-shadow: 0 0 6px var(--second);
}

.rem {
    background-color: var(--first);
    border-radius: 5px;
    border: 0;
    padding: 7px;
    color: white;
    font-weight: bold;

    cursor: pointer;

    transform: translateY(-2px);
}
.rem:hover{
    box-shadow: 0 0 6px var(--second);
}


img.upimg {
    width: 30px;
    vertical-align: middle;
}

img.but-img {
    width: 30px;
    margin-right: 6px;
    margin-left: 3px;
    vertical-align: middle;
    padding: 3px;
}

.download {
    background-color: var(--green);
    border-radius: 4px;
    border: 0;
    padding: 4px;
    padding-right: 12px;
    color: white;
    font-weight: bold;

    vertical-align: middle;
    cursor: pointer;
}

.download:hover {
    text-decoration: underline;
}

button.download > img,
button.download > span {
  vertical-align: middle;
}
img.downimg {
    width: 27px;
    padding: 5px;
    padding-right: 10px;
    vertical-align: middle;
}

.chart {
    margin-bottom: 20px;

}

.yescred {
   
    display: inline-block;
    text-align: left;
    transform: translateX(23px);
    
}

.yescredcheck {
    transform: translateY(15px);
    display: inline-block;
}

.g-recaptcha {
    margin:auto;
 
    max-width: 302px;
}