/*
	blue = #103D5C;
	yellow = #D8A75A;
	black = #222222;    
    */
/*@import url('https://fonts.googleapis.com/css2?family=Work+Sans&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    letter-spacing: .5px;
    /*font-family: 'Work Sans', sans-serif;*/
}

body {
    font-family: 'Arial';
}

.cped-text-blue {
    color: #103D5C;
}

.cped-text-yellow {
    color: #D8A75A;
}

.cped-text-black {
    color: #222222;
}

.cped-bg-blue {
    background: #103D5C;
}

.cped-bg-yellow {
    background: #D8A75A;
}

.cped-bg-black {
    background: #222222;
}

.cped-text-red {
    color: red;
}

.cped-fw-bold {
    font-weight: bold;
}

.cped-text-center {
    text-align: center;
}

.cped-text-right {
    text-align: right;
}

.cped-d-flex {
    display: flex;
}

.cped-d-flex-column {
    flex-direction: column;
}

.cped-flex-wrap {
    flex-wrap: wrap;
}

.cped-d-flex-responsive {
    display: flex;
}

.cped-d-block {
    display: block;
}

.cped-col, .cped-col-responsive {
    width: 100%;
    padding: 0 10px 0 0;
    margin-top: 10px;
}

.cped-w-100{
    width: 100%;
}
.cped-w-40{
    width: 40% !important;
}
.cped-w-80{
    width: 80px !important;
}
.cped-w-90-per{
    width: 90%;
}
.cped-w-10-per{
    width: 10%;
}

.cped-overflow-auto{
    overflow: auto;
}
.cped-p-0 {
    padding: 0 !important;
}

.cped-p-5px {
    padding: 5px !important;
}

.cped-p-t-20{
    padding-top: 20px;
}
.cped-p-b-10{
    padding-bottom: 10px;
}

.cped-p-y-10{
    padding-top: 10px;
    padding-bottom: 10px;
}
.cped-p-x-50{
    padding-left: 50px;
    padding-right: 50px;
}

.cped-fs-20{
    font-size: 20px;
}
.cped-fs-16 {
    font-size: 16px;
}

.cped-fs-14 {
    font-size: 14px !important;
}

.cped-fs-12 {
    font-size: 12px;
}

.cped-mt-1 {
    margin-top: 5px;
}

.cped-mt-2 {
    margin-top: 10px;
}

.cped-mt-3 {
    margin-top: 15px;
}

.cped-mt-4 {
    margin-top: 20px;
}

.cped-mt-5 {
    margin-top: 25px;
}

.cped-m-0 {
    margin: 0 !important;
}

.cped-m-10 {
    margin: 10px !important;
}

.cped-mb-1 {
    margin-bottom: 5px;
}

.cped-mb-2 {
    margin-bottom: 10px;
}

.cped-mb-3 {
    margin-bottom: 15px;
}

.cped-mb-4 {
    margin-bottom: 20px;
}

.cped-mb-5 {
    margin-bottom: 25px !important;
}
.cped-mr-5{
    margin-right: 5px;
}
.cped-required-field {
    color: rgb(255, 0, 0);
}

.cped-form-label {
    color: gray;
    font-size: 12px;
    font-weight: bold;
}

.cped-form-control {
    display: block;
    width: 100%;
    padding: 8px;
    outline: none;
    transition: .4s;
    border: 1.5px solid lightgray;
    margin-top: 5px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 3px;
}

.cped-form-control:focus {
    border-color: #D8A75A;
    /* box-shadow: 0px 0px 5px rgba(16, 61, 92, .5); */
}

.cped-button {
    display: inline-block;
    outline: none;
    padding: 14px;
    font-size: 14px;
    font-weight: bold;
    border: none;
    margin: auto;
    transition: .4s;
    cursor: pointer;
    letter-spacing: 1px;
    line-height: 1em;
}

.cped-button:focus {
    transform: translateY(-2px);
    background: #000000;
    color: #ffffff;
}

.cped-button:hover {
    transform: translateY(-2px);
    background: #000000;
    color: #ffffff;
}

.cped-button-prev {
    background: rgba(16, 61, 92, .05);
    border: 1px solid #103D5C;
    color: #103D5C;
}

.cped-button-next {
    background: #103D5C;
    color: #ffffff;
}
.cped-button-invoice-save{
    background: #103D5C;
    color: #ffffff;
}
.cped-button-invoice-reset{
    background: rgba(16, 61, 92, .05);
    border: 1px solid #103D5C;
    color: #103D5C;
}
.cped-button-invoice-delete{
    background: #dc3545;
    border: 1px solid #dc3545;
    color: #ffffff;
}
.cped-action-button{
    background: rgba(16, 61, 92, .05);
    border: 1px solid #103D5C;
    color: #103D5C;
    text-decoration: none !important;
    margin: 3px;
    border-radius: 3px;
    padding: 10px 15px !important;
    width: auto;
}
.cped-container {
    width: 100%;
    justify-content: center;
    display: flex;
    flex-direction: column;
    box-shadow: rgba(62, 68, 77, 0.3) 0px 0px 0px 3px;
    border-radius: 10px;
}

.cped-form-container {
    width: 85%;
    margin: auto;
}

.cped-top-box {
    /* background: #103D5C; */
    background: #DBE2E6;
    margin-bottom: 25px;
    padding: 15px;

    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.cped-card {
    border: 1px solid rgba(0, 0, 0, .25);
    border-radius: 5px;
    padding: 15px;
}


/* progress bar */
.cped-progress-bar {
    display: flex;
    margin: 40px 0;
    user-select: none;
    flex-direction: row;
}

.cped-progress-bar .step {
    text-align: center;
    width: 100%;
    position: relative;
}

.cped-progress-bar .step p {
    font-weight: 500;
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 8px;
}

.cped-progress-bar .step .bullet {
    height: 25px;
    width: 25px;
    border: 2px solid #ffffff;
    display: inline-block;
    border-radius: 50%;
    position: relative;
    transition: 0.2s;
    font-weight: 500;
    font-size: 17px;
    line-height: 20px;
    color: #ffffff;
}

.cped-progress-bar .step .bullet.active {
    border-color: #D8A75A;
    background: #D8A75A;
    color: #323232;
}

.cped-progress-bar .step .bullet span {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.cped-progress-bar .step .bullet.active span {
    display: none;
}

/* .cped-progress-bar .step .bullet:before,
.cped-progress-bar .step .bullet:after {
	position: absolute;
	content: '';
	bottom: 9px;
	right: -235px;
	height: 3px;
	width: 235px;
	background: #ffffff;
    } */

    .cped-progress-bar .step .bullet.active:after {
        background: #D8A75A;
        transform: scaleX(0);
        transform-origin: left;
        animation: cpedAnimate 0.3s linear forwards;
    }

    @keyframes cpedAnimate {
        100% {
            transform: scaleX(1);
        }
    }

    .cped-progress-bar .step:last-child .bullet:before,
    .cped-progress-bar .step:last-child .bullet:after {
        display: none;
    }

    .cped-progress-bar .step p.active {
        color: #D8A75A;
        transition: 0.2s linear;
    }

    .cped-progress-bar .step .check {
        position: absolute;
        left: 50%;
        top: 70%;
        font-size: 15px;
        transform: translate(-50%, -50%);
        display: none;
    }

    .cped-progress-bar .step .check.active {
        display: block;
        color: #fff;
    }

    /* custom checkbox */
    /* Customize the label (the container) */
    .cped-check-container {
        display: block;
        position: relative;
        padding-left: 35px;
        margin-bottom: 12px;
        cursor: pointer;
        font-size: 14px;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        margin-top: 5px;
    }

    /* Hide the browser's default checkbox */
    .cped-check-container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

    /* Create a custom checkbox */
    .cped-check-checkmark {
        position: absolute;
        top: 0;
        left: 0;
        height: 18px;
        width: 18px;
        border: .5px solid gray;
        background: transparent;
        border-radius: 5px;
    }

    /* On mouse-over, add a grey background color */
    .cped-check-container:hover input~.cped-check-checkmark {
        background-color: #ccc;
    }

    /* When the checkbox is checked, add a blue background */
    .cped-check-container input:checked~.cped-check-checkmark {
        background-color: #103D5C;
        border: .5px solid transparent;
    }

    /* Create the checkmark/indicator (hidden when not checked) */
    .cped-check-checkmark:after {
        content: "";
        position: absolute;
        display: none;
    }

    /* Show the checkmark when checked */
    .cped-check-container input:checked~.cped-check-checkmark:after {
        display: block;
    }

    /* Style the checkmark/indicator */
    .cped-check-container .cped-check-checkmark:after {
        left: 6px;
        top: 4px;
        width: 4px;
        height: 8px;
        border: solid #ffffff;
        border-width: 0 2.5px 2.5px 0;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }


    /* select2 dropdown */
    .select2-container--default .select2-selection--multiple {
        display: block !important;
        width: 100% !important;
        padding: 2px 5px 7px 4px !important;
        outline: none !important;
        transition: .4s !important;
        border: 1.5px solid lightgray !important;
        margin-top: 5px !important;
        font-size: 16px !important;
        font-weight: bold !important;
        border-radius: 3px !important;
    }

    .select2-container--default .select2-selection--single {
        display: block !important;
        width: 100% !important;
        padding: 4px 4px 30px 0px !important;
        outline: none !important;
        transition: .4s !important;
        border: 1.5px solid lightgray !important;
        margin-top: 5px !important;
        font-size: 16px !important;
        font-weight: bold !important;
        border-radius: 3px !important;
    }

    .select2-container--default .select2-selection--single .select2-selection__arrow {
        top: 10px !important;
    }

    .select2-container--default .select2-selection--multiple .select2-selection__choice {
        background: transparent !important;
        padding: 1px 1px 1px 18px !important;
        font-size: 14px;
        font-weight: normal;
        font-family: 'Work Sans', sans-serif;
    }

    .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
        border: 0 !important;
        margin-top: 1px;
    }

    /* hotel brand */
    .cped-hotel {
        display: flex;
        justify-content: space-between;
    }

    .hotel-brand-label {
        font-size: 18px;
        font-weight: bold;
    }

    .fa-angle-down, .fa-trash {
        color: gray;
        cursor: pointer;
    }
    .cped-hotel-brand-card {
        overflow: hidden;
    }

    .cped-h-0 {
        height: 0;
    }
    .cped-d-none {
        display: none;
    }
    .cped-hotel-brand-card-inner {
        transition: .4s;
    }

    /* loading panel */
    .cped-loading-panel {
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background: rgba(0, 0, 0, .65);
    }

    .cped-loading-box {
        position: absolute;
        height: 100px;
        width: 100px;
        border: 16px solid #103D5C;
        border-radius: 50%;
        border-top: 16px solid #D8A75A;
        top: 45%;
        left: 45%;
        transform: translate(-50%, -50%);
        animation: loading 1.5s linear infinite;
    }

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

  /* custom progress bar */
.cped-progress-bar-1 {
    display: flex;
    justify-content: space-around;
    margin: 25px 0 10px 0;
}

.cped-progress-1 {
    border-radius: 18px;
    background: #ffffff;
    font-weight: bold;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 10px;
    text-align: center;
    background: rgba(0,0,0,.3);
}
.cped-progress-1 .cped-progress-count {
    padding: 12px 16px;
    border-radius: 18px;
    color: #ffffff;
    background: rgba(0,0,0,.3);
}
.cped-progress-1 .cped-progress-label {
    height: 100%;
    padding: 10px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin-left: 10px; */
    letter-spacing: 1px;
}

.cped-progress-1-active {
    /* background: rgba(216, 167, 90, .8); */
    background: #103D5C;
}
.cped-progress-count-active {
    /* background: rgba(216, 167, 90, 1); */
    background: #103D5C;
}

.cpedFileUploadButton {
    /*display: block;*/
    border: none;
    outline: none;
    border-radius: 3px;
    padding: 8px;
    margin-top: 5px;
    cursor: pointer;
    transition: .4s;
    /*border: 1px solid lightgray;*/
    font-weight: 500;
    background-color: lightgray;
    position: relative;
}
.cpedFileUploadButton:before {
    content: '';
    position: absolute;
    top: -5%;
    left: -2%;
    width: 102%;
    height: 105%;
    background: transparent;
    border: 1px dashed #D8A75A;
    border-radius: 3px;
}
.cpedFileUploadButton:hover, .cpedFileUploadButton:focus {
    background-color: #D8A75A;
    color: white;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.btnClearAttachments {
    background: red;
    padding: 2px 7px;
    border-radius: 50%;
    font-weight: bold;
    cursor: pointer;
    color: #ffffff;
}

@media only screen and (max-width: 600px) {
    .cped-progress-bar-1 {
        flex-direction: column;
        margin: 0 !important;
    }
    .cped-progress-1 {
        margin: 5px 0 !important;
    }

    .cped-d-flex-responsive {
        flex-direction: column;
    }
    .cped-col-responsive {
        margin-top: 20px;
    }
	.cped-p-x-50{
		padding-left: 10px;
		padding-right: 10px;
	}
}


/* PBCP Loader */

.pbcp-loader-div{
    display: flex;
    align-items: center;
}
.pbcp-loader {
    margin-right: 5px;
    border: 3.5px solid #f3f3f3;
    border-radius: 50%;
    border-top: 3.5px solid #3498db;
    width: 10px;
    height: 10px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
  }
  
  /* Safari */
  @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

/* Extra CSS */
.selection ul{
    margin-left: 0 !important;
}


/* Invoice CSS */

.cped-table-sub-th{
    width: 90px;
    max-width: 90px;
    font-size: 13px;
}
.cped-table-input{
    width: 100%;
    font-size: 13px;
    font-weight: 700;
    padding: 3px !important;
}
.cped-table-input-readonly{
    background: #EAEAEA !important;
}
.cped-no-wrap{
    white-space: nowrap;
}

.week-picker{
    display: none;
    position: absolute;
}

/* Select Receipt */
.cped-select-receipt-input, .cped-select-receipt-input-files, .cped-select-receipt-input-url{
    display: none;
}
.cped-align-item-center{
    align-items: center;
}
.cped-bt-1px-ddd{
    border-bottom: 1px solid #ddd;
}
.cped-tablenav .tablenav-pages{
    margin-left: auto;
}
.cped-tablenav .page-numbers {
    display: inline-block;
    min-width: 30px;
    min-height: 30px;
    line-height: 2;
    text-align: center;
    cursor: pointer;
    border-width: 1px;
    border-style: solid;
    border-radius: 3px;
    white-space: nowrap;
    box-sizing: border-box;
    text-decoration: none !important;
}

.cped-file-name a.cped-file-link{
    text-decoration: none;
    color: #212529;
}

.cped-remove-file{
    cursor: pointer;
}

.cped-alert{
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

.cped-alert-success{
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}