@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@200;400;700&family=Open+Sans:wght@200;400;700');

body {
  background-color: #222;
  margin-left: 0px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  padding: 0px;
  height: 100%;
  overscroll-behavior: contain;
}

.bodytitle {
  position: relative;
  text-align:left;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 30px;
  font-weight: normal;
  color: #fff;
}

.bodytext {
  position: relative;
  text-align:left;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: normal;
  color: #fff;
  line-height: 20px;
}

.bodytext a:link,
.bodytext a:hover,
.bodytext a:visited,
.bodytext a:active
{
color: #fff;
text-decoration: none;
word-break: break-all;
}









.textfield_grey {
    border-radius: 0px;
    border: 1px solid #aaa;
    padding: 4px 2px 4px 2px;
    font-family: 'Open Sans', sans-serif;
    color: #222;
    font-size: 14px;
    line-height: 14px;
    font-weight: normal;
    outline: none;
    background: #fff;
    box-sizing: border-box;
    margin-top: 2px;
}

.textfield_grey:active,
.textfield_grey:hover,
.textfield_grey:focus {
    box-shadow: 0 0 0px 1000px rgba(255,255,255,0.05) inset !important;
    -webkit-box-shadow: 0 0 0px 1000px rgba(255,255,255,0.05) inset !important;
    -moz-box-shadow: 0 0 0px 1000px rgba(255,255,255,0.05) inset !important;
    -o-box-shadow: 0 0 0px 1000px rgba(255,255,255,0.05) inset !important;
    -khtml-box-shadow: 0 0 0px 1000px rgba(255,255,255,0.05) inset !important;
}







.textfield_small {
    border-radius: 0px;
    border: 1px solid #aaa;
    padding: 3px 2px 3px 2px;
    font-family: 'Open Sans', sans-serif;
    color: #222;
    font-size: 13px;
    line-height: 13px;
    font-weight: normal;
    outline: none;
    background: #fff;
    box-sizing: border-box;
    margin-top: 2px;
}

.textfield_small:active,
.textfield_small:hover,
.textfield_small:focus {
    box-shadow: 0 0 0px 1000px rgba(255,255,255,0.05) inset !important;
    -webkit-box-shadow: 0 0 0px 1000px rgba(255,255,255,0.05) inset !important;
    -moz-box-shadow: 0 0 0px 1000px rgba(255,255,255,0.05) inset !important;
    -o-box-shadow: 0 0 0px 1000px rgba(255,255,255,0.05) inset !important;
    -khtml-box-shadow: 0 0 0px 1000px rgba(255,255,255,0.05) inset !important;
}








/*Checkboxes styles*/
input[type="checkbox"] { display: none; }

input[type="checkbox"] + label {
  display: block;
  position: relative;
  padding: 0px;
  padding-left: 21px;
  top: -4px;
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  line-height: 11px;
  color: #222;
  background-color: none;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

input[type="checkbox"] + label:last-child { margin-bottom: 0; }

input[type="checkbox"] + label:before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border: 2px solid #222;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: -2px;
  opacity: .6;
  -webkit-transition: all .12s, border-color .08s;
  transition: all .12s, border-color .08s;
}

input[type="checkbox"]:checked + label:before {
  width: 5px;
  top: -6px;
  left: 3px;
  border-radius: 0;
  opacity: 1;
  background-color: none;
  border-top-color: transparent;
  border-left-color: transparent;
  -webkit-transform: rotate(40deg);
  transform: rotate(40deg);
}









.custom_button {
    display: inline-block;
    position: relative;
    cursor: pointer;
    text-align: center;
    padding: 8px 12px 8px 12px;
    border-radius: 2px;
    background: #333333;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px; 
    line-height: 16px;
    font-weight: 400;
    transition: 0.3s;
    margin: 0px;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.custom_button:hover {
    background: #111111 !important;
    color: #fff;
}


.custom_button_disabled {
  display: inline-block;
  position: relative;
  text-align: center;
  padding: 8px 12px 8px 12px;
  border-radius: 2px;
  background: #ccc;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px; 
  line-height: 16px;
  font-weight: 400;
  transition: 0.3s;
  margin: 0px;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}






.micro_button {
    display: inline-block;
    position: relative;
    cursor: pointer;
    text-align: center;
    border-radius: 2px;
    padding: 5px 8px 4px 8px;
    text-align: center; 
    background: #333333;
    color: #fff;
    font-size: 13px; 
    line-height: 13px;
    font-weight: 400;
    transition: 0.3s;
    margin: 0px;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.micro_button:hover {
    background: #111111 !important;
    color: #fff;
}




.menu_tab {
    display: inline-block;
    position: relative;
    text-align: center;
    padding: 10px 0px 10px 0px;
    border-bottom: 3px solid rgba(255,255,255,0.3);
    box-sizing: border-box;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px; 
    line-height: 18px;
    font-weight: 400;
    transition: 0.3s;
    margin: 0px;
    margin-left: 15px;
    margin-right: 15px;
    cursor: pointer;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.menu_tab:hover {
    color: #ff0;
    border-bottom: 3px solid #ff0;
}








.client_tab {
  display: inline-block;
  position: relative;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  font-family: 'Roboto Condensed', sans-serif;
  color: #888;
  text-align: center;
  padding: 0px;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(120,120,120,0.5);
  cursor: pointer;
  margin: 0px;
  margin-left: 4px;
  margin-right: 4px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.client_tab:hover {
  color: #ff0;
  border-bottom: 1px solid #ff0;
} 

.client_tab_active {
  display: inline-block;
  position: relative;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  font-family: 'Roboto Condensed', sans-serif;
  color: #fff;
  text-align: center;
  padding: 0px;
  padding-bottom: 3px;
  border-bottom: 3px solid #fff;
  margin: 0px;
  margin-left: 4px;
  margin-right: 4px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}






.admin_tile {
  display: flex;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  padding: 8px;
  background: #efefef;
  border-radius: 4px;
  flex-flow: row wrap;
  gap: 8px;
  justify-content: flex-start;
  color: #000;
  font-size: 14px;
  line-height: 16px;
  text-align: left;
  margin-bottom: 14px;
}





.user_tile {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  padding: 0px; 
  padding-bottom: 12px;
}


.user_tile_inner {
  display: block;
  position: relative;
  width: 100%;
  min-height: 230px;
  box-sizing: border-box;
  padding: 8px; 
  background: #efefef;
  border-radius: 3px;
  text-align: left;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: normal;
  color: #222;
  line-height: 15px;
  break-inside: avoid;
}





#user_columns {
  display: block;
  position: relative;
  width: 100%;
  padding: 0px;
  box-sizing: border-box;
  text-align: left;
  column-count: 4; 
  column-gap: 12px;
  column-fill: balance;
}

@media screen and (min-width: 1201px) {
  #user_columns { 
      column-count: 4; 
  }
}
@media screen and (min-width: 851px) and (max-width: 1200px) {
  #user_columns { 
      column-count: 3; 
  }
}
@media screen and (min-width: 501px) and (max-width: 850px) {
  #user_columns { 
      column-count: 2; 
  }
}
@media screen and (max-width: 500px) {
  #user_columns { 
      column-count: 1;
  }
}





  .loader {
    display: inline-block;
    color: #ffbb00;
    font-size: 90px;
    text-indent: -9999em;
    overflow: hidden;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    margin: 72px auto;
    position: relative;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load6 1.7s infinite ease, round 1.7s infinite ease;
    animation: load6 1.7s infinite ease, round 1.7s infinite ease;
  }
  @-webkit-keyframes load6 {
    0% {
      box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
    5%,
    95% {
      box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
    10%,
    59% {
      box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
    }
    20% {
      box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
    }
    38% {
      box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
    }
    100% {
      box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
  }
  @keyframes load6 {
    0% {
      box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
    5%,
    95% {
      box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
    10%,
    59% {
      box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
    }
    20% {
      box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
    }
    38% {
      box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
    }
    100% {
      box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
  }
  @-webkit-keyframes round {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  @keyframes round {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }







.search_user_button {
    display: inline-block;
    position: relative;
    cursor: pointer;
    text-align: center;
    padding: 4px 12px 4px 12px;
    border-radius: 4px;
    background: #ffffcc;
    border: 1px solid rgba(0,0,0,0.7);
    color: #000;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px; 
    line-height: 14px;
    font-weight: 400;
    transition: 0.3s;
    margin: 0px;
    margin-top: 6px;
    margin-bottom: 8px;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


.match_button {
    display: inline-block;
    position: relative;
    cursor: pointer;
    text-align: center;
    padding: 4px 12px 4px 12px;
    border-radius: 4px;
    background: #efefef;
    border: 1px solid rgba(0,0,0,0.7);
    color: #000;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px; 
    line-height: 14px;
    font-weight: 400;
    transition: 0.3s;
    margin: 0px;
    margin-bottom: 8px;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.match_button_selected {
    display: inline-block;
    position: relative;
    cursor: pointer;
    text-align: center;
    padding: 4px 12px 4px 12px;
    border-radius: 4px;
    background: #0b0;
    border: 1px solid rgba(0,0,0,0.7);
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px; 
    line-height: 14px;
    font-weight: 400;
    transition: 0.3s;
    margin: 0px;
    margin-bottom: 8px;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


.search_result_box {
    display: block; 
    position: relative; 
    width: 100%; 
    padding: 6px; 
    box-sizing: border-box; 
    text-wrap: nowrap; 
    text-overflow: ellipsis; 
    overflow: hidden; 
    text-align: left; 
    background: #fff;
    cursor: pointer;
}

.search_result_box:hover {
    background: #eee;
}



.subscriber_search_result_box {
    display: block; 
    position: relative; 
    width: 100%; 
    padding: 6px; 
    color: #000;
    box-sizing: border-box; 
    text-wrap: nowrap; 
    text-overflow: ellipsis; 
    overflow: hidden; 
    text-align: left; 
    background: #fff;
    cursor: pointer;
}

.subscriber_search_result_box:hover {
    background: #eee;
}






.cal_circle {
  display: inline-block; 
  position: absolute; 
  top: 0px; 
  left: calc(50% - 15px); 
  width: 30px; 
  height: 30px; 
  border-radius: 50%;
  color: #222;
  cursor: pointer; 
  background: none;
}

.cal_circle:hover {
  background: #eee;
}



.cal_circle_clicked {
  display: inline-block; 
  position: absolute; 
  top: 0px; 
  left: calc(50% - 15px); 
  width: 30px; 
  height: 30px; 
  border-radius: 50%;
  color: #222;
  cursor: pointer; 
  background: #eee;
}



.cal_circle_booked {
  display: inline-block; 
  position: absolute; 
  top: 0px; 
  left: calc(50% - 15px); 
  width: 30px; 
  height: 30px; 
  border-radius: 50%;
  color: #000;
  cursor: pointer; 
  background: #afa;
}



.cal_circle_blacked {
  display: inline-block; 
  position: absolute; 
  top: 0px; 
  left: calc(50% - 15px); 
  width: 30px; 
  height: 30px; 
  border-radius: 50%;
  color: #fff;
  cursor: pointer; 
  background: #b00;
}



.cal_circle_blacked_saturday {
  display: inline-block; 
  position: absolute; 
  top: 0px; 
  left: calc(50% - 15px); 
  width: 30px; 
  height: 30px; 
  border-radius: 50%;
  color: #fff;
  cursor: default; 
  background: #b00;
}



.cal_day_info_box {
  display: none; 
  position: relative; 
  top: -54px; 
  width: 100%; 
  box-sizing: border-box; 
  padding: 4px; 
  box-sizing: border-box; 
  text-align: left; 
  z-index: 9999; 
  background: #ffe; 
  border: 1px solid #aaa;
}
