[x-cloak] { display: none !important; }

/* Tinymce hide */
.tox-promotion,
.tox-statusbar__branding {
    display: none;
}



/* Header styling */
body .location-create .days
{
    display: flex;
    /* width: 390px; */
}
body .location-create .days .invisible,
body .location-create .days ~ .invisible
{
    display: none !important;
}

body .location-create #same-hours
{
    display: flex;
    margin-top: 30px;
}


body header.fixed-top.scrolled .scroll
{
    background-color: #000000;
}

body header.fixed-top .scroll
{
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
    transition: all .5s ease-out;
}


body header.fixed-top .scroll a
{
    color: #FFFFFF;
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
    transition: all .5s ease-out;
}

body header.fixed-top.scrolled a.active
{
    color: rgba(255, 255, 255, var(--tw-text-opacity));
    border-bottom: solid 1px rgba(75, 85, 99, var(--tw-text-opacity));
}


body header.fixed-top a.active
{
    color: rgba(255, 255, 255, var(--tw-text-opacity));
    border-bottom: solid 1px rgba(255, 255, 255, var(--tw-text-opacity));
}

body header.fixed-top #nav-toggle svg
{
    fill: white;
}



/* Banner styling doesnt work*/

body #banner .words:nth-child(3)
{
    color: rgba(249, 115, 22, var(--tw-bg-opacity));
    background-color: orange;
}


/* Waves styling */

.waves {
    position:relative;
    width: 100%;
    height:15vh;
    margin-bottom:-7px; /*Fix for safari gap*/
    min-height:100px;
    max-height:150px;
  }

  .content {
    position:relative;
    height:20vh;
    text-align:center;
    background-color: white;
  }

  /* Animation */

  .parallax > use {
    animation: move-forever 40s cubic-bezier(.55,.5,.45,.5)     infinite;
  }
  .parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 14s;
  }
  .parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 20s;
  }
  .parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 26s;
  }
  .parallax > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 40s;
  }
  @keyframes move-forever {
    0% {
     transform: translate3d(-90px,0,0);
    }
    100% {
      transform: translate3d(85px,0,0);
    }
  }

  /*Shrinking for mobile*/
  @media (max-width: 768px) {
    .waves {
      height:40px;
      min-height:40px;
    }
    .content {
      height:30vh;
    }
    h1 {
      font-size:24px;
    }
  }

/* Checkbox slider */
input:checked ~ .dot {
    transform: translateX(100%);
}

input:checked ~ .track {
    background-color: #008000;
}

input ~ .track:after
{
    content:'OFF';
    color: white;
    display: block;
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    right: -10%;
    font-size: 8px;
    font-family: Verdana, sans-serif;
}

input:checked ~ .track:after
{
    content:'ON';
    right: 40%;
}









.select-wrapper {
    margin: 150px auto;
    max-width: 600px;
    width: calc(100% - 40px);
  }

  .select-pure__select {
    align-items: center;
    background: #f9f9f8;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
    box-sizing: border-box;
    color: #363b3e;
    cursor: pointer;
    display: flex;
    font-size: 12px;
    font-weight: 500;
    justify-content: left;
    min-height: 44px;
    padding: 5px 10px;
    position: relative;
    transition: 0.2s;
    width: 100%;
  }

  .select-pure__options {
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
    box-sizing: border-box;
    color: #363b3e;
    display: none;
    left: 0;
    max-height: 221px;
    overflow-y: scroll;
    position: absolute;
    top: 50px;
    width: 100%;
    z-index: 5;
  }

  .select-pure__select--opened .select-pure__options {
    display: block;
  }

  .select-pure__option {
    background: #fff;
    border-bottom: 1px solid #e4e4e4;
    box-sizing: border-box;
    height: 44px;
    line-height: 25px;
    padding: 10px;
  }

  .select-pure__option--selected {
    color: #e4e4e4;
    cursor: initial;
    pointer-events: none;
  }

  .select-pure__option--hidden {
    display: none;
  }

  .select-pure__selected-label {
    background: #5e6264;
    border-radius: 4px;
    color: #fff;
    cursor: initial;
    display: inline-block;
    margin: 5px 10px 5px 0;
    padding: 3px 7px;
  }

  .select-pure__selected-label:last-of-type {
    margin-right: 0;
  }

  .select-pure__selected-label i {
    cursor: pointer;
    display: inline-block;
    margin-left: 7px;
  }

  .select-pure__selected-label i:hover {
    color: #e4e4e4;
  }

  .select-pure__autocomplete {
    background: #f9f9f8;
    border-bottom: 1px solid #e4e4e4;
    border-left: none;
    border-right: none;
    border-top: none;
    box-sizing: border-box;
    font-size: 16px;
    outline: none;
    padding: 10px;
    width: 100%;
  }



  .switch {
      position: relative;
      display: inline-block;
      width: 60px;
      height: 34px;
  }

  /* Hide default HTML checkbox */
  .switch input {
      opacity: 0;
      width: 0;
      height: 0;
  }

  /* The slider */
  .slider {
      position: absolute;
      cursor: pointer;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: #ccc;
      -webkit-transition: .4s;
      transition: .4s;
  }

  .slider:before {
      position: absolute;
      content: "";
      height: 26px;
      width: 26px;
      left: 4px;
      bottom: 4px;
      background-color: white;
      -webkit-transition: .4s;
      transition: .4s;
  }

  input:checked + .slider {
      background-color: #2196F3;
  }

  input:focus + .slider {
      box-shadow: 0 0 1px #2196F3;
  }

  input:checked + .slider:before {
      -webkit-transform: translateX(26px);
      -ms-transform: translateX(26px);
      transform: translateX(26px);
  }

  /* Rounded sliders */
  .slider.round {
      border-radius: 34px;
  }

  .slider.round:before {
      border-radius: 50%;
  }


  .days .container.day {
      min-width: 55px;
  }

  .container .round-checkbox {
      position: relative;
  }

  .container .round-checkbox label {
      background-color: red;
      border: 1px solid #ccc;
      border-radius: 50%;
      cursor: pointer;
      height: 50px;
      left: 0px;
      position: absolute;
      top: 0px;
      width: 50px;

      color: #FFFFFF;
      display: flex;
      align-items: center;
      justify-content: center;

  }

  .container .round-checkbox label:after {
      border: 2px solid #fff;
      border-top: none;
      border-right: none;
      height: 6px;
      left: 15px;
      position: absolute;
      top: 15px;
      transform: rotate(-45deg);
      width: 12px;
  }

  .container .round-checkbox input[type="checkbox"] {
      visibility: hidden;
  }

  .container .round-checkbox input[type="checkbox"]:checked + label {
      background-color: #66bb6a;
      border-color: #66bb6a;
  }


  .container .round-checkbox input[type="checkbox"]:checked + label:after {
      opacity: 0;
  }

  .loader {
	border-top-color: #3498db;
	-webkit-animation: spinner 1.5s linear infinite;
	animation: spinner 1.5s linear infinite;
}

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spinner {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}



/* backup for the calendar colors */
.calendar .bg-green-400 {
    background-color: #4ADE80;
}

.calendar .bg-red-400 {
    background-color: #F87171;
}

.calendar .bg-yellow-400 {
    background-color: #FACC15;
}

.calendar .bg-orange-400 {
    background-color: #FB923C;
}


/* NEW Slider */
.switch-pricing {
    position: relative;
    display: inline-block;
    height: 34px;
    margin: 10px 0px;
  }

  .switch-pricing input {
    display: none;
  }

  .sliding {
    display: flex;
    cursor: pointer;
    border: 2px solid #34507B;
    border-radius: 5px;
  }

  .sliding div {
    padding: 10px 50px;
  }

  .sliding:before {
    position: absolute;
    content: "";
    height: 36px;
    width: 47%;
    left: 7px;
    bottom: -8px;
    background-color: #34507B;
    transition: 0.4s;
    border-radius: 5px;
  }

  input:focus + .sliding {
    box-shadow: 0 0 1px #2196F3;
  }

  .pricing input:checked + .sliding:before {
    transform: translateX(104%);
  }

  .pricing .month,
  .pricing .annual {
    width: 170px;
  }

  .pricing .sliding .month,
  .pricing .sliding .annual {
    color: #A9A9A9;
    transition: 0.4s;
  }

  .pricing input:not(:checked) + .sliding .month,
  .pricing input:checked + .sliding .annual {
    color: #FFFFFF;
    transition: 0.4s;
  }
