@import "forms.css";

:root{
    --medium-color: #999999;
    --lightest-color: #f5f7f3;
    --light-color: #dde5da;
    --dark-color: #00B557;
    --darkest-color: #003F00;
    --shiny-color: #18D700;
}

body {
  background: #3f3f3f;
  color: #fff;
  margin-top: 5rem;
}

p {
  margin-bottom: 0.0rem;
}

table.opening-hours-table td:not(:first-child) {
  padding-left: 20px;
}

table.opening-hours-table tr:not(:first-child) td{
  padding-top: 5px;
}

a.a-no-style {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  color: #444444;
}

ul {
  margin: 0;
}

ul.spaced-list li:not(:last-child) {
    padding-bottom: 5px;
}

.bg-steel {
  background: #171717;
}

.site-header .navbar-nav .nav-link {
  font-weight: 450;
  color: var(--lightest-color);
}

.site-header .navbar-nav .nav-link:hover {
  text-shadow: 0px 0px 7px var(--lightest-color);
  color: #ffffff;
}

.site-header .navbar-nav .nav-link.active {
  font-weight: 500;
}

.content-section {
  background: #2f2f2f;
  padding: 10px 20px;
  /* border: 1px solid var(--medium-color); */
  border-radius: 3px;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.article-title {
  color: var(--darkest-color);
}

.article-img {
  height: 65px;
  width: 65px;
  margin-right: 16px;
}

.article-metadata {
  text-align: right;
  padding-bottom: 1px;
  border-top: 1px solid #404040;
}

.article-content {
  padding-bottom: 0.5rem;
}

.article-svg {
  width: 25px;
  height: 25px;
  vertical-align: middle;
}

.account-img {
  height: 125px;
  width: 125px;
  margin-right: 20px;
  margin-bottom: 16px;
}

.account-heading {
  font-size: 2.5rem;
}

.btn-page {
    color: #fff;
    background: #1b1b1b;

}

.btn-page:hover {
    color: #fff;
    background: #464646;
}

.btn-outline-page {
    color: #fff;
    border-color: #9a9a9a;
}

.btn-outline-page:hover {
    color: #fff;
    background: #464646;
}

label {
    margin-bottom: 0px;
}

div.gallery-image img:hover {
  transform: scale(1.05);
}

table.reservation-summary{
    color: black;
    width: 100%;
}

table.reservation-summary a {
    color: black;
}

table.reservation-summary thead tr {
    background-color: #e3ffe5;
}

table.reservation-summary tr {
    background-color: #d3f7dd;
}

table.reservation-summary tr:nth-child(even) {
    background-color: #e3ffe5;
}

table.reservation-summary td, th {
	padding: 3px 11px 3px 4px;
}

table.data-list td {
    padding: 0px 15px 3px 0px;
}

.navbar {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.img-thumbnail {
    transition: transform 0.2s;
}

a {
    color: #afafaf;
}

a:hover {
    color: #ccc;
}

.column {
  float: left;
  padding: 10px;
  box-sizing: border-box;
}

.service-info-column {
  width: 66%;
}

.service-price-column {
  width: 34%;
  text-align: right;
  height: 100%;
}
/* Clear floats after the columns */
.service-row:after {
  content: "";
  display: table;
  clear: both;
}
.service-row{
border-bottom: 1px dashed #3f3f3f;
}

.service-name{
    font-weight: 500;
}

.flex-group{
    display: flex;
    flex-flow: row wrap;
}

.fixed-width-div{
    width: 98px !important;
}

.post-link{
    color: #fff;
}

.reservation-row {
    padding: 5px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.40);
    margin-top: 5px;
    border: 1px solid #171717;
    border-radius: 5px;
}

.reservation-row:nth-child(even) {
    background-color: #2b2b2b;
}

.reservation-row:nth-child(odd) {
    background-color: #1d1d1d;
}

.reservation-row:hover {
    background-color: #111
}

.reservation-info-col {
    text-align: right;
}

.select2{
    width: 100% !important;
    max-width: 100%;
}

.banner{
    margin-top: -24px;
    margin-bottom: 15px;
    background: rgb(30,30,30);
    background: linear-gradient(180deg, rgba(60,60,60,1) 0%, rgba(87,87,87,1) 50%, rgba(60,60,60,1) 100%);
    box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.banner-insides{
    padding: 5px 0px 5px 0px;
    display: flex;
    justify-content: space-between;
}

.banner-insides>img{
    max-height: 390px;
}

@media (min-width: 992px) and (max-width: 1199px)
{
    .banner-insides>img{
        max-height: 325px;
    }
}

@media (min-width: 768px) and (max-width: 991px)
{
    .banner-insides>img{
        max-height: 240px;
    }
}

@media (min-width: 576px) and (max-width: 767px)
{
    .banner-insides>img{
        max-height: 330px;
    }
}

@media (max-width: 575px)
{
    .banner-insides{
        justify-content: center;
    }

    .banner-insides>img{
        max-width: 100%;
        max-height: 450px;
    }
}

.same-height-row {
    display: flex;
    flex-wrap: wrap;
}
.same-height-row > [class*='col-'] {
    display: flex;
    flex-direction: column;
}

.same-height-col{
    height: 100%;
}

.scissors {
    height: 17px; /* image height */
    width: 100%;
    margin: auto auto;
    background-image: url('nuzky.png');
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
    position: relative;
    overflow: hidden;
    margin-top: -8px;
    margin-bottom: 2px;
}
.scissors::after {
    content: "";
    position: relative;
    top: 50%;
    display: block;
    border-top: 1px solid #b1b1b1;
    margin-top: -1px;
}

legend{
    margin-bottom: 0;
}

.input-group-text {
    color: #a9a9a9;
    background-color: #252525;
    border: 1px solid #060606;
}

.list-group-item {
    background-color: #444;
}

.list-group-item-action {
    color: #d6d6d6;
}

.list-group-item-action:focus, .list-group-item-action:hover{
    background-color: #232323;
    color: #fff;
}

.clickable-logo {
    cursor: pointer;
    width: 111px;
    height: 40px;
    background: url("logos.png") no-repeat left top;
}

.clickable-logo:hover {
    background-position: 0px -40px;
}


.service-group-header{
  background: #222222;
  font-size: 22px;
  background: linear-gradient(90deg, rgba(15,15,15,1) 0%, rgba(40,40,40,1) 85%, var(--theme-color) 100%);
  border-left: 6px solid var(--theme-color);
  --theme-color: #000;
}

.service-group:not(:last-child){
    margin-bottom: 8px;
}

.service-group-header-woman{
  --theme-color: #c30084;
}

.service-group-header-man{
  --theme-color: #0066c3;
}

.service-group-header-child{
  --theme-color: #ffc104;
}

.service-group-toggle{
  display: block;
  padding: 8px;
}

.service-group-toggle:after{
  font-family: 'Font Awesome 5 Free';
  content: "\f077";
  font-weight: 900;
  padding-right: 5px;
  display: inline-block;
  transition: all 0.5s;
  float: right;
}

.service-group-toggle:hover:after{
  transform: scale(1.3);
}

.service-group-toggle.collapsed::after{
  content: "\f078";
}

.services-list{
  border-left: 2px solid #1f1f1f;
  border-bottom: 2px solid #1f1f1f;
  border-right: 2px solid #1f1f1f;
}

.services-list-content{
    padding: 10px;
}

.danger-link{
    color: #bd0000;
}

.danger-link:hover{
    color: #ff0000;
}

.order:not(:first-child){
  margin-top: 5px;
}

.order-header-info{
  display: flex;
  flex-wrap: wrap;
}

.order-header-info>div{
  margin-right: 15px;
}

.order-actions{
  padding-left: 5px;
  padding-right: 5px;
  min-width: 55px;
}

.order-icon{
  margin-left: auto;
}

.order-header{
  background-color: #0f110f;
  display: flex;
  padding: 10px;
}

.order:nth-child(even) .order-header{
  background-color: #151715;
}

.order-details{
  padding: 10px;
  border: 1px black solid;
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
  font-size: 13px;
}

.order-details>div:not(:first-child){
  margin-top: 5px;
}

.order-details>div>i{
  margin-right: 3px;
}

.order{
    display: block;
}

.i-link:hover{
    cursor: pointer;
    color: #63ff75;
}

.data-row{
    padding: 7px 0px 7px 0px;
    border-bottom: 1px solid #353535;
    margin-left: -15px;
    margin-right: -15px;
}

.data-col{
    padding-left: 0px;
    padding-right: 0px;
}

.data-col.data-info-col{
    padding-right: 25px;
}

@media (max-width: 575px)
{
    .data-value-col{
        text-align: right;
    }
}

.legend-with-actions{
  display: flex;
}

.data-content{
    margin-bottom: 10px;
}

.reservation-history{
    margin-bottom: 10px;
    padding: 7px 0px 7px 0px;
    border-bottom: 1px solid #353535;
}

.reservation-history-message{
    font-size: 13px;
}

ul.dash {
    list-style: none;
    margin-left: 10px;
    padding-left: 1em;
}
ul.dash > li:before {
    display: inline-block;
    content: "-";
    width: 1em;
    margin-left: -1em;
}

.gdpr_list>li{
    margin-bottom: 5px
}

ol{
    padding-inline-start: 20px;
}

li{
    padding-left: 10px;
}



