@import url('//fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500&display=swap');
body {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #111111;
    background: #F9FAFB;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-print-color-adjust: exact;
}
@media print {
    @page {
        margin: 0;
    }
    body {
        margin: 1.6cm;
    }
}
#loader {
    width: 100%;
    height: 100%;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, .1);
    z-index: 9999;
}
.loader {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}
.loader:after {
    content: " ";
    display: block;
    border-radius: 50%;
    width: 0;
    height: 0;
    margin: 8px;
    box-sizing: border-box;
    border: 32px solid #2C3E50;
    border-color: #2C3E50 transparent #2C3E50 transparent;
    animation: loader 1.2s infinite;
}
@keyframes loader {
    0% {
        transform: rotate(0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    50% {
        transform: rotate(900deg);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    100% {
        transform: rotate(1800deg);
    }
}

a {
    color: #3c587d;
    text-decoration: none;
}
.guest-container {
    background: #ffffff;
    box-shadow: 0 2px 30px #ccc6;
    padding: 20px;
    border-radius: 5px;
}

.form-group {
    margin-bottom: 15px;
}
.form-group label {
    margin-bottom: 10px;
    font-weight: 500;
}
.form-control {
    box-shadow: none !important;
    font-size: inherit;
}
.form-group label.error {
    color: #ff0000;
    font-size: 13px;
    font-weight: normal;
    margin: 0;
}
.form-group .form-check label {
    font-weight: normal;
}
.form-check-input:checked {
    box-shadow: none;
}
label.required:after {
    content: ' *';
    color: #ff0000;
    font-size: 13px;
}
button, .btn {
    font-size: inherit;
}
button:focus, button:active:focus, .btn-check:focus + .btn, .btn:focus, .form-select:focus {
    box-shadow: none !important;
}
.btn-xs {
    padding: 2px 5px;
    font-size: 12px;
}
.btn-custom {
    background: #3c587d;
    border-color: #3c587d;
    color: #ffffff;
}
.btn-custom:hover {
    background: #324967;
    color: #ffffff;
}
.text-primary {
    color: #3c587d !important;
}
.bg-custom {
    background: #049ee5 !important;
    color: #ffffff;
}

header {
    padding: 15px 0;
    border-bottom: 1px solid #dddddd;
}
header .header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .header-bar .toggle-sidebar {
    font-size: 15px;
}
header .header-menu {
    display: flex;
    gap: 15px;
}
header .header-menu > a, header .header-menu a.dropdown-toggle {
    background: #ffffff;
    font-size: 15px;
}

.page-container {
    position: relative;
    margin-left: 250px;
}
.vertical-nav {
    background: #2C3E50;
    width: 250px;
    position: fixed;
    height: 100%;
    color: #ffffff;
}
.single-container {
    padding: 15px;
}
.profile {
    text-align: center;
    padding: 20px 0;
}

.vertical-nav-menu {
    padding: 0 15px;
    height: calc(100vh - 220px);
}
.vertical-nav-menu ul {
    list-style: none;
    padding: 0;
}
.vertical-nav-menu ul li {
    position: relative;
}
.vertical-nav-menu ul li a {
    color: #ECF0F1;
    padding: 15px;
    display: block;
    border-radius: 5px;
}
.vertical-nav li.active a {
    background: rgba(39, 71, 109, .9);
    /*background: rgba(84, 107, 131, .5);*/
    color: #ECF0F1;
}
.vertical-nav-menu ul li a i {
    border: 1px solid #cccccc;
    padding: 3px 5px;
    border-radius: 3px;
    margin-right: 5px;
}
.vertical-nav li.has-sub ul {
    display: none;
    list-style: disc;
    margin-left: 50px;
}
.vertical-nav li.has-sub ul a {
    padding: 15px 0;
}
.vertical-nav li.has-sub > a:after {
    content: '\F135';
    font-family: "bootstrap-icons", sans-serif;
    position: absolute;
    right: 0;
}
.vertical-nav li.has-sub.open ul {
    display: block;
}
.vertical-nav li.has-sub.open > a:after {
    content: '\F124';
}
.help-center {
    padding: 20px;
    border-radius: 5px;
    background: rgba(39, 71, 109, .9);
    margin-bottom: 30px;
}
section {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: .25rem;
    padding: 15px;
}
section + section {
    margin-top: 30px;
}
section .form-group:last-child {
    margin-bottom: 0;
}
.section-header {
    background: #f9f9f9;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.section-header select {
    border: 0 none;
}

.page-header {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.page-header p {
    font-size: 22px;
    margin: 0;
}
#offcanvas .page-header {
    display: block;
    text-align: center;
}
#offcanvas .page-header p {
    font-size: 18px;
    margin: 0;
}
#offcanvas .page-header button {
    position: absolute;
    left: 0;
}
#offcanvas .offcanvas-body {
    padding-top: 0;
}
#popupModal .page-header p {
    font-size: 18px;
    margin: 0;
}
section .page-header {
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 20px;
}
section .page-header p {
    font-size: 18px;
}
.modal-title {
    text-transform: capitalize;
}

.card {
    background-color: #ffffff;
}
.card + .card {
    margin-top: 30px;
}
.card-header {
    background: #fafafa;
    padding: 1rem;
    font-size: 16px;
}

.welcome-box {
    background: url("/images/date-bg.png") no-repeat right;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.home-add-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.home-add-box a {
    background: #3c587d;
    color: #ffffff;
    border-radius: 3px;
    display: flex;
    align-items: center;
    padding-right: 10px;
    font-size: 13px;
}
.home-add-box a i {
    padding: 5px 10px;
}

.home-count-box .card-body {
    padding: 5px 10px;
}
.home-count-box a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.home-count-box a i {
    font-size: 16px;
    background: #e0f5f1;
    padding: 5px 10px;
    border-radius: 3px;
}

.queries-status-items {
    display: flex;
    overflow: auto;
    gap: 5px;
}
.queries-status-items a {
    flex: 1 0 auto;
    color: #ffffff;
    border-radius: 3px;
    padding: 5px 10px;
    text-align: center;
    font-size: 13px;
}
.queries-status-items .status span {
    display: block;
    font-size: 20px;
}

.pagination-bar {
    margin-top: 20px;
}
.pagination-bar p, .pagination-bar ul {
    margin: 0;
}

.query-bg-color {
    width: 20px;
    height: 20px;
    border-radius: .25rem;
    display: inline-block;
    float: left;
    margin-right: 5px;
}

.role-list, .role-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.role-list ul {
    margin: 0 0 0 30px;
    position: relative;
}
.role-list ul:before {
    content: '';
    border-left: 1px solid #dee2e6;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
}
.role-list li:first-child {
    margin-top: 0;
    border: 0 none;
}
.role-list ul li {
    position: relative;
    margin-left: 30px;
    padding-top: 20px;
}
.role-list ul li:before {
    content: '';
    border-top: 1px solid #dee2e6;
    position: absolute;
    width: 30px;
    height: 1px;
    left: -30px;
    top: 38px;
}
.role-list li:last-child:before {
    background: #ffffff;
    height: auto;
    bottom: 0
}

.query-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}
.query-row:hover {
    background: rgba(60, 88, 125, .1);
    border: 1px solid rgba(60, 88, 125, .5) !important;
}
.query-group {
    display: flex;
    padding: 10px;
}
.query-group > div {
    flex: 1;
}
.query-column span {
    display: block;
    font-size: 12px;
    color: #555555;
    margin-bottom: 2px;
}
.query-column .status {
    display: inline-block;
    padding: 2px 5px;
    border-radius: 5px;
    color: #ffffff;
}
.query-column .btn-group a:hover {
    background: #3c587d;
    color: #ffffff;
}

.queries-status-bar {
    font-size: 13px;
}
.queries-status-bar ul {
    overflow: hidden;
    display: flex;
}
.queries-status-bar ul > li + li:before {
    padding: 0;
}
.queries-status-bar ul li {
    background: #cfd7df;
}
.queries-status-bar ul li.active a {
    background: #3bc989;
    color: #ffffff;
}
.queries-status-bar ul li.active a:after {
    border-left: 30px solid #3bc989;
}
.queries-status-bar ul li:has(~ .active) a {
    background: #3bc989;
    color: #ffffff;
}
.queries-status-bar ul li:has(~ .active) a:after {
    border-left: 30px solid #3bc989;
}

.queries-status-bar ul li a {
    color: #333333;
    text-decoration: none;
    padding: 10px 0 10px 45px;
    position: relative;
    display: inline-block;
}
.queries-status-bar ul li a:after {
    content: " ";
    display: block;
    width: 0;
    height: 0;
    border-top: 50px solid transparent;
    border-bottom: 50px solid transparent;
    border-left: 30px solid #cfd7df;
    position: absolute;
    top: 50%;
    margin-top: -50px;
    left: 100%;
    z-index: 2;
}
.queries-status-bar ul li a:before {
    content: " ";
    display: block;
    width: 0;
    height: 0;
    border-top: 50px solid transparent;
    border-bottom: 50px solid transparent;
    border-left: 30px solid white;
    position: absolute;
    top: 50%;
    margin-top: -50px;
    margin-left: 1px;
    left: 100%;
    z-index: 1;
}
.queries-status-bar ul li:first-child a {
    padding-left: 15px;
}
.queries-status-bar ul li a:hover {
    background: #b4bbc3;
}
.queries-status-bar ul li a:hover:after {
    border-left-color: #b4bbc3 !important;
}

.inner-menu {
    width: 250px;
    border-right: 1px solid #e6e6e6;
    background: #eff7ff;
    /*box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;*/
}
.inner-menu a {
    display: block;
    padding: 15px 10px;
    border-bottom: 1px solid #e6e6e6;
    position: relative;
}
.inner-menu li:hover {
    background: #f9f9f9;
}
.inner-menu li.active a {
    background: #ddeeff;
    font-weight: 700;
}
.inner-menu li.active a:after {
    content: '\F135';
    font-family: "bootstrap-icons", sans-serif;
    position: absolute;
    right: 10px;
}

.query-note {
    background: #fffee2;
    border-radius: 5px;
    padding: 10px;
}
.query-note + .query-note {
    margin-top: 10px;
}

.query-task {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 10px;
    border-radius: 5px;
}
.query-task + .query-task {
    margin-top: 20px;
}
.query-task.completed {
    background: #ebfff7;
}
.query-task:not(.completed):hover {
    background: #f1f1f1;
}
.query-task .form-check-input {
    width: 1.5em;
    height: 1.5em;
    border-color: #555555;
}
.query-task-type {
    font-size: 22px;
    font-family: "bootstrap-icons", sans-serif;
}
.task_icon_1:after {
    content: '\F477';
}
.task_icon_2:after {
    content: '\F5C1';
}
.task_icon_3:after {
    content: '\F1E2';
}

.table {
    vertical-align: middle;
}
.dynamic-image {
    background-color: #6fa6d4;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 5px;
    height: 200px;
    position: relative;
}
.dynamic-image input {
    display: none;
}
.dynamic-image label {
    position: absolute;
    right: 10px;
    top: 10px;
    background: rgba(0, 0, 0, .5);
    color: #ffffff;
}
.dynamic-image label:hover {
    background: rgba(0, 0, 0, .7);
    color: #ffffff;
}

.dropdown-menu {
    font-size: inherit;
    padding: 0;
}
.dropdown-item {
    padding: .5rem;
}
.dropdown-divider {
    margin: 0;
}

.event-row {
    border: 1px solid #dddddd;
    border-radius: .5rem;
    padding: 10px;
    overflow: hidden;
}
.event-row:hover {
    background: #f7f7f7;
}
.event-row + .event-row {
    margin-top: 10px;
}
.event-row.event-icon_:before {
    content: '';
    width: 100px;
    height: 100px;
    float: left;
}
.itinerary-day-details .event-row .event-details {
    display: flex;
    justify-content: space-between;
}

.event-row .time {
    display: block;
    margin-top: 5px;
}
.event-row .action {
    flex: none;
}
.event-row .event-heading {
    line-height: 22px;
    font-size: 15px;
}
.event-images {
    text-align: center;
}
.event-images img {
    max-width: 250px;
    margin: 0 5px;
    border-radius: .25rem;
}
.input-group-text {
    font-size: inherit;
}
.pricing-table th {
    text-align: right;
}

.itinerary-description img {
    width: 100% !important;
    height: auto !important;
}
.itinerary-preview .event-row {
    border: 0 none;
    background: none !important;
}
.itinerary-preview .event-row .event-heading {
    font-size: 18px;
    margin-bottom: 10px;
}
.itinerary-preview .event-row .description {
    margin-top: 15px;
}
.itinerary-preview > div + div {
    margin-top: 20px;
}

.itinerary-preview-container {
    position: relative;
}
.itinerary-preview-container .itinerary-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, .4);
    color: #ffffff;
    text-shadow: 1px 1px #111111;
    padding: 15px;
}
.itinerary-footer {
    background: grey;
    color: #ffffff;
}
.itinerary-footer table {
    margin-top: 15px;
}
.itinerary-footer table p {
    line-height: 22px;
    margin: 0;
}

.query-itinerary {
    display: flex;
    min-height: 200px;
    gap: 20px;
}
.query-itinerary + .query-itinerary {
    margin-top: 20px;
}
.query-itinerary .query-itinerary-image {
    max-width: 300px;
    background-position: center;
    background-size: cover;
}
.query-itinerary > div {
    flex: 1;
}

button:disabled {
    cursor: not-allowed;
    pointer-events: all !important;
}

.master-item {
    border: 1px solid #e9e9e9;
    border-radius: 5px;
    margin-bottom: 25px;
}
.master-item a {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555555;
}
.master-item a:hover {
    background: #f9f9f9;
    color: #2C3E50;
}
.master-item i {
    font-size: 25px;
}

.child-group .form-group {
    display: flex;
    align-items: center;
}
.child-group .form-group label {
    margin: 0;
}
.child-group .form-group * {
    flex: 1;
}
.child-group + .form-group {
    margin-top: 15px;
}

.subscription-confirmation .check {
    fill: #30C7B5 !important;
}

.supplier-email-view h3 {
    font-size: 22px;
}

.invoice-address p {
    margin: 0 0 5px;
}

.search-filters {
    background: #ffffff;
    padding: 10px;
    border-radius: 5px;
    margin: 0 0 20px;
    display: flex;
    align-items: end;
    gap: 15px;
}
.search-filters label {
    margin-bottom: 3px;
    font-size: 13px;
}

.thumbnail-group {
    margin: 20px 0;
}
.thumbnail-group {
    margin: 20px 0;
}
.thumbnail-add {
    margin: 0 0 20px;
    text-align: right;
}
.thumbnail-group section.thumbnail {
    position: relative;
}
.thumbnail-group section.thumbnail button {
    position: absolute;
    right: 5px;
    top: 5px;
}
.thumbnail-group section.thumbnail:first-child button {
    display: none;
}

.query-confirmed {
    position: fixed;
    left: 0;
    top: 48%;
    font-size: 30px;
    color: #fff;
    font-weight: 600;
    text-align: center;
    z-index: 9999;
    width: 100%;
}
canvas#canvas {
    display: block;
    background-color: #050505d1;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
}
img.social-img {
    width: 36px;
    height: 36px;
    padding: 5px;
    border-radius: .25rem;
    border: 1px solid #dddddd;
}

.monthpicker {
    display: inline-block;
    position: relative;
    font-size: .9em;
}
.monthpicker_selector *::selection {
    background: transparent;
}
.monthpicker_selector {
    position: absolute;
    top: 100%;
    background-color: #2C2C2C;
    min-width: 173px;
    box-shadow: 1px 2.5px 5px 0;
    z-index: 1;
    width: 100%;
}
.monthpicker_selector>table {
    color: #FFF;
    width: 100%;
    text-align: center;
    border-spacing : 0;
    border-collapse : collapse;
    font-size: .9em;
}
.monthpicker_selector>table tr:first-child td {
    padding-top: 3px;
    padding-bottom: 3px;
}
.monthpicker_selector>table tr:first-child>td:nth-child(1) {
    padding: 7px;
    text-align: left;
}
.monthpicker_selector>table tr:first-child>td:nth-child(2) {
    position: relative;
}
.monthpicker_selector>table tr:first-child>td:nth-child(3) {
    padding-left: 5px;
    padding-right: 5px;
    text-align: right;
}
.yearSwitch {
    padding: 0 10px;
    border-radius: 3px;
    background: #D4D4D4;
    color: #000;
    font-weight: bold;
    cursor: pointer;
}
.yearValue {
    width: 100%;
    height: 100%;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    background: none;
    border: none;
    color: #FFF;
    outline: none;
    font-size: 1.1em;
}
.monthpicker_selector .month {
    border: 1px solid #444;
    cursor: pointer;
    padding: 7px;
}
.monthpicker_selector .month:hover {
    background-color: #444
}
.monthpicker_selector .month.off {
    color: #666;
    cursor: not-allowed;
}
.monthpicker_selector .month.off:hover {
    background: none;
}
.monthpicker_selector>table tr td:first-child {
    border-left: none;
}
.monthpicker_selector>table tr td:last-child {
    border-right: none;
}
.monthpicker_selector>table tr:last-child td {
    border-bottom: none;
}
