.pure-g > div {
    box-sizing: border-box;
}

.l-box {
    padding: 1em;
}

table.rd-table {
	text-align: center;
}

table.rd-table h4 {
	font-size: 1em !important;
}

a.rdc-available {
	color: green !important;
}

a.rdc-booked {
	color: red !important;
}

.entry-content ul {
	padding: 0px !important;
}

.nw-product-and-slots-wrapper {
	text-align: center;
}
.nw-product-and-slots-wrapper th {
	text-transform: uppercase;
}

#nw-booking-page-categories-menu-bar {
	width: 100%;
	margin:0 auto;
	text-align: center;
}

.nw-category-item {
	display: inline;
	margin: 2px 4px;
	padding: 10px 12px;
	border: 1px solid #333333;
	text-transform: uppercase;
	font-size: 12px;
}

.pure-modal .checkbox {
    display: none;
}
/* Gray background */

.pure-modal .pure-modal-overlay {
    opacity: 0;
    transition: all 0.3s ease;
    width: 50%;
    position: absolute;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10011 !important;
    transform: scale(1);
    display: none;
    background-color: rgba(0, 0, 0, 0.5);
}
/* Box */

.pure-modal .pure-modal-wrap {
    background: #fdfbfb;
    border-radius: 0.2em;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.05em;
    line-height: 1.6;
    padding: 40px 65px;
    width: 60%;
    margin: 20px auto;
    align-self: flex-start;
    transition: all 0.5s ease;
}
.pure-modal .pure-modal-wrap.small {
    width: 30%;
}
.pure-modal .pure-modal-wrap.full {
    width: 100%;
    height: 100%;
}
.pure-modal .pure-modal-wrap.a-center {
    align-self: center;
}
.pure-modal .pure-modal-wrap.from-left {
    transform: translateX(-100%);
}
.pure-modal .pure-modal-wrap.from-right {
    transform: translateX(100%);
}
.pure-modal .pure-modal-wrap.from-top {
    transform: translateY(-100%);
}
.pure-modal .pure-modal-wrap.from-bottom {
    transform: translateY(100%);
}
/* Close button */

.pure-modal .pure-modal-overlay .close {
    display: flex;
    flex-direction: column;
    align-content: center;
    background: #282c34;
    border-radius: 50%;
    justify-content: center;
    position: absolute;
    right: -10px;
    top: -10px;
    font-size: 15px;
    width: 30px;
    height: 30px;
    color: #d1d1d1;
}
.pure-modal .pure-modal-overlay .close:hover {
    cursor: pointer;
    background-color: #d1d1d1;
    color: #4b5361;
    transition: all 0.3s ease;
}
.pure-modal .o-close {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: -100;
}
.pure-modal input:checked~.o-close {
    z-index: 9998;
}
.pure-modal input:checked~.pure-modal-overlay {
    transform: scale(1);
    opacity: 1;
    z-index: 9997;
    overflow: auto;
    display: flex;
    animation-duration: 0.5s;
    animation-name: fade-in;
    -moz-animation-duration: 0.5s;
    -moz-animation-name: fade-in;
    -webkit-animation-duration: 0.5s;
    -webkit-animation-name: fade-in;
}
.pure-modal input:checked~.pure-modal-overlay .pure-modal-wrap {
    transform: translateY(0);
    z-index: 9999;
}
/* Responsive Design */

/* Tablet size */

@media (max-width: 800px) {
    .pure-modal .pure-modal-wrap {
        width: 80%;
        padding: 20px;
    }
}
/* Phone size */

@media (max-width: 500px) {
    .pure-modal .pure-modal-wrap {
        width: 90%;
    }
}
/* Fadein from display:none */

@keyframes fade-in {
    0% {
        display: none;
        opacity: 0;
    }
    1% {
        display: flex;
        opacity: 0;
    }
    100% {
        display: flex;
        opacity: 1;
    }
}
@-moz-keyframes fade-in {
    0% {
        display: none;
        opacity: 0;
    }
    1% {
        display: flex;
        opacity: 0;
    }
    100% {
        display: flex;
        opacity: 1;
    }
}
@-webkit-keyframes fade-in {
    0% {
        display: none;
        opacity: 0;
    }
    1% {
        display: flex;
        opacity: 0;
    }
    100% {
        display: flex;
        opacity: 1;
    }
}