@font-face {
    font-family: Poppins-Regular;
    src: url('../font/Poppins-Regular.ttf');
}

@font-face {
    font-family: Poppins-Medium;
    src: url('../font/Poppins-Medium.ttf');
}

@font-face {
    font-family: Poppins-Bold;
    src: url('../font/Poppins-Bold.ttf');
}

@font-face {
    font-family: Poppins-ExtraLight-Italic;
    src: url('../font/Poppins-ExtraLightItalic.ttf');
}

* {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    color: #253156;
    font-family: 'Poppins-Regular';
    background-color: #fff;
}

.main-section {
    padding-top: 64px;
    padding-bottom: 100px;
    background-color: #FFFFFF;
    max-width: 640px;
    margin: auto;
}

.fixed-header {
    background-color: #fff;
    margin: 0px auto;
    position: fixed;
    width: 100%;
    z-index: 1;
}

.fixed-footer {
    background-color: #fff;
    position: fixed;
    bottom: 0px;
    padding-bottom: 15px;
    width: 100%;
}

.h-100 {
    height: 100vh;
}

.p-25 {
    padding: 25px;
}

.p-l-25 {
    padding-left: 25px;
}

.p-r-25 {
    padding-right: 25px;
}

.m-t-15 {
    margin-top: 15px;
}

.m-t-20 {
    margin-top: 20px;
}

.m-t-25 {
    margin-top: 25px;
}

.m-t-30 {
    margin-top: 30px;
}

.m-b-15 {
    margin-bottom: 15px;
}

.m-b-20 {
    margin-bottom: 20px;
}

.m-b-25 {
    margin-bottom: 25px;
}

.m-b-30 {
    margin-bottom: 30px;
}

.hotel-logo-section {
    height: 150px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .hotel-logo-section img {
        max-height: 96px;
    }

.gray-box {
    background-color: #EAEDF9;
    padding: 10px 25px 25px 25px;
}

.page-header {
    display: flex;
    justify-content: start;
    align-items: center;
    -webkit-box-shadow: 0px 0px 5px 3px rgba(0,0,0,0.09);
    -moz-box-shadow: 0px 0px 5px 3px rgba(0,0,0,0.09);
    box-shadow: 0px 0px 5px 3px rgba(0,0,0,0.09);
}

.back-arrow {
    display: inline-block;
    width: 64px;
    height: 64px;
    background-image: url('../images/back-arrow.svg');
    background-position: center;
    background-size: auto;
    background-repeat: no-repeat;
}

.page-header .page-name {
    font-size: 18px;
    font-family: 'Poppins-Medium';
}

.form-group {
    margin-top: 20px;
}

    .form-group label {
        color: #666E87;
        font-size: 14px;
        font-family: 'Poppins-Regular';
        display: block;
    }

    .form-group input, .form-group textarea {
        width: 100%;
        font-size: 14px;
        font-family: 'Poppins-Medium';
        color: #253156;
        padding: 8px 0px;
        background-color: transparent;
        outline: none;
        border: 0px;
        border-bottom: 1px solid #25315699;
    }

        .form-group input:focus, .form-group textarea:focus {
            outline: none;
            color: #253156;
            transition: border-color 0.3s;
            left: 0;
            border-bottom: 1px solid #253156;
        }

.custom-select-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.custom-select {
    width: 100%;
    font-size: 14px;
    font-family: 'Poppins-Medium';
    color: #253156;
    background-color: transparent;
    padding: 10px 0px 5px 0px;
    border: 0px;
    border-bottom: 1px solid #25315699;
    appearance: none;
    cursor: pointer;
    padding-right: 40px;
    -webkit-appearance: none;
    -moz-appearance: none;
}

    .custom-select:focus {
        outline: none;
        border-bottom: 1px solid #253156;
    }

.custom-select-wrapper::after {
    content: "";
    position: absolute;
    bottom: 8px;
    right: 0px;
    transform: translateY(-50%);
    width: 16px;
    height: 9px;
    background-image: url('../images/dd-arrow.png');
    background-size: contain;
    pointer-events: none;
    background-repeat: no-repeat;
    background-position: center;
}

.custom-select option {
    background-color: #fff;
    color: #253156;
    padding: 3px 10px;
    font-size: 14px;
    text-align: left;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.form-group.custom-select-wrapper.qty-select {
    width: 100px;
}

.res-info {
    padding: 20px 25px;
}

.service-submit-btn {
    padding-top: 20px;
}

.primary-shadow {
    -webkit-box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.16);
    -moz-box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.16);
    box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.16);
}

.border-radius {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.primary-btn {
    display: block;
    text-decoration: none;
    text-align: center;
    width: 100%;
    color: #fff;
    background-color: #5F7EDC;
    border: 0px;
    border-radius: 4px;
    font-size: 14px;
    font-family: 'Poppins-Regular';
    padding: 10px 0px;
}

    .primary-btn:hover {
        background-color: #253156;
    }

.action-btn {
    display: inline-table;
    text-decoration: none;
    text-align: center;
    width: 100%;
    color: #fff;
    background-color: #858B9F;
    border: 0px;
    border-radius: 4px;
    font-size: 14px;
    font-family: 'Poppins-Regular';
    padding: 10px 0px;
}

    .action-btn:hover {
        background-color: #253156;
    }

.room-detail-sec {
    border-bottom: 1px solid #DFDFDF;
    padding: 8px 0px;
}

.box-room-type {
    font-size: 12px;
    text-align: center;
    color: #253156;
}

.box-room-no {
    font-size: 18px;
    font-family: 'Poppins-Bold';
    text-align: center;
}

.box-guest-name {
    font-size: 16px;
    font-family: 'Poppins-Bold';
    line-height: 18px;
}

.box-guest-mob {
    font-size: 14px;
}

.label-text {
    color: #666E87;
    font-size: 12px;
}

.label-value {
    color: #253156;
    font-size: 14px;
    font-family: 'Poppins-Bold';
    word-wrap: break-word;
    line-height: 18px;
}

/* Service history page css start  */
.history-date {
    font-size: 12px;
    font-weight: 500;
    color: #253156;
    text-align: center;
    border: 1px solid #C6C6C6;
    background-color: #E2E2E2;
    border-radius: 20px;
    padding: 5px 20px;
    width: 115px;
    margin: auto;
    margin-top: 50px;
}

.history-item-name {
    color: #253156;
    font-size: 13px;
    font-weight: 600;
}

.history-status {
    color: #FFFEFC;
    font-size: 10px;
    border-radius: 50px;
    text-align: center;
    padding: 0 10px;
}

.history-status-time {
    display: flex;
    align-items: center;
}

.history-time {
    font-size: 12px;
    color: #253156;
}

.history-time-icon {
    margin: 0 10px;
}

.history-guest-name {
    font-size: 12px;
    font-weight: 600;
    color: #253156;
    padding-top: 5px;
}

/* status bg  */
.status-open {
    background-color: #B5B5B5;
}

.status-in-progress {
    background-color: #5F7EDC;
}

.status-completed {
    background-color: #65D38B;
}
/* status bg  */

/* Service history page css end  */

/* service request list page start  */

.tablinks {
    width: 50%;
}

.service-list-tab {
    overflow: hidden;
    background-color: #fff;
    display: flex;
    margin-bottom: 15px;
}

    .service-list-tab button {
        background-color: inherit;
        border: none;
        outline: none;
        cursor: pointer;
        padding: 20px 15px;
        transition: 0.3s;
        font-size: 12px;
        font-weight: bold;
        color: #253156;
    }

        .service-list-tab button.active {
            background-color: #fff;
            border-bottom: 2px solid #253156;
        }

.tabcontent {
    display: none;
}

.service-list {
    border-radius: 6px;
    border: 1px solid #DFDFDF;
}

.service-list-header {
    background-color: #EBEDF5;
    padding: 10px 15px;
    display: flex;
    border-bottom: 1px solid #DFDFDF;
    border-radius: 6px 6px 0 0;
}

.service-list-content {
    padding: 15px;
    border-bottom: 1px solid #DFDFDF;
}

.service-list-footer {
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-list-room-type-box {
    background-color: #FFFFFF;
    border: 1px solid #D3D3D3;
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 6px;
    margin-right: 10px;
}

.service-list-roomtype-txt {
    color: #5F7EDC;
    font-size: 13px;
    font-weight: bold;
}

.service-list-room-num {
    color: #253156;
    font-size: 16px;
    font-weight: 600;
}

.service-list-guest-name {
    color: #253156;
    font-size: 14px;
    padding-bottom: 5px;
    line-height: 18px;
}

.service-list-type {
    color: #858B9F;
    font-size: 11px;
}

.service-list-items {
    color: #5F7EDC;
    font-size: 15px;
    font-weight: 600;
    line-height: 18px;
}

.service-list-status-box {
    padding: 10px 15px 3px 15px;
    color: #fff;
    border-radius: 6px;
    text-align: center;
}

.service-list-status-txt {
    font-size: 10px;
    line-height: 0.5;
}

.service-list-status {
    font-size: 13px;
    font-weight: bold;
}

.service-list-time-icon-txt {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.service-list-time {
    font-size: 14px;
    font-weight: 600;
    text-align: right;
    color: #253156;
    padding-left: 5px;
}

.service-list-date {
    font-size: 12px;
    text-align: right;
    color: #253156;
}

.service-list-main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-list-left, .service-list-right {
    display: flex;
    align-items: center;
}

.service-list-logout {
    color: #858B9F;
    font-size: 10px;
    padding-right: 10px;
}

.service-list-right {
    padding-right: 25px;
}

.service-list-open {
    background-color: #656565;
}

.service-list-progress {
    background-color: #E3B231;
}

.service-list-closed {
    background-color: #57BD6E;
}

.service-list-status-box.service-list-closed {
    display: flex;
    align-items: center;
}

.service-list-closed-time {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px 15px 3px 10px;
    border-left: 1px solid #fff;
}

    .service-list-closed-time .service-list-time {
        color: #FFE999;
    }

.service-request-status {
    padding: 10px 15px 3px 15px;
}

.service-request-status-closed-box {
    color: #fff;
    border-radius: 6px;
    text-align: center;
    display: flex;
    align-items: center;
}

.service-request-list-section {
    padding: 0 15px;
    margin-bottom: 15px;
}

.service-list-closed-time img {
    margin-left: 5px;
}

.logout-btn {
    background: none;
    border: none;
    display: flex;
    align-items: center;
}

.service-list-room-type-name {
    font-size: 11px;
    color: #253156;
    line-height: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.service-delivery-location {
    font-size: 11px;
    font-weight: 500;
    color: #253156;
    display: flex;
    align-items: center;
    background-color: #EBEDF5;
    border-radius: 6px;
    max-width: fit-content;
    padding: 3px 8px;
    margin: 5px 0px 10px 0px;
}

    .service-delivery-location img {
        padding-right: 5px;
    }

.service-list-left.service-header-title {
    padding: 15px 0px 15px 30px;
}

.history-time-date {
    opacity: 0.5;
}
/* service request list page end  */

/* Service main page css start  */
/* .img-center img {max-width: 100%; min-height: 50vh;} */

.img-center img {
    max-width: 100%;
    /* min-height: 50vh; */
    min-height: 300px;
    max-height: 350px;
    width: 100%;
    object-fit: contain;
}

.main-p {
    font-size: 16px;
    color: #000000;
    padding: 15px 50px 0px 50px;
    line-height: 1.5;
    font-style: italic;
    font-weight: lighter;
}

.text-center {
    text-align: center;
}

.service-main-page .main-section {
    padding-top: 0;
}
/* Service main page css end  */

.custom-select-container {
    width: 300px;
    margin: 50px auto;
}

.custom-select {
    position: relative;
    width: 100%;
    /* border: 1px solid #ccc; */
    /* border-radius: 4px; */
    background: #fff;
    cursor: pointer;
}

.select-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 0px 12px; */
}

    .select-trigger .arrow {
        font-size: 14px;
    }

.dropdown {
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    border: 1px solid #ccc;
    border-top: none;
    background: #fff;
    display: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.select-search {
    width: calc(100% - 24px);
    /* margin: 8px auto; */
    padding: 8px;
    border: 1px solid #ccc;
    /* border-radius: 4px; */
    outline: none;
    box-sizing: border-box;
    display: block;
}

.select-options {
    max-height: 150px;
    overflow-y: auto;
    margin: 0;
    padding: 0;
    list-style: none;
}

    .select-options li {
        padding: 8px 12px;
        cursor: pointer;
    }

        .select-options li:hover {
            background: #f0f0f0;
        }

.custom-select {
    padding-right: 0 !important;
}

input.select-search {
    padding: 10px 15px;
}

input.select-search {
    border-top: 1px solid #ccc;
}
