.test{background-size:100}*{font-family:"clone-rounded-latin" !important}*:focus{outline:none !important}.darkgrey{color:#393838 !important}div,p{line-height:1em}p{color:#393838}.page h1,.page h2,.page h3,.page h4,.page h5{clear:left;float:left;width:100%;font-weight:300}.conflict{background:#fd9ba7 !important}.unapproved{background:rgba(66,170,33,0.5)}.approved{background:#42aa21}

/* Working hours styling */
.non-working-hours {
  background: #f5f5f5 !important;
  opacity: 0.4;
  cursor: not-allowed !important;
  position: relative;
}

.non-working-hours:hover {
  box-shadow: none !important;
  cursor: not-allowed !important;
}

.non-working-hours::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.1) 2px,
    rgba(0,0,0,0.1) 4px
  );
  pointer-events: none;
}

/* Venue Settings Styles */
.edit_venue_settings .venue-settings-container {
  max-width: 800px;
  margin: 0 auto;
}

.edit_venue_settings .settings-section {
  background: #f9f9f9;
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.edit_venue_settings .settings-section .checkbox-label {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  cursor: pointer;
}

.edit_venue_settings .settings-section .checkbox-label input[type="checkbox"] {
  margin-right: 12px;
  transform: scale(1.2);
}

.edit_venue_settings .settings-section .help-text {
  color: #717070;
  font-size: 14px;
  margin: 8px 0 0 0;
  line-height: 1.4em;
}

.edit_venue_settings .working-hours-section {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  margin-bottom: 30px;
  transition: opacity 0.3s ease;
}

.edit_venue_settings .working-hours-section.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.edit_venue_settings .working-hours-section .day-hours-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.edit_venue_settings .working-hours-section .day-row {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.edit_venue_settings .working-hours-section .day-row:hover {
  background-color: #f8f8f8;
}

.edit_venue_settings .working-hours-section .day-row .day-label {
  min-width: 100px;
  font-weight: 500;
  color: #393838;
  font-size: 16px;
}

.edit_venue_settings .working-hours-section .day-row .time-input {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  width: 120px;
  transition: border-color 0.2s ease;
}

.edit_venue_settings .working-hours-section .day-row .time-input:focus {
  border-color: #42aa21;
  outline: none;
  box-shadow: 0 0 0 3px rgba(66, 170, 33, 0.1);
}

.edit_venue_settings .working-hours-section .day-row .time-input:disabled {
  background-color: #f5f5f5;
  cursor: not-allowed;
}

.edit_venue_settings .working-hours-section .day-row .time-separator {
  font-size: 18px;
  color: #717070;
  font-weight: 500;
}

.edit_venue_settings .working-hours-section .day-row .btn-copy-hours {
  background: #42aa21;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.edit_venue_settings .working-hours-section .day-row .btn-copy-hours:hover:not(:disabled) {
  background: #3a9a1e;
}

.edit_venue_settings .working-hours-section .day-row .btn-copy-hours:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.edit_venue_settings .working-hours-section .day-row[data-day="monday"] {
  background-color: #f0f8f0;
  border: 2px solid rgba(66, 170, 33, 0.2);
}

.edit_venue_settings .actions-section {
  text-align: center;
  padding: 20px 0;
}

.edit_venue_settings .actions-section .save-venue-settings-btn {
  background: #42aa21;
  color: white;
  border: none;
  padding: 15px 40px;
  font-size: 18px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 500;
}

.edit_venue_settings .actions-section .save-venue-settings-btn:hover:not(:disabled) {
  background: #3a9a1e;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.edit_venue_settings .actions-section .save-venue-settings-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.edit_venue_settings .actions-section .status-message {
  display: none;
  margin-top: 20px;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 500;
  text-align: center;
}

.edit_venue_settings .actions-section .status-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.edit_venue_settings .actions-section .status-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.edit_venue_settings .actions-section .status-message.warning {
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffeaa7;
}

@media screen and (max-width: 768px) {
  .edit_venue_settings {
    padding: 100px 20px 0 20px;
  }

  .edit_venue_settings .working-hours-section .day-row {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .edit_venue_settings .working-hours-section .day-row .day-label {
    min-width: auto;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
  }

  .edit_venue_settings .working-hours-section .day-row .time-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .edit_venue_settings .working-hours-section .day-row .time-input {
    width: 100px;
  }

  .edit_venue_settings .working-hours-section .day-row .btn-copy-hours {
    margin-top: 10px;
    align-self: center;
    width: 200px;
  }
}button{-moz-appearance:none;appearance:none;background:none;border:none;cursor:pointer;display:block;float:left}button .title{text-align:center;color:#717070}input:-webkit-autofill,input:-webkit-autofill:hover,input:-webkit-autofill:focus,input:-webkit-autofill:active{-webkit-transition-delay:9999s;-webkit-transition:color 9999s ease-out, background-color 9999s ease-out}button{color:#42aa21}button:hover i{color:rgba(66,170,33,0.5)}.approve-reservation i{font-size:80px}.show-in-callendar i{font-size:40px}.delete-reservation i{font-size:40px}.booking-list .lane{text-align:center;font-size:20px}.booking-list{border-collapse:collapse;border-spacing:0px}.booking-list .info{cursor:pointer}table th{vertical-align:bottom;font-weight:bold;height:30px;text-align:left;vertical-align:middle;padding:0px 0px 0px 5px;cursor:pointer}table[data-sortable] th,table[data-sortable] td{text-align:left;padding:10px}table[data-sortable] th:not([data-sortable="false"]){-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent;-webkit-touch-callout:none;cursor:pointer}table[data-sortable] th:after{content:"";visibility:hidden;display:inline-block;vertical-align:inherit;height:0;width:0;border-width:5px;border-style:solid;border-color:transparent;margin-right:1px;margin-left:10px;float:right}table[data-sortable] th[data-sorted="true"]:after{visibility:visible}table[data-sortable] th[data-sorted-direction="descending"]:after{border-top-color:inherit;margin-top:8px}table[data-sortable] th[data-sorted-direction="ascending"]:after{border-bottom-color:inherit;margin-top:3px}table[data-sortable].sortable-theme-light{color:#333333;background:#fff}table[data-sortable].sortable-theme-light tbody td{border-top:1px solid #e0e0e0}.tablesorter-header-inner{cursor:pointer}#loading{position:fixed;height:100%;width:100%;background:rgba(255,255,255,0.1);z-index:100}@-webkit-keyframes uil-ring-anim{0%{-ms-transform:rotate(0deg);-moz-transform:rotate(0deg);-webkit-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg)}100%{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes uil-ring-anim{0%{-ms-transform:rotate(0deg);-moz-transform:rotate(0deg);-webkit-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg)}100%{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@-moz-keyframes uil-ring-anim{0%{-ms-transform:rotate(0deg);-moz-transform:rotate(0deg);-webkit-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg)}100%{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@-ms-keyframes uil-ring-anim{0%{-ms-transform:rotate(0deg);-moz-transform:rotate(0deg);-webkit-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg)}100%{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@-moz-keyframes uil-ring-anim{0%{-ms-transform:rotate(0deg);-moz-transform:rotate(0deg);-webkit-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg)}100%{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes uil-ring-anim{0%{-ms-transform:rotate(0deg);-moz-transform:rotate(0deg);-webkit-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg)}100%{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@-o-keyframes uil-ring-anim{0%{-ms-transform:rotate(0deg);-moz-transform:rotate(0deg);-webkit-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg)}100%{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes uil-ring-anim{0%{-ms-transform:rotate(0deg);-moz-transform:rotate(0deg);-webkit-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg)}100%{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}.uil-ring-css{background:none;position:relative;width:300px;height:300px;margin:auto;top:calc(50% - 190px)}.uil-ring-css>div{position:absolute;display:block;width:340px;height:340px;top:50px;left:50px;border-radius:50%;box-shadow:0 6px 0 0 #59b800;-ms-animation:uil-ring-anim 0.9s linear infinite;-moz-animation:uil-ring-anim 0.9s linear infinite;-webkit-animation:uil-ring-anim 0.9s linear infinite;-o-animation:uil-ring-anim 0.9s linear infinite;animation:uil-ring-anim 0.9s linear infinite}#nav-icon2{width:40px}#nav-icon2 span{display:block;position:absolute;height:5px;width:50%;background:#fff;opacity:1;-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg);-webkit-transition:.25s ease-in-out;-moz-transition:.25s ease-in-out;-o-transition:.25s ease-in-out;transition:.25s ease-in-out}#nav-icon2 span:nth-child(even){left:50%;border-radius:0 3px 3px 0}#nav-icon2 span:nth-child(odd){left:0px;border-radius:3px 0 0 3px}#nav-icon2 span:nth-child(1),#nav-icon2 span:nth-child(2){top:0px}#nav-icon2 span:nth-child(3),#nav-icon2 span:nth-child(4){top:12px}#nav-icon2 span:nth-child(5),#nav-icon2 span:nth-child(6){top:24px}#nav-icon2.open span:nth-child(1),#nav-icon2.open span:nth-child(6){-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg)}#nav-icon2.open span:nth-child(2),#nav-icon2.open span:nth-child(5){-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);-o-transform:rotate(-45deg);transform:rotate(-45deg)}#nav-icon2.open span:nth-child(1){left:5px;top:3px}#nav-icon2.open span:nth-child(2){left:calc(50% - 5px);top:3px}#nav-icon2.open span:nth-child(3){left:-50%;opacity:0}#nav-icon2.open span:nth-child(4){left:100%;opacity:0}#nav-icon2.open span:nth-child(5){left:5px;top:13px}#nav-icon2.open span:nth-child(6){left:calc(50% - 5px);top:13px}@font-face{font-family:"Flaticon";src:url("../fonts/flaticon.eot");src:url("../fonts/flaticon.eot#iefix") format("embedded-opentype"),url("../fonts/flaticon.woff") format("woff"),url("../fonts/flaticon.ttf") format("truetype"),url("../fonts/flaticon.svg") format("svg");font-weight:normal;font-style:normal}[class^="flaticon-"]:before,[class*=" flaticon-"]:before,[class^="flaticon-"]:after,[class*=" flaticon-"]:after{font-family:Flaticon;font-size:inherit;font-style:normal}.flaticon-add31:before{content:"\e000"}.flaticon-airplane116:before{content:"\e001"}.flaticon-announcer1:before{content:"\e002"}.flaticon-attach16:before{content:"\e003"}.flaticon-backward5:before{content:"\e004"}.flaticon-badge12:before{content:"\e005"}.flaticon-bell76:before{content:"\e006"}.flaticon-book270:before{content:"\e007"}.flaticon-bookmark54:before{content:"\e008"}.flaticon-building106:before{content:"\e009"}.flaticon-calendar194:before{content:"\e00a"}.flaticon-cancel29:before{content:"\e00b"}.flaticon-check74:before{content:"\e00c"}.flaticon-chevron1:before{content:"\e00d"}.flaticon-chevron2:before{content:"\e00e"}.flaticon-chevron3:before{content:"\e00f"}.flaticon-chevron:before{content:"\e010"}.flaticon-clock169:before{content:"\e011"}.flaticon-cloud18:before{content:"\e012"}.flaticon-cloud367:before{content:"\e013"}.flaticon-copy1:before{content:"\e014"}.flaticon-cut38:before{content:"\e015"}.flaticon-diskette17:before{content:"\e016"}.flaticon-dislike18:before{content:"\e017"}.flaticon-down arrow24:before{content:"\e018"}.flaticon-download194:before{content:"\e019"}.flaticon-expand10:before{content:"\e01a"}.flaticon-export:before{content:"\e01b"}.flaticon-eye130:before{content:"\e01c"}.flaticon-facebook7:before{content:"\e01d"}.flaticon-file128:before{content:"\e01e"}.flaticon-file129:before{content:"\e01f"}.flaticon-filter:before{content:"\e020"}.flaticon-font14:before{content:"\e021"}.flaticon-forbidden17:before{content:"\e022"}.flaticon-forward27:before{content:"\e023"}.flaticon-gear40:before{content:"\e024"}.flaticon-google4:before{content:"\e025"}.flaticon-grid2:before{content:"\e026"}.flaticon-headphones46:before{content:"\e027"}.flaticon-heart373:before{content:"\e028"}.flaticon-house204:before{content:"\e029"}.flaticon-information83:before{content:"\e02a"}.flaticon-laptop4:before{content:"\e02b"}.flaticon-left-arrow25:before{content:"\e02c"}.flaticon-like83:before{content:"\e02d"}.flaticon-lines7:before{content:"\e02e"}.flaticon-list100:before{content:"\e02f"}.flaticon-lock8:before{content:"\e030"}.flaticon-magnifying-glass33:before{content:"\e031"}.flaticon-magnifying-glass34:before{content:"\e032"}.flaticon-magnifying-glass35:before{content:"\e033"}.flaticon-mail2:before{content:"\e034"}.flaticon-microphone10:before{content:"\e035"}.flaticon-minimize1:before{content:"\e036"}.flaticon-minus6:before{content:"\e037"}.flaticon-move1:before{content:"\e038"}.flaticon-news:before{content:"\e039"}.flaticon-notepad20:before{content:"\e03a"}.flaticon-padlock86:before{content:"\e03b"}.flaticon-pause51:before{content:"\e03c"}.flaticon-pencil8:before{content:"\e03d"}.flaticon-pencil9:before{content:"\e03e"}.flaticon-phone14:before{content:"\e03f"}.flaticon-photo camera5:before{content:"\e040"}.flaticon-picture54:before{content:"\e041"}.flaticon-pin12:before{content:"\e042"}.flaticon-play127:before{content:"\e043"}.flaticon-pointer31:before{content:"\e044"}.flaticon-power115:before{content:"\e045"}.flaticon-print:before{content:"\e046"}.flaticon-question5:before{content:"\e047"}.flaticon-refresh8:before{content:"\e048"}.flaticon-right arrow30:before{content:"\e049"}.flaticon-sad70:before{content:"\e04a"}.flaticon-sales2:before{content:"\e04b"}.flaticon-screen88:before{content:"\e04c"}.flaticon-share53:before{content:"\e04d"}.flaticon-share55:before{content:"\e04e"}.flaticon-shopping cart13:before{content:"\e04f"}.flaticon-smartphone65:before{content:"\e050"}.flaticon-smiley3:before{content:"\e051"}.flaticon-sort2:before{content:"\e052"}.flaticon-speech balloon2:before{content:"\e053"}.flaticon-speech bubble34:before{content:"\e054"}.flaticon-star6:before{content:"\e055"}.flaticon-star7:before{content:"\e056"}.flaticon-support1:before{content:"\e057"}.flaticon-tablet4:before{content:"\e058"}.flaticon-tags:before{content:"\e059"}.flaticon-trash1:before{content:"\e05a"}.flaticon-treasure:before{content:"\e05b"}.flaticon-truck72:before{content:"\e05c"}.flaticon-twitter4:before{content:"\e05d"}.flaticon-up arrow46:before{content:"\e05e"}.flaticon-upload142:before{content:"\e05f"}.flaticon-user189:before{content:"\e060"}.flaticon-warning5:before{content:"\e061"}.flaticon-white flag1:before{content:"\e062"}.flaticon-wifi110:before{content:"\e063"}.ui-state-invalid>input[type="text"],.ui-state-invalid>input[type="tel"],.ui-state-invalid>input[type="email"],.ui-state-invalid>input[type="number"],.ui-state-invalid>select,.ui-state-invalid>textarea{background-image:url(../img/invalid_icon.png) !important;background-color:none !important;background-position:right -4px !important;background-repeat:no-repeat !important}.ui-state-valid>input[type="text"],.ui-state-valid>input[type="tel"],.ui-state-valid>input[type="email"],.ui-state-valid input[type="number"],.ui-state-valid>select,.ui-state-valid>textarea{background-image:url(../img/valid_icon.png) !important;background-color:none !important;background-position:right -4px !important;background-repeat:no-repeat !important}.ui-error-message{color:#BD1A00}body{padding:0px;margin:0px;font-family:"clone-rounded-latin";line-height:1em;min-height:100%;height:100vh}h4{font-size:16px;color:#717070;margin:0px;padding:18px 0px 8px}.blur{-webkit-filter:blur(8px);-moz-filter:blur(8px);-o-filter:blur(8px);-ms-filter:blur(8px);filter:blur(8px);transition:1s}.float-left{float:left}.float-right{float:right}.no-blur{-webkit-filter:blur(0px);-moz-filter:blur(0px);-o-filter:blur(0px);-ms-filter:blur(0px);filter:blur(0px);transition:1s}.navbar-header h1,.navbar-header h2,.navbar-header h3,.navbar-header h4{line-height:1 !important}body>.header,.navbar-header{width:100%;height:77px;position:fixed;z-index:6;float:left}body>.header .top,.navbar-header .top{background:#42aa21;height:77px;position:relative;z-index:2;box-shadow:0px 2px 10px rgba(0,0,0,0.4)}body>.header .logo,.navbar-header .logo{clear:both;width:199px;margin:auto;cursor:pointer;background:inherit;position:relative}body>.header .logo h1,.navbar-header .logo h1{display:block;text-align:center;margin:0px;padding:13px 0px 13px 0;color:#fff;font-size:30px;font-weight:300}body>.header .logo h2,.navbar-header .logo h2{display:block;text-align:center;margin:0px;padding:2px;color:rgba(255,255,255,0.7);font-size:15px;font-weight:300}body>.header .logo .b,.navbar-header .logo .b{display:inline-block;background:inherit;width:20px;height:20px;margin:auto;position:absolute;left:calc(50% - 10px);background:inherit;-ms-transform:rotate(45deg);-webkit-transform:rotate(45deg);transform:rotate(45deg);top:66px}body.admin>.header .top{background:#2C2C2C}@media screen and (max-width: 480px){.logo{margin:0px 20px 0px 5px !important}.logo h1,.logo h2{text-align:left !important}}.page{padding:00px 00px 0px 00px}.hide{display:none}.btn{padding:10px 30px;background-color:#42aa21;border:none;color:#fff;font-size:24px;cursor:pointer}.btn-grey{padding:10px 30px;background-color:#717070;border:none;color:#fff;font-size:24px;cursor:pointer}.btn-sm{background-color:#42aa21;padding:10px;color:#fff;cursor:pointer;margin:3px;text-align:center;width:20px}.btn-sml{background-color:#42aa21;padding:10px;color:#fff;cursor:pointer;margin:3px;text-align:center}.btn-sml-grey{background-color:#2C2C2C;padding:10px;color:#fff;cursor:pointer;margin:3px;text-align:center}.menu{position:absolute;top:22px;right:22px;cursor:pointer}.menu .n{float:left;display:block;padding:8px 68px 8px 8px;color:#fff;position:absolute;left:-67px}.menu div{float:left}.menu div span{width:25px;height:3px;background:#fff;clear:both;display:block;margin:3px 0;float:left;border-radius:3px}.subnav{background:#f2f2f2;position:fixed;z-index:5;height:64px;top:77px;width:100%;left:0px}.subnav .link{display:block;cursor:pointer;padding:25px 50px;text-decoration:none;color:black}.subnav .icon{color:#42aa21}.subnav .date_select img{position:relative;top:3px;margin-right:5px}.subnav .date_select{font-size:23px;line-height:1em;margin-top:18px;float:left;margin-left:18px;cursor:pointer}.selected_date{cursor:pointer;display:inline-block;padding-left:10px}@media screen and (max-width: 480px){.subnav .selected_date{font-size:16px}}.selected_date::first-letter{text-transform:uppercase !important}.flaticon-calendar194{color:#42aa21}.subnav .date_select a{text-decoration:none;color:rgba(0,0,0,0.5)}.content{padding-top:140px;position:relative;z-index:1}.content .lane-number ul{list-style:none;margin:0px;padding:0px;width:39px;float:left;padding-top:42px;box-shadow:2px 0px 5px rgba(0,0,0,0.04);border-right:1px solid #fff}.content .lane-number ul li{height:42px;display:block;background:#f0efef;margin-bottom:1px;font-weight:600;text-shadow:-1 -1 -1 #fff;text-align:center}.content .lane-number ul li span{display:block;padding:12px}.content .wraper{width:calc(100% - 41px);float:left}.content .sclanes{float:left;width:100%;display:block;position:relative;padding-top:42px}.content .sclanes .lane{clear:both;display:block;width:2275px}.content .lane .date{height:42px;width:90px;border-right:solid 1px #f4f4f4;border-bottom:solid 1px #f4f4f4;display:block;float:left;margin:0px;padding:0px;position:relative;box-shadow:0px 0px 0px #b7eca5;transition:0.6s}.time_slots .content .lane .date{width:45px}.time_slots .content .lane .date.no-border{border-right:none}.content .lane .date:hover{box-shadow:0px 0px 15px #b7eca5;transition:0.3s}.content .lane.top{background:#fff;position:fixed;top:140px;z-index:2;box-shadow:0 2px 5px rgba(0,0,0,0.04);left:auto;background:rgba(255,255,255,0.9)}.content .lane.top .date{width:91px;padding-top:12px;text-align:center;border:none;border-bottom:1px solid #f4f4f4;position:relative;z-index:3;height:30px;color:#393838}.content .lane .date .reserved{position:relative;height:100%;background:rgba(66,170,33,0.5);display:block;color:#fff;border-left:5px solid #42aa21;z-index:1;transition:background 0.6s;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;border-radius:4px}.content .lane .date .reserved.highlight{background:#a2de07 !important}.content .lane .date .reserved.approved{background:rgba(66,170,33,0.9)}.content .lane .date .reserved.maintenance{background:#393838}.content .lane .date .reserved:hover{z-index:2;float:left;background:rgba(66,170,33,0.9);overflow:visible;transition:0.6s}.content .lane .date .reserved .name{padding:10px 10px;display:inline-block;overflow:hidden;white-space:nowrap;font-weight:300;width:calc(100% - 20px);overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.reserved .info{display:none;position:static;background:grey;border-radius:4px;width:65px;z-index:1;top:30px;font-size:10px;padding:5px;text-align:center}.reserved:hover .info{display:block}.mCSB_draggerContainer{display:none}#mCSB_1_scrollbar_horizontal{position:absolute;top:-10px}.to_right{position:fixed;right:0px;width:10px;padding:11px 16px 12px 38px;background:linear-gradient(to right, rgba(255,255,255,0), #fff, #fff);z-index:5;text-decoration:none;color:#717070}.to_left{position:fixed;left:0px;padding:11px 25px 12px 15px;background:linear-gradient(to left, rgba(255,255,255,0), #fff, #fff);z-index:6;text-decoration:none;color:#717070;font-weight:bold;text-decoration:none}.mode_select{position:absolute;top:24px;right:30px;float:right;z-index:10}.mode_select a{color:#42aa21}.mode_select span{transform:rotate(90deg);display:block;height:30px;width:16px;float:right}select.dropdown{-webkit-appearance:none;-moz-appearance:none;text-indent:1px;text-overflow:'';background:url("/assets/img/drop_down_arrow.png") top 10px right 5px no-repeat;font-size:18px;padding:7px 40px 7px 10px;border:1px solid #e2e2e2;border-radius:5px;width:180px;display:block}select.dropdown.disabled{background:#717070}@media screen and (max-width: 480px){select.dropdown{width:100%}}.edit_venue_settings,.edit_responsible_persons{padding:180px 50px 0px 50px}.add_booking,.edit_conflict,.edit_announcements{padding:180px 50px 0px 50px}.add_booking form .date,.add_booking #endDate,.edit_conflict form .date,.edit_conflict #endDate,.edit_announcements form .date,.edit_announcements #endDate{font-weight:normal;font-size:28px;clear:both}.add_booking select,.edit_conflict select,.edit_announcements select{-webkit-appearance:none;-moz-appearance:none;text-indent:1px;text-overflow:'';background:url("/assets/img/drop_down_arrow.png") top 10px right 5px no-repeat}.add_booking #available_to,.add_booking #weeks,.edit_conflict #available_to,.edit_conflict #weeks,.edit_announcements #available_to,.edit_announcements #weeks{font-size:18px;padding:7px 40px 7px 10px;border:1px solid #e2e2e2;border-radius:5px;width:180px;display:block}.add_booking .weekControl,.edit_conflict .weekControl,.edit_announcements .weekControl{float:left;clear:both}.add_booking #start-visible,.edit_conflict #start-visible,.edit_announcements #start-visible{font-size:18px;border:none;border:1px solid #e2e2e2;clear:both;display:block;margin-right:20px;border-radius:5px}.add_booking #start-visible span,.edit_conflict #start-visible span,.edit_announcements #start-visible span{padding:9px 40px 13px 10px;display:block}h3{color:#42aa21;font-weight:normal;font-size:12px}.dateCapitalizer{display:inline-block}.dateCapitalizer::first-letter{text-transform:uppercase !important}.form{background:#f2f2f2;width:100%;margin:-50px;padding:50px;margin-top:20px;clear:both;float:left}.form input[type='text'],.form input[type='phone'],.form input[type='email'],.form input[type='password']{width:100%;background-color:transparent;border:none;border-bottom:1px solid grey;margin:20px 0px;font-size:20px}.form select.dropdown{margin:10px 0 20px}.fp_menu{display:block;position:fixed;top:76px;bottom:0px;width:100%;left:0;right:0px;height:100%;height:100vh;z-index:10;background:inherit;display:none;color:#fff}.fp_menu a{color:#fff}.fp_menu .col{width:50%;float:left}.fp_menu .col .container{padding-left:40%;padding-top:40px}@media screen and (max-width: 800px){.fp_menu .col .container{padding-left:40px}}.fp_menu .col .item{font-size:16px;float:left;display:block}.fp_menu .col .icon i{float:left;clear:both;font-size:64px;color:#42aa21;margin-bottom:20px;height:53px;margin-top:30px}.fp_menu .col h1,.fp_menu .col h4{color:#fff;padding:40px 0px 5px 10px;font-weight:300;clear:both}.fp_menu .col a{padding:3px 10px;display:block;clear:both;float:left}#add_line{background:#42aa21}.add_line,.added_lines{clear:both;display:block;float:left;padding-bottom:0px}.added_lines ul,.add_line ul{list-style:none;margin:0px;padding:0px}.popup ul{width:100%;list-style:none;margin:0px;padding:0px}.popup .lane li,.added_lines li,.add_line li{background:#f0efef;float:left;margin:2px;border-radius:3px;padding:13px;text-align:center;width:23px;color:#fff;cursor:pointer;color:black;font-weight:bold;display:block;font-size:17px}.big_links{text-align:center;margin-top:100px}.big_links a{color:#fff;font-size:48px;display:block;text-decoration:none;clear:both;padding:30px;line-height:1em}.ui-widget.ui-widget-content{background:#2c2c2c;color:#fff}.ui-widget-header{color:#fff;background:none;border:none}.ui-state-default,.ui-widget-content .ui-state-default{background:none;color:rgba(255,255,255,0.8);height:25px;width:25px;text-align:center;line-height:25px;border-radius:50%;border:none}.ui-state-default:hover{background:rgba(255,255,255,0.2)}.ui-state-active{background:rgba(66,170,33,0.5) !important}.ui-datepicker td{text-align:center}.ui-datepicker thead{color:rgba(255,255,255,0.5);font-size:11px;text-align:center}.sclanes{-webkit-transition:2s;transition:2s}.popup{position:fixed;z-index:9;background:#fff;width:100%;max-width:500px;right:calc(50% - 250px);top:100px;box-shadow:0px 0px 20px rgba(0,0,0,0.5);overflow-y:auto;max-height:80vh;box-shadow:0px 0px 20px rgba(0,0,0,0.5)}.popup .header{padding:10px 30px;background-color:#42aa21;width:auto;height:20px}.popup .header h3{font-size:20px;color:#fff;padding:0px;margin:0px}.popup .content{padding:30px;overflow-y:auto;overflow-x:auto}.popup .contactInfo{clear:both;width:100%;float:left;font-size:20px}.popup .actions{float:left;clear:both;margin:20px 0px;padding:10px 0;width:100%}.popup .close{position:absolute;top:10px;right:10px;padding:3px;color:#fff;cursor:pointer}@media screen and (max-width: 480px){.popup{right:0px;left:0px}}.list-view{padding-top:142px}.sortable td{padding:15px 5px}.sortable tr{border-bottom:solid 1px #f2f2f2}.sortable table th{vertical-align:bottom;font-weight:normal;font-size:20px;padding:10px;text-align:left}.dayslot{height:100%;display:inline-block;width:5px;background:#42aa21;margin-right:1px}.dow{font-weight:regular;position:absolute;top:6px;width:100%;color:#393838}.dom{font-weight:regular;position:absolute;top:26px;width:100%;font-size:10px;color:#393838}.ui-selected{background:rgba(255,19,19,0.4)}.edit_announcements #announcement-textarea{width:calc(100% - 40px);border:none;box-shadow:0px 0px 3px #717070;height:200px;padding:20px;display:block;margin:20px 0px}.edit_announcements .status{color:#42aa21}.edit_announcements .list{padding:30px 0px;clear:both}.edit_announcements .title{color:#717070;font-size:18px;font-weight:600}.edit_announcements .actions{padding:10px 0px}.edit_announcements .item{float:left;width:100%;clear:both;padding:10px 0px}.announcementContainer{width:100%;max-width:500px;right:calc(50% - 250px);top:calc(50% - 100px);position:fixed;z-index:99}@media screen and (max-width: 500px){.announcementContainer{width:90%;right:5%;top:calc(50% - 100px);position:fixed;z-index:99}}.announcement{width:calc(100% -40px);margin-top:1px;padding:20px;position:relative}.announcement .icon{text-align:center;font-size:62px;color:#fff;padding-bottom:20px}.announcement .text{font-size:18px;color:#fff}.announcement .close{float:right;position:absolute;color:#fff;cursor:pointer;top:10px;right:10px;padding:5px;font-size:20px}.announcement.red{background:rgba(255,0,0,0.9)}.announcement.orange{background:rgba(255,0,0,0.9)}.ui-state-highlight{background:#42aa21 !important}.search{height:30px;width:233px;margin:4px;border:none;border-bottom:1px solid gray}.highlight{background:#e2e2e2}.switch{position:relative;display:inline-block;width:60px;height:34px}.switch input{display:none}.slider{position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;background-color:#ccc;-webkit-transition:.4s;transition:.4s;border-radius:4px}.slider:before{position:absolute;content:"";height:26px;width:26px;left:4px;bottom:4px;background-color:white;-webkit-transition:.4s;transition:.4s;border-radius:3px}input:checked+.slider{background-color:#42aa21}input:focus+.slider{box-shadow:0 0 1px #2196F3}input:checked+.slider:before{-webkit-transform:translateX(26px);-ms-transform:translateX(26px);transform:translateX(26px)}.slider.round{border-radius:34px}.slider.round:before{border-radius:50%}.dayControl{clear:both;padding:20px 0px}.dayControl .day{width:60px;float:left;margin-right:10px}.dayControl span{display:block;width:100%;text-align:center;padding:4px 0px}.dayControl label{clear:both}.textpage{padding-top:70px;padding-bottom:70px}.textpage .container{width:740px;margin:0px auto}@media screen and (max-width: 800px){.textpage .container{padding:40px;width:auto}}.textpage ol{padding:0px;margin:20px 0px}.textpage li{padding:10px 0px}.textpage ol{counter-reset:item}.textpage ol li{display:block;line-height:1.5em;color:#393838}.textpage ol li:before{content:counter(item) ". ";counter-increment:item;color:#42aa21;font-weight:bold}.textpage h1{font-size:36px;font-weight:300;line-height:1.3em}.textpage h2{font-weight:bold;font-size:18px;line-height:1.6em}.textpage p{line-height:1.6em;font-size:16px}.textpage .subsection{border-top:solid 1px #42aa21;margin-top:30px;padding-top:20px}.textpage .subsection p{line-height:1.7em;font-size:14px}.textpage h4{font-weight:bold}.overbooking .text{padding:10px;clear:both}.overbooking .actions{margin:0px}.overbooking .conflicts{padding:10px}.overbooking .conflicts .booking{border-bottom:1px solid #e2e2e2;clear:both;float:left;width:100%}.overbooking .conflicts .conflict{padding:11px;font-size:19px;float:left;clear:both;width:20px;text-align:center}.overbooking .conflicts .day{padding:11px;float:left}.overbooking .conflicts .time{padding:11px;float:left}.overbooking .conflicts .user{padding:11px;float:left}.page-header{margin-top:125px !important}.btn-primary{background:#2C2C2C}.navbar-inverse{background:#42aa21}.navbar-brand{color:#fff !important}.form-control{border-radius:0px !important;border:none;border-bottom:solid 1px #393838 !important;box-shadow:none}input.error{background-image:url(../img/invalid_icon.png) !important;background-color:transparent !important;background-position:right center !important;background-repeat:no-repeat !important;background-size:25px}input.valid{background-image:url(../img/valid_icon.png) !important;background-color:transparent !important;background-position:right center !important;background-repeat:no-repeat !important;background-size:25px}label.error{display:none !important}.fixed-from-top{top:135px !important}
.edit_venue_settings .venue-settings-container{max-width:700px}.edit_venue_settings .settings-section,.edit_venue_settings .working-hours-section,.edit_venue_settings .actions-section{background:#f2f2f2;padding:20px;margin-bottom:20px}.edit_venue_settings .checkbox-label{display:flex;align-items:center;clear:both;gap:10px;font-size:18px;cursor:pointer}.edit_venue_settings .checkbox-label input[type="checkbox"]{width:20px;height:20px;cursor:pointer}.edit_venue_settings .help-text{color:#717070;font-size:13px;margin:8px 0 0}.edit_venue_settings .working-hours-section.disabled{opacity:0.5}.edit_venue_settings .working-hours-section .day-hours-grid{display:block;clear:both}.edit_venue_settings .working-hours-section .day-row{display:flex;align-items:center;flex-wrap:wrap;gap:10px;padding:10px 0;border-bottom:1px solid #e2e2e2}.edit_venue_settings .working-hours-section .day-row:last-child{border-bottom:none}.edit_venue_settings .working-hours-section .day-row .day-label{width:90px;flex-shrink:0;color:#393838;font-weight:600}.edit_venue_settings .working-hours-section .day-row .time-controls{display:flex;align-items:center;gap:10px}.edit_venue_settings .working-hours-section .day-row .time-input{padding:7px 10px;border:1px solid #e2e2e2;border-radius:5px;background:#fff;font-size:16px}.edit_venue_settings .working-hours-section .day-row .time-input:focus{outline:2px solid #42aa21 !important;outline-offset:2px}.edit_venue_settings .working-hours-section .day-row .time-input:disabled{background-color:#f5f5f5;cursor:not-allowed}.edit_venue_settings .working-hours-section .day-row .time-separator{color:#717070}.edit_venue_settings .working-hours-section .day-row .btn-copy-hours{margin-left:auto;padding:8px 16px;background-color:#717070;color:#fff;border:none;cursor:pointer;font-size:13px}.edit_venue_settings .working-hours-section .day-row .btn-copy-hours:focus{outline:2px solid #42aa21 !important;outline-offset:2px}.edit_venue_settings .working-hours-section .day-row .btn-copy-hours:disabled{background:#ccc;cursor:not-allowed}.edit_venue_settings .actions-section{display:flex;align-items:center;gap:20px}.edit_venue_settings .actions-section .save-venue-settings-btn:disabled{background-color:#ccc;cursor:not-allowed}@media screen and (max-width: 480px){.edit_venue_settings .day-row{flex-direction:column;align-items:flex-start}.edit_venue_settings .btn-copy-hours{margin-left:0}}
.status-message{display:none;padding:10px 15px;font-size:14px;border-left:4px solid transparent}.status-message.success{display:block;background:rgba(66,170,33,0.12);color:#2c3e2c;border-left-color:#42aa21}.status-message.error{display:block;background:rgba(189,26,0,0.08);color:#BD1A00;border-left-color:#BD1A00}.status-message.warning{display:block;background:rgba(243,156,18,0.12);color:#7a4b06;border-left-color:#f39c12}
.edit_responsible_persons .responsible-persons-container{max-width:900px}.edit_responsible_persons .responsible-persons-actions{padding:20px 0;clear:both;overflow:hidden}.edit_responsible_persons .responsible-persons-list-wrapper{clear:both;overflow-x:auto;max-width:100%}.edit_responsible_persons .responsible-persons-list td.valid{color:#2c3e2c}.edit_responsible_persons .responsible-persons-list td.expiring{color:#7a4b06}.edit_responsible_persons .responsible-persons-list td.expired{color:#BD1A00}.edit_responsible_persons .responsible-persons-list td a{color:#42aa21;cursor:pointer;text-decoration:none}.edit_responsible_persons .responsible-persons-list td a:hover{text-decoration:underline}.responsible-person-form-popup .content{padding:20px 30px}.responsible-person-form-popup input[type="text"],.responsible-person-form-popup input[type="email"],.responsible-person-form-popup input[type="date"]{width:100%;box-sizing:border-box;background-color:transparent;border:none;border-bottom:1px solid grey;margin:5px 0 20px;font-size:16px}.responsible-person-form-popup select.dropdown{width:100%;box-sizing:border-box;margin-bottom:20px}.responsible-person-form-popup textarea{width:100%;box-sizing:border-box;background:transparent;border:1px solid #e2e2e2;border-radius:5px;padding:10px;font-size:14px;font-family:inherit;margin-bottom:20px}.responsible-person-form-popup .checkbox-label{display:block;margin-bottom:15px;cursor:pointer}.responsible-person-form-popup .checkbox-label input[type="checkbox"]{margin-right:8px}.responsible-person-form-popup .actions{padding:10px 0}
/*# sourceMappingURL=main.css.map */
