
body {
    overflow: scroll;
}


html {
    margin: 0px;
    padding: 0px;
}
body * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

a:link, a:visited, a:active {
  color: #7A6A21;
}

.target {
    scroll-margin-top: 300px; /* Height of the fixed header */
}

.text_small {
	font-size:14px;	
	}

.top__menu {
background-color:#fafafa;    
	position: fixed;
    top: 0px;
    left: 240px;
    width: calc(100% - 240px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
    padding: 5px 65px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 3;
    /* -webkit-box-pack: end; */
    /*  -ms-flex-pack: end; */
    /*  justify-content: flex-end; */
}
.top__menu > a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 35px;
    border-radius: 5px;
    padding-left: 15px;
    padding-right: 15px;
    background-color: #9b882a;
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    -webkit-transition: 0.4s ease all;
    transition: 0.4s ease all;
    white-space: nowrap;
}

.top__menu > a:hover {
    opacity: 0.7;
}
.top__menu form {
    width: 400px;
    margin-right: 40px;
}
.top__menu form .group__input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.top__menu form .group__input button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 33px;
    max-height: 33px;
    min-width: 35px;
    max-width: 35px;
    background-color: transparent;
    border: 0px;
    background-color: #9b882a;
    cursor: pointer;
    -webkit-transition: 0.4s ease all;
    transition: 0.4s ease all;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
.top__menu form .group__input button:hover {
    opacity: 0.7;
}
.top__menu form .group__input button img {
    max-width: 20px;
}
.top__menu form .group__input > input {
    width: 100%;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    font-size: 15px;
    padding-left: 14px;
    padding-right: 14px;
    outline: none;
    height: 35px;
    border: 1px solid #cecece;
}
.main__content {
    width: 100%;
    max-width: calc(100% - 240px);
    margin-left: auto;
    padding-left: 3%;
    padding-top: 40px;
    margin-top: 60px;
    min-height: calc(100vh - 71px);
}
.sidebar {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 240px;
    background-color: #3a3a3a;
    height: 100%;
    overflow-y: auto;
    z-index: 3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.sidebar .top {
    padding-top: 20px;
}
.sidebar .top .menu ul {
    padding: 0px;
    list-style-type: none;
    margin: 0px;
}
.sidebar .top .menu ul > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.sidebar .top .menu ul > li > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 10px 18px;
    text-decoration: none;
    font-size: 13px;
    -webkit-transition: 0.4s ease all;
    transition: 0.4s ease all;
    color: #fff;
}
.sidebar .top .menu ul > li > a:hover {
    background-color: #9b882a;
}
.sidebar .top .menu ul > li > a:hover span {
    background-color: #fff;
    color: #9b882a;
}
.sidebar .top .menu ul > li > a.active {
    background-color:#565656;
    font-weight:bold;
}
.sidebar .top .menu ul > li > a.active span {
    background-color: #fff;
    color: #9b882a;
}
.sidebar .top .menu ul > li > a span {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-left: 5px;
    -webkit-transition: 0.4s ease all;
    transition: 0.4s ease all;
    background-color: #9b882a;
    font-size: 12px;
    padding: 2px 4px;
    border-radius: 5px;
}
.sidebar .top .logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 20px;
}
.sidebar .top .logo > a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}
.sidebar .top .logo > a > img {
    max-height: 100px;
    max-width: 100%;
}
.sidebar .bottom {
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
}
.sidebar .bottom > p {
    font-size: 12px;
    color: #fff;
    font-weight: 400;
    margin: 0px;
}

.sidebar .top .menu ul > li.sub.active > a{
    font-weight: bold;
}
.sidebar .top .menu ul > li.sub > a{
    background-color:#2e2e2e;
    font-size:12px;
    padding-left:30px;
}
.sidebar .top .menu ul > li.sub > a span{
    background-color:#c5c5c5;
    color:#000;
}

.group__input {
    width: 100%;
    margin-bottom: 15px;
}
.group__input .radios,
.group__input .checks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-top: -5px;
}
.group__input .radios > .container__radio,
.group__input .radios > .container__check,
.group__input .checks > .container__radio,
.group__input .checks > .container__check {
    margin: 5px 7px;
}
.group__input > span {
    display: block;
    margin-top: 5px;
    font-size: 14px;
    color: #000;
}
.group__input > p {
    margin-top: 0px;
    margin-bottom: 6px;
    font-size: 15px;
    font-weight: 600;
    color: #000;
}
.group__input > select {
    background: url("../img/arrow.png");
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: calc(100% - 5px) center;
}
.group__input>textarea{
    width: 100%;
    height: 132px;
    border-radius: 5px;
    outline:none;
    padding:15px;
    border:1px solid #cecece;
    font-size: 16px;
    -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: '';
  resize:none;
}
.group__input > input,
.group__input > select {
    width: 100%;
    height: 30px;
    border-radius: 5px;
    outline: none;
    border: 1px solid #cecece;
    padding: 0px 7px;
    font-size: 15px;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: "";   
}

input:focus {
    background-color: #FEFDE9;
		}


.message__box {
	   padding: 5px 5px 5px 5px;
    margin-bottom: 25px;
    font-size: 14px;
    background-color: #EFFEE7;
    width: 400px;  /* Adjusted width */
    text-align: center;
    display: inline-block;  
    vertical-align: top;    
    margin-right:10px;
}

.message__box2 {
    padding: 5px 10px 5px 10px;
    margin-bottom: 5px;
    font-size: 14px;
    background-color: #FDE6D5;
    width: 400px;  
    text-align: center;
    display: inline-block;  
    vertical-align: top;   
}


.message__box3 {
    padding: 5px 10px 5px 10px;
    margin-bottom: 5px;
    font-size: 14px;
    background-color: #FDF7D5;
    width: 400px;  
    text-align: center;
    display: inline-block;  
    vertical-align: top;   
}


.communication__box {
		font-size:16px;
		background-color:#f9f9f9;
		border-radius: 5px;
}

.communication__header {
		padding:7px 4px 0px 7px;
		font-size:13px;
		font-weight:bold;
}

.communication__content {
		padding:7px 7px 7px 7px;
		font-size:13px;
		line-height:20px;
		background-color:#f9f9f9;
		border-radius: 5px;
		margin-bottom:7px;
}


.general__box {
		padding:0px 20px 20px 0px;
		font-size:16px;
}

.general__text {
		padding:0px 0px 0px 0px;
		font-size:14px;
		margin:0;
}

.general__info {
		width:700px;
		background-color:#F8F8F8;
		padding:10px;
		line-height:30px;
		font-size:14px;
		word-wrap: break-word;
}


.general__box > strong {
font-size:18px;
font-weight:bold;
}

.form__box {
    
}
.form__box .triple__field {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 15px;
    margin-bottom: 15px;
}
.form__box .triple__field > .group__input {
    margin-bottom: 0px;
}
.form__box .double__field {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 15px;
    margin-bottom: 15px;
}
.form__box .double__field > .group__input {
    margin-bottom: 0px;
}
.form__box .inner__form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 60px;
}
.container__radio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    font-size: 15px;
}
.container__radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.container__radio .checkmark {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    top: 0;
    left: 0;
    height: 16px;
    width: 16px;
    margin-right: 7px;
    border: 1px solid #cecece;
    border-radius: 50%;
}
.container__radio .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.container__radio input:checked ~ .checkmark:after {
    display: block;
}
.container__radio .checkmark:after {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f79758;
}
.container__check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.container__check input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.container__check .checkmark {
    position: relative;
    top: 0;
    left: 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    height: 16px;
    width: 16px;
    margin-right: 7px;
    border: 1px solid #cecece;
}
.container__check .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.container__check input:checked ~ .checkmark:after {
    display: block;
}
.container__check .checkmark:after {
    left: 50%;
    top: 50%;
    width: 4px;
    height: 8px;
    border: solid #f79758;
    margin-left: -5px;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg) translate(-50%, -50%);
    transform: rotate(45deg) translate(-50%, -50%);
}
.group__submit {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.group__submit > button {
    background-color: #9b882a;
    border-radius: 5px;
    padding: 8px 15px;
    font-size: 15px;
    color: #fff;
    cursor: pointer;
    border: 0px;
    -webkit-transition: 0.4s ease all;
    transition: 0.4s ease all;
    outline: none;
}
.group__submit > button:hover {
    opacity: 0.7;
}
.group__input:last-child {
    margin-bottom: 0px;
}

@media (max-width: 991px) {
    .form__box {
        padding: 25px 15px;
    }
    .form__box .inner__form {
        grid-template-columns: 1fr;
        grid-row-gap: 15px;
    }
    .form__box .inner__form {
        grid-column-gap: 30px;
    }
}
@media (max-width: 480px) {
    .form__box .triple__field {
        grid-template-columns: 1fr;
        grid-row-gap: 15px;
    }
}




.styled-table {
    min-width: 350px;
    background-color:#ffffff;
    border-spacing:0px;
    margin: 18px 0;
    font-size: 0.8em;
    font-family: sans-serif;
    border:1px solid #707070;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
.styled-table thead tr {
    background-color:#436C96;
    color: #ffffff;
    text-align: left;
}
.styled-table th {
    padding: 11px 11px;
    width:200px;
    text-align:left;
    background-color:#E8D682;
}
.styled-table td {
    padding: 11px 11px;
    background-color:;
    color:#606060;
    cursor:pointer;
    width:150px;
}
.styled-table tbody tr {
    border-bottom: 1px solid #dddddd;  
}

.styled-table tbody tr:last-of-type {
    border-bottom: 2px solid #009879;
}
.styled-table td:hover
	{
	  background-color:;
	}
	

.styled-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

.styled-table tbody tr:hover
	{
	  background-color:#FAF9CB;
	}

.table_menu {
text-align:right; 
font-weight:bold;
}

.table_small {
  margin: 25;
  width: 1200px;
}

.table_1250 {
  margin: 25;
  width: 1250px;
}

.table_1350 {
  margin: 25;
  width: 1350px;
}


.table_medium {
  margin: 25;
  width: 1000px;
}


.table_mini {
  margin: 25;
  width: 600px;
}

.table_800 {
  margin: 25;
  width: 800px;
}



.table_micro {
  margin: 25;
  width: 350px;
}





.custom-file-input::-webkit-file-upload-button {
  visibility: hidden;
}
.custom-file-input::before {
  content: 'Selecteer bestand(en)';
  display: inline-block;
  background: linear-gradient(top, #f9f9f9, #e3e3e3);
  border: 1px solid #999;
  border-radius: 3px;
  padding: 5px 8px;
  outline: none;
  white-space: nowrap;
  -webkit-user-select: none;
  cursor: pointer;
  text-shadow: 1px 1px #fff;
  font-weight: 700;
  font-size: 10pt;
}
.custom-file-input:hover::before {
  border-color: black;
}
.custom-file-input:active::before {
  background: -webkit-linear-gradient(top, #e3e3e3, #f9f9f9);
}




.table_menu2{
    display:flex;
    align-items: center;
    justify-content: space-between;
    font-weight:bold;
}
.table_menu2 .general__text{
    padding:0px;
}
.select__list{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.select__list>select:last-child{
    margin-right: 0px;
}
.select__list>select{
    width: 100%;
    height: 28px;
    border-radius: 5px;
    font-size: 14px;
    border:1px solid #cecece;
    margin-right: 12px;
    outline:none;
    padding-left: 10px;
    padding-right: 25px;
    -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: '';
  background:url("../img/arrow.png");
  background-repeat: no-repeat;
  background-size: 14px;
  background-position: calc(100% - 5px) center;
}
.general__text{
    margin-left: 15px;
}
.general__text>a{
    white-space: nowrap;
}


/* header notification text*/
.desc{
  margin-left: 0px;
  min-width: 565px;
  max-width: 940px;
  overflow: hidden;
  white-space: nowrap; 
  text-overflow: ellipsis;
}
.desc>p{
  font-size: 14px;
  line-height: 23px;
  color:#444;
}




/*NEW STYLES 26.04*/
.no__space{
  padding:0px!important;
}
.elem__day{
  padding:11px;
}
.elem__day>span{
  font-weight: bold;
  font-size: 12px;
  line-height: 16px;
  display: block;
  margin-bottom: 5px;
  color:#303030;
  margin-left:5px;
}
.elem__day>p{
  color:#000;
  font-size: 12px;
  line-height: 16px;
  margin-top: 0px;
  margin-bottom: 5px;
  margin-left:5px;
}
.elem__day>p:last-child{
  margin-bottom: 0px;
}
.elem__day:nth-child(1){
  border-top:1px solid #A0A0A0;
}
.elem__day{
  border-right:1px solid #A0A0A0;
  border-bottom:1px solid #A0A0A0;
}
.elem__day:last-child{
  border-bottom:0px;
}

.price__box{
  margin-bottom: auto;
  padding:10px;
}
.price__box .inner__price{
  border:2px solid #FF941D;
  padding:5px;
  background-color:#FFFFF1;
}
.price__box .inner__price>.elem{
  margin-bottom: 15px;
}
.price__box .inner__price>.elem{
  display: flex;
  flex-direction:column;
  align-items: flex-start;
}
.price__box .inner__price>.elem>span{
  font-size: 13px;
  line-height: 16px;
  color:#000;
  font-weight: 400;
}
.price__box .inner__price>.elem>p{
  font-size: 13px;
  line-height: 16px;
  color:#000;
  font-weight: bold;
  margin-top: 0px;
  margin-bottom: 4px;
}
.price__box .inner__price>.elem:last-child{
  margin-bottom: 0px;
}
table.schedule tr td{
  padding:0px;
}
table.schedule tr{
  background-color: transparent!important
}
table.schedule td{
  vertical-align: top!important;
}

.elem__day:nth-child(1){
border-top:0px!important;
}

.schedule tbody tr:nth-child(1) th{
border-bottom:0px solid #A0A0A0;
}



/* 0.18A */

.squares{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.squares .square{
    display: inline-flex;
    min-width: 22px;
    max-width: 22px;
    min-height: 22px;
    max-height: 22px;
    margin-right: 6px;
    align-items: center;
    justify-content: center;
    background-color:#ffd16b;
    font-size: 12px;
}
.squares .square.green{
    background-color:#cdff6b;
}
.squares .square:last-child{
    margin-right: 0px;
}


/* for dialer interface page  */
.form__box.longer{
	max-width: 1220px!important;
	padding-right: 15px;
}
.form__box.longer .inner__form{
	display: flex;
	grid-column-gap: 0px;
	justify-content: space-between;
}
.form__box.longer .inner__form>.column:nth-child(1){
	min-width: 500px;
	max-width: 500px;
	margin-right: 50px;
}

.form__box.longer .inner__form>.column:nth-child(2) { width:100% }


