@import url('https://fonts.googleapis.com/css2?family=Caveat+Brush&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    --background:rgba(249, 161, 79, 0.26);
    --white:#ffffff;
    --primary-color:#F68133;
    --black: #000000;
    --secondary-background:#F9F9F9;
    --btnBackground:#F56001;
}
*{
    margin:0;
    padding:0;
}
html {
    line-height: 1;
    -webkit-text-size-adjust: 100%
}

body {
   font-family: "Raleway", sans-serif;
    background: var(--background)!important;
}

main {
    display: block;
    padding-bottom: 40px;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible
}

pre {
    font-family: monospace,monospace;
    font-size: 1em
}

a {
    background-color: transparent
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted
}

/*b, strong {
    font-weight: bolder
}*/

code, kbd, pre, samp {
    padding: .4em;
    font-family: monospace,monospace;
    font-size: 100%;
    background-color: var(--cr-subtle)
}

small {
    font-size: 80%
}

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

img {
    border-style: none
}

button, input, optgroup, select, textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0
}

button, input {
    overflow: visible
}

button, select {
    text-transform: none
}

[type=button], [type=reset], [type=submit], button {
    -webkit-appearance: button
}

    [type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
        border-style: none;
        padding: 0
    }

    [type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring {
        outline: 1px dotted
    }

fieldset {
    padding: .35em .75em .625em
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal
}

progress {
    vertical-align: baseline
}

textarea {
    overflow: auto
}

[type=checkbox], [type=radio] {
    box-sizing: border-box;
    padding: 0
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

    [type=search]::-webkit-search-decoration {
        -webkit-appearance: none
    }

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

details {
    display: block
}

summary {
    display: list-item
}

[hidden], template {
    display: none
}

*, :after, :before {
    box-sizing: border-box !important;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: "Caveat Brush", cursive;
  font-weight: 400;
  font-style: normal;
}
ol, p, ul{
     margin: 0;
    padding: 0;
    list-style: none;
}

a {
    position: relative;
    word-wrap: break-word;
    text-decoration: none;
    border: none;
    outline: none;
    cursor: pointer
}
audio, canvas, embed, figure, iframe, img, object, picture, svg, video {
    display: block
}

canvas, figure, img, picture, video {
    max-width: 100%;
    height: auto;
    border: none;
    outline: none;
    margin: 0
}

button, input, optgroup, select, textarea {
    display: block;
    padding: 0;
    text-transform: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    color: inherit;
    background-color: transparent;
    border: 0;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none
}
button, input[type=submit] {
    cursor: pointer
}
textarea {
    resize: vertical
}
:-moz-focusring {
    outline: auto
}

::placeholder {
    color: #E1E1E1
}

::-webkit-input-placeholder {
    color: #E1E1E1
}

:-moz-placeholder {
    color: #E1E1E1
}

:-ms-input-placeholder {
    color: #E1E1E1
}
.btn {
    padding: 15px 30px;
    border-radius: 6px;
    text-transform: uppercase;
    font-weight: 700;
    background: var(--btnBackground);
    color: var(--white);
    letter-spacing: 1px;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 10px;
}
.btn-group-inner {
    margin-top: 40px;
    justify-content: center;
}
.btn.secondBtn{
    background: #00885B;
}
header{
    background:var(--white);
    width: 100%;
    padding: 5px 0;
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header ul {
    display: flex;
    gap: 50px;
}
header li a {
    font-size: 1em;
    text-transform: uppercase;
    color: var(--black);
}
.contactBtn {
    background: var(--primary-color);
}
.container{
    width: 1280px;
    margin: auto;
}
.sub-header{
    background: var(--primary-color);
    padding:50px 0 100px;
}
.sub-header .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap:10px;
}

.sub-header .container h1 {
    color: var(--white);
    font-size: 52px;
}
.sub-header .container ul {
    display: flex;
    gap: 10px;
}

.sub-header .container ul a {
    color: var(--white);
    margin-right: 5px;
}

.sub-header .container li {
    position: relative;
}

.sub-header .container li:after {
    content: "/";
    color: var(--white);
}

.sub-header .container li:last-child:after {
    display: none;
}
.sub-header .container li:last-child a{
    margin-right:0;
}
.sub-header .container ul a.active{
    color:var(--black);
   pointer-events: none;
}
.form-section{
    background: var(--secondary-background);
    border-radius: 40px;
    margin-top: -8rem;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.btn-group.text-align-center {
    text-align: center !important;
    min-width: 100%;
    margin-top: 0;
}

#module-lyoreservation-book .sectionTitle {
    margin-bottom: 0px;
    margin-top: 1rem;
}

.btn.nextBtn.pull-right.register-green{
    background: #00885B !important;
    color: #FFFFFF;
    display: flex;
}

.login-left {
    width: 50%;
    padding: 4% 6%;
    border-right: 5px solid var(--white);
}
.login-right {
    width: 50%;
    padding: 4% 6%;
}
.sectionTitle {
    font-size: 2.25em;
    margin-bottom: 40px;
}
.form-group {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.form-group label {
    display: block;
    width: 100%;
    font-size: 1rem;
    margin-bottom: 2px;
    padding-left: 1px;
}
.label-group {
    width: 100%;
    position: relative;
}

.toggle-password {
    position: absolute;
    top: -30px;
    right: 10px;
}
.form-group input:not([type="checkbox"]):not([type="radio"]),
.form-group select {
    width: 100%;
    background: var(--white);
    border-radius: 6px;
    padding: 15px;
    border: 1px solid #D0D0D0;
    box-shadow: 0px 5px 0px rgb(0 0 0 / 10%);
    min-height: 55px;
}
.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.hide {
    display: none!important;
}

.forgotLink {
    width: 100%;
    text-decoration: underline;
    font-weight: 400;
    color: var(--black);
    font-size: 1rem;
}
.divider {
    display: flex;
    width: 100%;
    margin: 25px 0;
    justify-content: center;
    align-items: center;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50$;
    height: 1px;
    background: #B4B4B4;
    width: 100%;
}

.divider span {
    display: block;
    background: var(--secondary-background);
    position: relative;
    z-index: 9;
    padding: 0px 30px;
    text-transform: uppercase;
}
.signUp-btn {
    display: flex;
    gap: 20px;
}

.signUp-btn a {
    width: 50%;
    display: flex;
    align-items: center;
    border: 1px solid #B4B4B4;
    border-radius: 6px;
    padding: 10px;
    color: var(--black);
    font-weight: 400;
    gap: 10px;
}
.account-section {
    padding: 60px;
}
.title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.account-row1{
    display: flex;
    gap: 30px;
}
.account-form {
    display: block;
    width: 100%;
    max-width: 920px;
    margin: auto;
}
.col-4 {
    width: 33.3%;
}
.col-5 {
    width: 50%;
}


select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='14' width='14' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path d='M5 7l5 5 5-5'/></svg>");
    background-repeat: no-repeat;

    /* Position for mobile-friendly look */
    background-position: right 10px center;
    background-size: 14px;

    padding-right: 40px; /* ensure text doesn't overlap arrow */
}

.dob_row {
    display: flex;
    gap: 20px;
}
.dob-col select {
    background-color: transparent;
    border: 0;
    box-shadow: none;
    border-bottom: 1px solid #B4B4B4;
    border-radius: 0;
}
.checkbox-group label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid var(--black);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 8px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 10px;
}

.checkbox-group input:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 10px;
    left: 7px;
    width: 5px;
    height: 8px;
    border: solid var(--black);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.checkbox-group {
    display: flex;
    margin-bottom: 20px;
    align-items: center;
}

.checkbox-group label {
    position: relative;
}
.v-Row {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
}
.radioBtn-col {
    position: relative;
    display: flex;
    gap: 5px;
    align-items: center;
}
.radioBtns {
    display: flex;
    gap: 20px;
    align-items: center;
}
input[type=radio]:checked ~ .check {
  /* border: 1px solid #0DFF92; */
}

input[type=radio]:checked ~ .check::before{
  background: #F68133;
}

input[type=radio]:checked ~ label{
  color: #F68133;
}
.check{
  display: block;
  position: relative;
  border: 1px solid #F68133;
  border-radius: 100%;
  height: 14px;
  width: 14px;
  z-index: 5;
  transition: border .25s linear;
  -webkit-transition: border .25s linear;
}
.check::before {
  display: block;
  position: absolute;
  content: '';
  border-radius: 100%;
  height: 10px;
  width: 10px;
  top: 1px;
  left: 1px;
  margin: auto;
  transition: background 0.25s linear;
  -webkit-transition: background 0.25s linear;
}
.radioBtn-col input[type=radio] {
    position: absolute;
    z-index: 9;
    width: 14px;
    height: 14px;
    opacity:0;
}
.calendar-wrapper {
  width: 450px;
  background: #fff;
  /* for black */
  /* background: #222; */
  /* color: #fff; */
  /*   border: 2px solid #fff; */
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
.calendar-wrapper  header {
  display: flex;
  align-items: center;
  padding: 25px 30px 10px;
  justify-content: space-between;
}
.calendar {
  padding: 20px;
}
.calendar ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  text-align: center;
}
.calendar .days {
  margin-bottom: 20px;
}
.calendar li {
  color: #333;
  /* for black */
  /* color: #fff; */
  width: calc(100% / 7);
  font-size: 1.07rem;
}
.calendar .weeks li {
  font-weight: 500;
  cursor: default;
}
.calendar .days li {
  z-index: 1;
  cursor: pointer;
  position: relative;
  margin-top: 30px;
}
.days li.inactive {
  color: #aaa;
}
.days li.active {
  color: #fff;
}
.days li::before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  height: 40px;
  width: 40px;
  z-index: -1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.days li.active::before {
  background: #00885B;
}
.days li:not(.active):hover::before {
  background: #f2f2f2;
  /*  for black */
  /*  background: #333; */
}
.calendar_wrapper {
    border: 1px solid #EBEBEB;
    background: var(--white);
    margin: auto;
    border-radius: 8px;
    width: 580px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 45px;
}

.current-date {
    font-size: 1.25em;
    font-weight: 500;
}

.calendar-header .icons {
    display: flex;
    gap: 20px;
}

.payment-section .title-row {
    flex-direction: column;
}

.payment-section .title-row h2 {
    margin-bottom: 20px;
}

.payment-section .title-row p {
    display: block;
    margin-bottom: 20px;
    font-size: 1.125rem;
}

.payment-section .title-row a {
    background: #ECECEC;
    color: var(--btnBackground);
    font-weight: 500;
    text-transform: capitalize;
    border-radius: 0;
}
.Payment-form {
    display: flex;
    width: 100%;
    max-width: 1060px;
    margin: 40px auto 0;
    gap: 60px;
}

.Payment-left {
    width: 50%;
}

.Payment-right {
    width: 50%;
}

.payment-txt {
    display: block;
    margin-bottom: 70px;
}

.payment-txt p {
    font-size: 1em;
    line-height: 26px;
}
.primaryColor{
    color: var(--btnBackground);
}

@media only screen and (max-width: 1020px) {
    .container{
        width: 100%;
        padding:0 20px;
    }
    .logo img {
    max-width: 140px;
}
    header ul{
        gap: 10px;
    }
    header li a{
        font-size: 12px;
    }
    .btn {
        min-width: auto;
        padding: 15px 30px;
        font-size: 12px;
    }
    .form-section{
            flex-direction: column;
                padding: 0;
    }
    .login-left,
    .login-right{
        width: 100%;
        border:0;
    }
    .login-left{
        border-bottom: 5px solid var(--white);
    }
}
@media only screen and (max-width: 767px) {
    .login-left, .login-right{
        padding: 4%;
    }
    .sub-header{
        padding: 15px 0 50px;
    }
    .sub-header .container h1{
        font-size: 24px;
    }
    .sub-header .container ul{
        font-size: 14px;
    }
    .signUp-btn,
    .dob_row{
        flex-direction: column;
    }
    .signUp-btn a{
        width: 100%;
    }
    .account-row1{
        gap: 10px;
    flex-direction: column;
    }
    .form-group{
        margin-bottom: 20px;
    }
    .col-4,
     .col-5,
    .dob_row,
    .dob-col,
    .Payment-left,
    .Payment-right{
        width: 100%;
    }
    .Payment-form{
        gap: 20px;
    flex-direction: column;
    }

    .profile-section {
        width : 100%!important;
        padding: 35px 10px 30px 10px!important;
        display: inline-block!important;
    }
     
    .infoSidebar {
        width: 100%;
        float: left;
        padding: 0px !important;
    }
     
    .infoContent {
        width: 100%!important;
        display: block;
        float: left;
        margin-top: 50px!important;
    }
     
    .address-col, .petPost-col {
        width:100%;
    }

    .proCol { 
        width: 100%;
        display: inline-block;
        flex-wrap: wrap;
        column-gap: 30px;
        padding: 0px 10px 50px 0px;
    }

    #profile body {padding:0px;}     
     
    .proCol.profileEdit .col-5 {
        width: 100% !important;
        max-width: 100%;
        padding-left: 0px;
    }

    #module-lyoreservation-book .form-group label[for="radio-btns"] {
        text-align: center!important;
    }    
}


#module-lyoreservation-book #myTabContent .buttonWrapper {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;    
}

.fc-bg tr {background: #FFFFFF!important;}