@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    --body-bg: #f6f8fb;
    --dark-color: #3a4859;
    --light-text: hsla(0, 0%, 100%, .7);
}

body {
    background-color: var(--body-bg);
    font-family: "Roboto", serif;
}


.loader {
    border: 5px solid var(--body-bg);
    border-top: 5px solid var(--dark-color);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20vh;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
.navbar{
    background-color: var(--dark-color);
    color: var(--light-text);
}
.nav-item a {
    display: inline;
    color: var(--light-text);
}
.nav-item {
    padding: 5px 10px;
    margin: 10px;
}
.nav-item i{
    padding-right: 5px;
}
.sidebar {
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    background-color: var(--dark-color);
    color: var(--light-text);
    padding-top: 20px;
}

.sidebar ul {
    list-style-type: none;
    padding-left: 0;
}

.sidebar li {
    padding-left: 5px;
}

.sidebar i {
    padding-right: 5px;
}

.sidebar a {
    color: var(--light-text);
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    font-size: 15px;
}

.sidebar a:hover,
.sidebar a.active {
    background-color: rgb(108 129 155 / 90%)
}



@media (max-width: 992px) {
    .sidebar {
        display: none;
    }
}

@media (min-width: 992px) {
    .sidebar {
        display: block;
    }

    .content {
        margin-left: 250px;
    }
}

@media (max-width: 991px) {
    .navbar-toggler {
        display: block;
    }
}

@media (min-width: 992px) {
    .navbar-toggler {
        display: none;
    }
}

.ajax-form {
    background: white;
    padding: 20px;
    border-radius: 10px;
}
#card-element {
    height: 40px;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 20px;
    font-size: 16px;
    transition: all 0.3s ease;
  }
  
  /* Card input on focus */
  #card-element:focus {
    border-color: #4CAF50;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
  }
  
  .multiselect {
    width: 100%;
  }
  
  .selectBox {
    position: relative;
  }
  
  .selectBox select {
    width: 100%;
  }
  
  .overSelect {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
  }
  
  #mySelectOptions {
    display: none;
    border: none;
    background-color: #ffffff;
    max-height: 150px;
    overflow-y: scroll;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    box-shadow: 0 0 3px #80808057;
    font-family: 'Roboto', sans-serif;
  }
  
  #mySelectOptions label {
    display: block;
    font-weight: normal;
    display: block;
    white-space: nowrap;
    min-height: 1.2em;
    background-color: #ffffff00;
    padding: 0 2.25rem 0 .75rem;
    /* padding: .375rem 2.25rem .375rem .75rem; */
  }

  .img-thumbnail{
    width: 200px;
    margin: 5px;
    padding: 0;
    height: 200px;
    object-fit: cover;

  }

  .stars {
    font-size: 24px;
    cursor: pointer;
}
.stars .star {
    color: #ccc;
}
.stars .star.selected {
    color: gold;
}

form.user .custom-checkbox.small label {
    line-height: 1.5rem;
  }
  
  form.user .form-control-user {
    font-size: 0.8rem;
    border-radius: 10rem;
    padding: 1rem 1rem;
    margin-bottom: 1rem;
  }
  
  form.user .btn-user {
    font-size: 0.8rem;
    border-radius: 10rem;
    padding: 0.75rem 1rem;
    width: 100%;
  }

  .bookingDetails label{
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
    color: #7c7c7c;
  }

  .bookingDetails h3{
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    color: #7c7c7c;
    border-bottom: solid 1px #7c7c7c47;
    padding: 10px;
}

.bookingDetails .form-control{
    font-size: 12px;
}

.input-group-text{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.breadcrumb-item{
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    color: #7c7c7c;
}
.btn{
    border-radius: 2px;
}
.bg-mute-blue{
    background: rgb(138 164 195);
    border: none;
    box-shadow: 0 0 3px #80808042;
    color: white;
}
.bg-mute-blue:hover{
    background: rgb(84, 128, 182);
    color: white;
    box-shadow: 0 0 3px #4a4545;
}

.bg-mute-red{
    background: #e2515f;
    border: none;
    box-shadow: 0 0 3px #80808042;
    color: white;
}

.bg-mute-red:hover{
    background: #b63346;
    color: white;
    box-shadow: 0 0 3px #4a4545;
}
.bg-default{
    border: none;
    box-shadow: 0 0 3px #9f9fc354;
}
.bg-default:hover{
    box-shadow: 0 0 3px #4a4545;
}

a{
    color: rgb(138 164 195);
}

.btn-primary{
    background: var(--dark-color);
    border-color: #3a4859;
}