/*Subfont - Quicksands*/
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-Light.ttf');
    font-weight:300;
    font-style:normal;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-Regular.ttf');
    font-weight:400;
    font-style:normal;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-Medium.ttf');
    font-weight:600;
    font-style:normal;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-SemiBold.ttf');
    font-weight:700;
    font-style:normal;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-Bold.ttf');
    font-weight:800;
    font-style:normal;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-ExtraLight.ttf');
    font-weight:200;
    font-style:normal;
}
*{
    --clr-primary-text : #494c50;
    --theme-clr-1: #1e3799;
    --theme-clr-bg: #f2f2f3;
    --border: 2px solid hsl(218, 4%, 92.5%);
    --clr-2: #d7d8da;
    --clr-3: #828282;
    --clr-4: #efefef;
    margin:0;
    padding:0;
    scroll-behavior: smooth;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
}
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    border-radius: 10px;
} 
::-webkit-scrollbar-track {
    background:#aaa;
    border-radius: 10px;
} 
::-webkit-scrollbar-thumb {
    background-color: #1f1f1f;
    /* outline: 1px solid #fafafa; */
    border-radius: 10px;
}
::-moz-selection { 
    background: #1f1f1f; 
    color:#fafafa;
}
::selection { 
    background: #1f1f1f; 
    color:#fafafa;
}
button:focus, button:active, button:hover{
    outline: 0px;
    /* border:0px; */
}
a{
    text-decoration: none;
}
body{
    position: relative;
    font-family: 'Poppins';
    color: var(--clr-primary-text);
    overflow-x: hidden;
    overflow-y: scroll;
}

#main-titlebar {
    height: 45px;
    min-height: 45px;
    background: hsl(0, 0%, 100%);
    border-bottom: 1px solid hsl(218, 4%, 85%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 0 20px;
    z-index: 100;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
}

.navigation-area ul {
    list-style: none;
    display: flex;
    height: 100%;
}

.logo-area {
    position: relative;
    display: flex;
    width: 150px;
    height: 100%;
    align-items: center;
}

.navigation-area {
    position: relative;
    height: 100%;
    flex-grow: 1;
}

.navigation-area ul li {
    font-size: 15px;
    cursor: pointer;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 5px;
    margin: 0 15px;
    vertical-align: middle;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.logo {
    font-size: 26px;
}

.nav-link {
    color: var(--clr-primary-text);
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-link.active {
    color: var(--theme-clr-1);
}

.nav-link.active:before {
    content: '';
    position: absolute;
    height: 3px;
    width: 100%;
    bottom: 0;
    left: 0;
    background: var(--theme-clr-1);
}

.dashboard-canvas {
    padding: 65px 20px 20px;
    position: relative;
    background: var(--theme-clr-bg);
    min-height: 100vh;
    display: flex;
}

.section-container-1 {
    height: 100%;
    margin: 0 auto 60px auto;
    max-width: 1140px;
    width: 80%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* -webkit-box-orient: horizontal; */
    /* -webkit-box-direction: normal; */
    -ms-flex-direction: row;
    flex-direction: row;
    background: #fff;
    /* min-height: 85vh; */
    border: 1px solid hsl(218, 4%, 92.5%);
    -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, .08);
    box-shadow: 0 4px 8px rgba(0, 0, 0, .08);
    padding: 45px 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.main-title {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
}

.sc1-upper {
    display: flex;
    width: 100%;
    position: relative;
    align-items: center;
    justify-content: space-between;
}

.button {
    min-height: 2.5rem;
    padding: 0.61875rem 1.5rem;
    font-size: 0.875rem;
    line-height: 1.3;
    border: 1px solid var(--theme-clr-1);
    border-radius: 3px;
    color: var(--theme-clr-1);
    font-weight: 600;
    cursor: pointer;
    text-align: center;
}

.input-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 42px;
    /* height: 42px; */
    line-height: 40px;
    padding: 0 5px 0 10px;
    border: 1px solid #d7d8da;
    border-radius: 4px;
    min-width: 240px;
    background-color: hsl(0, 0%, 100%);
    width: 100%;
    font-size: 15px;
    font-family: 'Poppins';
    color: hsl(218, 4%, 30%);
    outline: 0px;
}
input::placeholder{
    font-family: 'Poppins';
}
.sc1-search {
    position: relative;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
}

.input-outer-sec {
    position: relative;
}

.search-sec {
    width: 30%;
    margin-right: 20px;
}

.search-ico {
    position: absolute;
    width: 15px;
    fill: #bbbfc4;
    right: 12px;
    top: 12px;
}

.section-content-inner {
    position: relative;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.itinerary-ind {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 28px 0;
    width: 100%;
    border-top: 1px solid hsl(218, 4%, 92.5%);
}

.itinerary-img-sec {
    width: 160px;
    height: 120px;
    background-color: hsl(218, 4%, 92.5%);
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    position: relative;
    margin-right: 20px;
}

.itinerary-action-sec {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 20%;
}

.itinerary-info-sec {
    position: relative;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
}

.btn-prime {
    background: var(--theme-clr-1);
    color: #fff;
}

.itinerary-action-sec .button {
    margin-bottom: 10px;
}

.btn-scnd {
    border-color: transparent;
}

.itinerary-name {
    font-weight: 700;
    display: block;
    line-height: 1.3;
}

.itinerary-sub-info {
    font-size: 13px;
    color: #828282;
    position: relative;
}

.sub-info-ink {
    font-size: 14px;
    margin-left: 10px;
    display: inline;
    padding-left: 10px;
    position: relative;
    color: var(--theme-clr-1);
}

.itinerary-info-1 {
    position: relative;
    display: flex;
    margin: 10px 0;
}

.itinerary-state {
    position: absolute;
    background-color: hsl(0, 0%, 100%);
    opacity: 0.93;
    border-radius: 12px;
    -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .05);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .05);
    left: 10px;
    bottom: 10px;
    min-width: 70px;
    min-height: 22px;
    line-height: 22px;
    padding: 0 10px 0 20px;
    font-weight: bold;
    font-size: 12px;
}

.itinerary-state:before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    top: 6px;
    left: 5px;
    z-index: 2;
}
.itinerary-state.active:before {
    background: green;
}
.itinerary-state.draft:before {
    background: yellow;
}
.itinerary-info-1 .itinerary-sub-info:before {
    content: '';
    position: absolute;
    width: 1px;
    height: 80%;
    background: hsl(218, 4%, 85%);
    right: -10px;
    top: 2px;
}

.new-it-action-sec {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.itinerary-tb {
    justify-content: space-between;
}

.title-bar-txt {
    /* -webkit-box-flex: 1; */
    -ms-flex: 1 1 auto;
    /* flex: 1 1 auto; */
    color: hsl(218, 4%, 60%);
    padding: 0 3px;
    font-size: 16px;
    line-height: 100%;
    text-align: right;
    font-weight: 400;
    position: relative;
    display: flex;
}

.itinerary-name-box {
    position: relative;
    display: flex;
}

.save-exit {
    position: relative;
    font-size: 17px;
    margin-left: 10px;
    padding-left: 10px;
    color: var(--theme-clr-1);
}

.save-exit:before {
    content: '|';
    color: hsl(218, 4%, 60%);
    top: 5px;
    font-size: 16px;
    line-height: 100%;
    position: absolute;
    left: -4px;
}

.dashboard-canvas.canvas-2 {
    padding: 0;
    margin-top: 45px;
}

.dashboard-sidebar-it {
    -ms-flex-order: 1;
    order: 1;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    background-color: hsl(0, 0%, 100%);
    width: 265px;
    border-right: 1px solid hsl(218, 4%, 85%);
    min-height: 100vh;
}

.progress-container {padding: 25px 20px 30px 20px;border-bottom: 1px solid hsl(218, 4%, 85%);}

.progress-title {
    margin-bottom: 5px;
    font-weight: bold;
    position: relative;
    display: flex;
}

.progress-bar-outer {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    background-color: hsl(218, 4%, 90%);
    -webkit-transition: width 0.6s ease;
    transition: width 0.6s ease;
    height: 13px;
    border-radius: 0.40625rem;
}

.progress-bar-inner {
    position: absolute;
    width: 10%;
    height: 100%;
    background: var(--theme-clr-1);
    border-radius: 0.40625rem;
}

.vsc-sec {
    border-bottom: 1px solid hsl(218, 4%, 85%);
    padding: 0 20px;
    cursor: pointer;
}

.vsc-header {
    padding-top: 25px;
    padding-bottom: 20px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 13px;
}

.step-sub-item {
    padding: 12px 0 12px 16px;
    font-weight: normal;
    font-size: 13px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: hsl(218, 4%, 30%);
    justify-content: space-between;
}

.step-sub-item svg {
    width: 13px;
    fill: var(--theme-clr-1);
}

.vsc-sec.active {
    padding-bottom: 15px;
}

.dashboard-container-it {
    position: relative;
    width: auto;
    display: flex;
    flex-grow: 1;
    order: 2;
    align-items: flex-start;
}

.it-input-container {
    margin-left: 60px;
    margin-top: 20px;
    -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, .08);
    box-shadow: 0 4px 8px rgba(0, 0, 0, .08);
    display: flex;
    padding: 45px 40px;
    width: 800px;
    min-height: 500px;
    background: white;
    margin-bottom: 35px;
    flex-direction: column;
}

.it-ip-title {
    font-size: 28px;
}

.info-chunk {
    margin-bottom: 20px;
    max-width: 640px;
    margin-top: 25px;
    position: relative;
    display: block;
    width: 100%;
}

.i-c-title {
    font-size: 18px;
    /* margin-bottom: 10px; */
    color: var(--clr-primary-text);
    font-weight: 600;
}

.i-c-subtitle {
    font-size: 14px;
    color: hsl(218, 4%, 30%);
    font-weight: 300;
}

.it-input-sec {
    margin: 10px 0;
    position: relative;
}

.input-text.input-number {
    min-width: 75px;
    width: 75px;
}

.short-number {
    display: flex;
    align-items: center;
    margin: 15px 0;
}

.sn-titile-name {
    font-size: 14px;
    /* margin-right: 2rem; */
}

.short-number-title {
    position: relative;
    width: 100px;
}

.dropdownWrapper {
    box-sizing: border-box;
    position: relative;
    display: inline-block;
    width: 100%;
}
.dropdownWrapper .dropdown {
    transition: 0.2s;
    z-index: 1;
    overflow: hidden;
    box-sizing: border-box;
    color: var(--clr-primary-text);
    font-size: 15px;
    width: 100%;
    cursor: pointer;
    border: 1px solid #ccc;
    line-height: 40px;
    padding: 0 5px 0 10px;
    border: 1px solid hsl(218, 4%, 85%);
    border-radius: 4px;
    background-color: hsl(0, 0%, 100%);
    font-size: 15px;
}
.dropdownWrapper .dropdown::selection {
    background: transparent;
}
.dropdownWrapper .dropdown:after {
    transition: 0.1s;
    display: initial;
    color: #ccc;
    cursor: pointer;
    position: absolute;
    right: 8px;
    content: "▼";
    top: 50%;
    transform: translateY(-50%);
    font-weight: 900;
}

.dropdownWrapper .dropdown.active:after {
    color: #fff;
    transform: translateY(-50%) rotateX(180deg);
    transition: 0.1s;
}
.dropdownWrapper .dropdown-itemsWrapper {
    top: calc(100% - 1px);
    opacity: 1;
    z-index: 1;
    color: #111;
    font-size: 15px;
    transition: 0.2s;
    box-sizing: border-box;
    position: absolute;
    width: 100%;
    max-height: 177px;
    overflow-y: auto;
    border: 1px solid #d2d3d5;
    /* border-bottom-right-radius: 5px; */
    /* border-bottom-left-radius: 5px; */
    margin: 0;
    padding: 0;
}
.dropdownWrapper .dropdown-itemsWrapper::-webkit-scrollbar {
    background: #fff;
    width: 8px;
    border-bottom-right-radius: 4px;
}
.dropdownWrapper .dropdown-itemsWrapper::-webkit-scrollbar-track {
    padding-left: 1px;
    border-left: 1px solid #ff8000;
    -webkit-box-shadow: none;
}
.dropdownWrapper .dropdown-itemsWrapper::-webkit-scrollbar-thumb {
    box-sizing: border-box;
    position: absolute;
    margin-left: 1px;
    background: #ccc;
    -webkit-box-shadow: none;
}
.dropdownWrapper .dropdown-itemsWrapper.inactive {
    border: 0px;
    opacity: 0;
    height: 0px;
}
.dropdownWrapper .dropdown-itemsWrapper li {
    margin: 0px;
    transition: 0.1s;
    box-shadow: 0 3px 5px #ccc;
    cursor: pointer;
    list-style: none;
    padding: 8px 10px;
    background: #fff;
    width: auto;
    height: auto;
    border-bottom: 1px solid #eee;
    border-top: none;
}
.dropdownWrapper .dropdown-itemsWrapper li::selection {
    background: transparent;
}
.dropdownWrapper .dropdown-itemsWrapper li:hover {
    background: var(--theme-clr-1);
    color: #fff;
}

.short-select-container {
    width: 150px;
    min-width: 150px;
}

.info-btn-container {
    position: relative;
    display: flex;
    margin: 3rem 0px;
}

.btn-main {
    min-height: 3rem;
    line-height: 2;
    font-size: 16px;
    font-weight: 700;
}

#tour-it-container {
    position: relative;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.day-container {
    position: relative;
    width: 100%;
    background-color: #f9f8f8;
    border: 2px solid hsl(218, 4%, 92.5%);
    padding: 20px;
    margin-bottom: 2rem;
}

.dca-arrow {
    fill: var(--theme-clr-1);
    width: 16px;
    height: 16px;
    margin-right: 10px;
    cursor: pointer;
}

.day-upper-header {
    position: relative;
    display: flex;
    align-items: center;
}

.dc-arrow-cont {
    position: relative;
    display: flex;
    align-items: center;
}

.dc-name-content {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--clr-primary-text);
    display: flex;
    flex-grow: 1;
}

.day-lower-content {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 1rem;
    padding-left: 25px;
}

.dc-chunk {
    width:100%;
    margin: 1.5rem 0;
}

.dc-chunk .i-c-title {
    font-size: 16px;
}

.dc-detail-inner {
    border: 1px solid hsl(218, 4%, 85%);
    padding: 16px;
    border-radius: 3px;
    background-color: hsl(0, 0%, 100%);
}

.dc-detail-title {
    padding: 0 0 8px 0;
    font-size: 16px;
    font-weight: bold;
    position: relative;
    width: 100%;
    border-bottom: 1px solid hsl(218, 4%, 85%);
    display: flex;
    flex-direction: column;
}

.dc-content-inner {
    position: relative;
    width: 100%;
    padding: 8px 0 0 0;
    cursor: auto;
    cursor: initial;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dc-add-item {
    border-color: transparent;
    background: transparent;
    font-size: 16px;
    cursor: pointer;
    padding: 8.9px 0;
    display: flex;
}

.popup-container {
    position: fixed;
    overflow-y: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .75);
    z-index: 210;
    display: none;
}

.popup-inner {
    position: relative;
    top: 40px;
    max-width: 600px;
    margin: 0 auto 50px auto;
    overflow: visible;
    -webkit-overflow-scrolling: touch;
    outline: none;
    font-size: 16px;
    background: hsl(0, 0%, 100%);
    padding: 64px 40px 40px 40px;
    position: relative;
}

.modal-close {
    height: 18px;
    width: 18px;
}

.popup-close, .ps-close {
    position: absolute;
    background: none;
    right: 20px;
    top: 20px;
    height: 44px;
    width: 44px;
    padding: 13px;
    border: none;
    cursor: pointer;
}

.popup-title {
    font-size: 30px;
    font-weight: bold;
    margin: 0;
}

.popup-body {
    padding-left: 15px;
    margin: 2rem 0;
    display: flex;
    width: 100%;
    flex-direction: column;
}

.itinerary-type {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 22px 0;
    border: 1px solid hsl(218, 4%, 92.5%);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
    cursor: pointer;
}

.type-radio {
    margin-left: 30px;
    margin-right: 10px;
    margin-top: 12px;
}

.it-ico-sec {
    height: 48px;
    width: 48px;
    position: relative;
    fill: var(--theme-clr-1);
}

.it-sel-desc {
    padding-left: 30px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.sel-type-name {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 7px;
    line-height: 0.8;
}

.popup-footer {border-top: 1px solid hsl(218, 4%, 92.5%);margin: 35px -20px -15px -20px;padding: 25px 20px 0 20px;position: relative;display: flex;justify-content: flex-end;}

.popup-footer .button {
    font-size: 16px;
}

.popup-footer .button:not(:last-child) {
    margin-right: 15px;
}

.sel-type-desc {
    font-size: 14px;
    color: #888;
}

.pop-i-c-title {
    font-size: 14px;
    margin-bottom: 6px;
    display: flex;
    position: relative;
    font-weight: 600;
}

.pop-input-sec {
    width: 100%;
    position: relative;
    margin: 10px 0;
}

.popup-info-chunk {
    position: relative;
    margin-bottom: 2rem;
    width: 100%;
}
.radio-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    border: 1px solid hsl(218deg 5.59% 75.65%);
    background-color: hsl(0, 0%, 100%);
}

/* On mouse-over, add a grey background color */
.radio-container:hover input ~ .checkmark {
    background-color: hsl(0, 0%, 100%);
    border-color: var(--theme-clr-1);
}

/* When the radio button is checked, add a blue background */
.radio-container input:checked ~ .checkmark {
    background-color: #fff;
    border-color: var(--theme-clr-1);
}

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

/* Show the indicator (dot/circle) when checked */
.radio-container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.radio-container .checkmark:after {
    top: 6px;
    left: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--theme-clr-1);
}

.radio-container {
    position: relative;
    width: 100%;
    display: flex;
    cursor: pointer;
    /* margin-bottom: 1.2rem; */
}

.radio-title {
    position: relative;
    display: flex;
    padding-left: 2.6rem;
    font-size: 14px;
}

.item-desc-cont {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 16px 8px;
    border-bottom: 1px solid hsl(218, 4%, 85%);
    width: 100%;
}

.idc-num {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    font-weight: bold;
    font-size: 14px;
}

.idc-content {
    -webkit-box-flex: 4;
    -ms-flex: 4 1 75%;
    flex: 4 1 75%;
    min-width: 0;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
}

.idc-action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
}

.idc-title {
    word-break: break-word;
    font-weight: bold;
    font-size: 14px;
}

.idc-type, .idc-desc {
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
}

.idca-icon {
    height: 16px;
    width: 16px;
    color: var(--theme-clr-1);
    cursor: pointer;
    margin-left: auto;
    position: relative;
    display: block;
}

.idca-icon:not(:first-child) {
    margin-left: 15px;
}

.solo-icon {
    fill: currentColor;
    position: relative;
    z-index: 1;
}

.idca-icon:hover:before {
    content: '';
    position: absolute;
    top: -5px;
    bottom: -5px;
    left: -5px;
    right: -5px;
    border-radius: 50%;
    background-color: hsl(0deg 64% 96.3%);
    z-index: 0;
}

.new-btn-container {
    position: relative;
    width: 100%;
    margin-top: 1rem;
}

.dca-link {
    line-height: 1.3;
    font-size: 14px;
    color: var(--theme-clr-1);
    cursor: pointer;
}

.in-ex-container {
    margin-top: 60px;
    margin-bottom: 30px;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.in-ex-title {
    font-size: 18px;
    color: var(--clr-primary-text);
    font-weight: bold;
    border-bottom: 1px solid hsl(218, 4%, 92.5%);
    padding-bottom: 8px;
}

.inex-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid hsl(218, 4%, 92.5%);
    padding: 16px 16px 16px 0px;
}

.inex-add-cont {
    position: relative;
    width: 100%;
    padding-top: 20px;
}

.inex-name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}

.inex-action {
    isplay: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row;
    flex-flow: row;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-left: auto;
    -ms-flex-item-align: center;
    align-self: center;
}

.it-input-sec .radio-title {
    font-size: 16px;
}

.vehicle-select, .block-select {
    display: flex;
    padding: 22px 0;
    border: 1px solid hsl(218, 4%, 92.5%);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
}

.vehicle-img {
    height: 48px;
    width: 48px;
    position: relative;
    fill: var(--theme-clr-1);
}

.vehicle-container {
    position: relative;
    display: flex;
    flex-grow: 1;
    padding-left: 15px;
    align-items: center;
}

.vehicle-info {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-left: 25px;
}

.vehi-name {
    font-weight: bold;
    font-size: 16px;
    /* margin-bottom: 7px; */
    line-height: 0.8;
}

.pax {
    font-size: 14px;
    color: #888;
}

.vehicle-input-sec {
    margin-top: 2rem;
}

.vehicle-select .checkmark {
    position: relative;
    order: -1;
    margin: 0 15px;
}

.fee-input-row {
    display: flex;
    width: 100%;
    position: relative;
    /* padding: 12px 0; */
    font-size: 14px;
    align-items: center;
}

.fee-day {
    width: 10%;
    padding: 10px;
}

.fee-description {
    width: 50%;
    padding: 10px;
}

.fee-input {
    position: relative;
    width: 20%;
    padding: 10px;
}

.fee-header {
    position: relative;
    border-bottom: 1px solid hsl(0deg 0% 91.81%);
    font-weight: 600;
}

.fee-input-container {
    /* margin-top: 15px; */
    margin-bottom: 10px;
}

.fee-input-sec .input-text {
    min-width: auto;
    max-width: 80px;
}

.fee-entry-chunk {
    margin-top: 30px;
}

.fee-day-small {}

.fee-meal {
    width: 25%;
    padding: 10px;
}

.fee-input-short {
    width: 15%;
    padding: 10px;
}

.supplimentory-outer {
    border: 1px solid hsl(218, 4%, 85%);
    padding: 16px;
    border-radius: 3px;
    background-color: hsl(0, 0%, 100%);
    margin-top: 1.5rem;
    position: relative;
}

.supplimentory-name {
    font-size: 14px;
    font-weight: 700;
}

.supplimentory-description {
    font-size: 14px;
    color: #818283;
}

.sup-action-area {
    position: absolute;
    right: 1rem;
    top: 1rem;
}

.dc-chunk {}

.acc-preview-container {
    padding: 10px 0;
    position: relative;
    width: 100%;
    border-bottom: 1px solid hsl(218, 4%, 85%);
}

.room-option-text {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 5px;
    display: flex;
}

.acc-preview-outer {}

.accommodation-preview {
    position: relative;
    display: flex;
    padding: 0 1rem;
    width: 100%;
    font-size: 14px;
}

.room-detail {
    padding: 5px;
    width: 40%;
    position: relative;
}

.room-type {
    padding: 5px;
    width: 40%;
    position: relative;
}

.room-price {
    padding: 5px;
    width: 30%;
    position: relative;
}

.popup-container.active, .ps-container.active {
    display: block;
}

#main-curtain {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: hsl(218, 4%, 92.5%);
    margin: 0;
    max-width: 100%;
    height: 100%;
    overflow: auto;
    -webkit-transform: translate(0, 100%);
    transform: translate(0, 100%);
    -webkit-transition: -webkit-transform 0.2s linear;
    transition: -webkit-transform 0.2s linear;
    transition: transform 0.2s linear;
    transition: transform 0.2s linear, -webkit-transform 0.2s linear;
    display: block;
    z-index: 5000;
}

.curtain-body {
    min-height: 100%;
    margin: 0 auto;
    max-width: 800px;
    position: relative;
    background: hsl(0, 0%, 100%);
    padding: 64px 40px 40px 40px;
}

.curtain-close {
    position: absolute;
    background: none;
    right: 20px;
    top: 20px;
    height: 44px;
    width: 44px;
    padding: 13px;
    border: none;
    cursor: pointer;
}

.curtain-header {
    position: relative;
    margin-bottom: 2rem;
}

.room-entry-chunk {
    background-color: hsl(218, 4%, 97.5%);
    padding: 32px 20px 20px 20px;
    display: table;
    width: 100%;
    margin-top: 1rem;
    border: 1px solid hsl(218, 4%, 85%);
}

.rm-type {
    padding: 10px;
    width: 40%;
}

.rm-occ {
    padding: 10px;
    width: 40%;
}

.rm-input-price {
    padding: 10px;
    width: 20%;
}

.input-free .input-text {
    width: 100%;
    min-width: auto;
}

.rm-select-container {
    width: 80%;
    margin: 5px 0;
}

.curtain-footer {
    border-top: 2px solid hsl(218, 4%, 92.5%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: space-between;
    padding: 2.5rem 0;
    margin-top: 3rem;
    position: relative;
    width: 100%;
}

.curtain-footer .button {
    font-size: 16px;
    padding: 0.7375rem 1.7rem;
}

.acc-info-details {
    font-weight: 400;
}

.info-detail-display-main {
    margin-top: 30px;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
}

.iddm-title {
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
}

.iddm-chink {
    position: relative;
    display: flex;
    align-items: flex-end;
}

.main-display-title {
    font-weight: 600;
    font-size: 54px;
    line-height: 45px;
    display: block;
}

.short-sec .input-text {
    width: 150px;
    min-width: 150px;
}

.costing-row {
    position: relative;
    display: flex;
    width: 100%;
    padding: 10px 0;
    font-size: 14px;
}

.costing-body {
    position: relative;
    width: 100%;
    margin-top: 10px;
}

.costing-title {
    display: flex;
    width: 70%;
    padding: 0 10px;
}

.costing-option {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0 10px;
    width: 15%;
    align-items: flex-end;
}

.display-cont {
    position: relative;
    width: 100%;
    padding: 15px;
    border: var(--border);
    margin: 2rem 0;
}

.it2t-btn-area {
    position: absolute;
    right: 1rem;
    top: 1.5rem;
}

.tour-id {
    position: relative;
    display: flex;
    margin-bottom: 10px;
    font-size: 16p;
}

.it2tour {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1rem 2rem;
    font-size: 14px;
}

.dc-itinerary-name {
    font-size: 16px;
    font-weight: 600;
}

.it-input-sec.mid-length {
    width: 60%;
}

.input-text.input-date {
    background: url(data:image/svg+xml,%3C?xml version='1.0' encoding='UTF-8'?%3E %3Csvg width='20px' height='20px' viewBox='0 0 20 20' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E %3C!-- Generator: Sketch 47.1 (45422) - http://www.bohemiancoding.com/sketch --%3E %3Ctitle%3EGroup 152%3C/title%3E %3Cdesc%3ECreated with Sketch.%3C/desc%3E %3Cdefs%3E%3C/defs%3E %3Cg id='styles' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' stroke-linecap='round' stroke-linejoin='round'%3E %3Cg id='1' transform='translate(-215.000000, -415.000000)' stroke='%23186b6d' stroke-width='1.5'%3E %3Cg id='Group-152' transform='translate(216.000000, 416.000000)'%3E %3Cpolyline id='Stroke-8339' points='3.375 1.875 0.375 1.875 0.375 17.625 17.625 17.625 17.625 1.875 14.625 1.875'%3E%3C/polyline%3E %3Cpolygon id='Stroke-8340' points='3.375 3.375 5.625 3.375 5.625 0.375 3.375 0.375'%3E%3C/polygon%3E %3Cpolygon id='Stroke-8341' points='12.375 3.375 14.625 3.375 14.625 0.375 12.375 0.375'%3E%3C/polygon%3E %3Cpath d='M5.625,1.875 L12.375,1.875' id='Stroke-8342'%3E%3C/path%3E %3Cpath d='M0.375,5.625 L17.625,5.625' id='Stroke-8343'%3E%3C/path%3E %3C/g%3E %3C/g%3E %3C/g%3E %3C/svg%3E) no-repeat 13px 13px;
    background-size: 18px 18px;
    padding-left: 45px;
    text-overflow: ellipsis;
    font-size: 15px;
}

.date-picker-outer {
    width: 30%;
    position: relative;
}

.date-picker-outer:before {
    content: '';
    background: url(../images/svg/calender.svg);
    position: absolute;
    width: 25px;
    height: 25px;
    background-position: center;
    background-size: contain;
    top: 8px;
    left: 8px;
}

.low-length {
    width: 150px;
}

.low-length .input-text {
    min-width: auto;
}

.chunk-img-sec {
    width: 160px;
    height: 120px;
    background-color: hsl(218, 4%, 92.5%);
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    position: relative;
    margin-right: 20px;
}

.vehicle-chunk {
    position: relative;
    width: 100%;
    margin: 1rem 0;
    padding: 1rem 0;
    display: flex;
}

.chunk-title-name {
    font-weight: 700;
    display: block;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.chunk-sub-info {
    font-size: 13px;
    color: #828282;
    position: relative;
}

.rate-display-sec {
    position: relative;
    width: 100%;
    /* margin: 1rem 0 0; */
    padding: 1rem 0;
}

.rate-info-bar {
    position: relative;
    display: flex;
    margin: 1rem;
    font-size: 15px;
    align-items: flex-end;
    line-height: 1;
}

.rib-title {
    font-weight: 700;
    margin-right: 28px;
    font-size: 14px;
}

.rib-val {
    font-size: 22px;
    font-weight: 300;
}

.dc-title-chunk {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.dci-title {
    font-weight: bold;
    color: hsl(218, 4%, 30%);
}

.dci-row {
    position: relative;
    margin-bottom: 0.2rem;
    font-size: 14px;
    display: flex;
}

.dc-info-area-chunk {
    position: relative;
    margin-bottom: 1rem;
    padding-left: 1rem;
}

.acc-info-container {
    position: relative;
    flex: 1;
    display: flex;
    padding: 0 1rem;
    padding-left: 3rem;
}

.acc-preview-header {
    position: relative;
    display: flex;
    padding: 0 1rem;
    font-size: 14px;
    font-weight: 700;
    border-bottom: 1px solid hsl(218, 4%, 85%);
}

.acc-info-container .acc-preview-container {
    border: 0px;
}

.room-eq {
    width: 20%;
    padding: 5px;
}

.radio-container input:checked ~ .prv-add-buying {
    display: block;
}

.block-select {
    flex-wrap: wrap;
    padding: 15px 0 20px;
}

.prv-add-buying {
    color: var(--theme-clr-1);
    width: 100%;
    padding: 0 2rem;
    font-size: 13px;
    display: none;
    font-weight: 600;
}

.block-select .checkmark {
    top: 1.6rem;
    left: 0.7rem;
}

.inner-container-preview {
    margin-top: 2rem;
    position: relative;
    width: 100%;
}

.preview-section {
    /* border-bottom: 1px solid hsl(218, 4%, 85%); */
    margin-bottom: 32px;
}

.prev-chunk {
    padding-top: 5px;
    padding-bottom: 43px;
    position: relative;
    width: 100%;
}

.prev-title {
    margin-bottom: 20px;
    word-break: break-word;
    font-size: 20px;
}

.prev-chunk .dci-row {
    font-size: 15px;
    margin-bottom: 0.5rem;
}

.prev-chunk .dci-title {
    width: 25%;
    display: flex;
}

.preview-section:not(:last-child) {
    border-bottom: 1px solid hsl(218, 4%, 85%);
}

.acc-preview-display {
    padding: 15px;
    border: var(--border);
}

.acc-preview-display:not(:last-child) {
    margin-bottom: 2rem;
}

.inner-card {
    margin: 150px auto 60px auto;
    padding: 45px 40px;
    max-width: 500px;
    min-height: 320px;
    background: hsl(0, 0%, 100%);
    font-size: 16px;
    color: hsl(218, 4%, 30%);
    margin-bottom: 15px;
    border: 1px solid hsl(218, 4%, 92.5%);
    -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, .08);
    box-shadow: 0 4px 8px rgba(0, 0, 0, .08);
    width: 80%;
    display: flex;
    flex-direction: column;
}

#signin-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    background-color: hsl(218, 4%, 95%);
}

.logo-area-signin {
    display: block;
    margin: 0 auto 2rem auto;
    text-align: center;
    font-size: 2.5rem;
    color: var(--theme-clr-1);
}

.s-input-section .input-text {
    height: 50px;
}

.s-input-container {
    margin-bottom: 1rem;
    position: relative;
    display: flex;
    flex-direction: column;
}

.s-input-section {
    position: relative;
    width: 100%;
    margin-bottom: 1rem;
}

.s-btn-container {
    position: relative;
    width: 100%;
    margin-bottom: 3rem;
}

.sign-btn {
    width: 100%;
    padding: 0.91875rem 0.75rem;
}

.s-container {
    position: relative;
    display: flex;
    width: 100%;
    justify-content: center;
    text-align: center;
}

.s-link-sub {
    vertical-align: baseline;
    line-height: 1.3;
    font-size: 14px;
    color: var(--theme-clr-1);
    cursor: pointer;
}
.s-loader {
    width: 40px;
    height: 40px;
    border: 5px solid #FFF;
    border-bottom-color: var(--theme-clr-1);
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

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

.loader-area-snippet {
    position: absolute;
    width: 100%;
    top:0;
    left:0;
    height: 100%;
    background: rgba(255,255,255,.6);
    display: grid;
    place-items: center;
}

.search-drop-down {
    width: 100%;
    max-height: 154px;
    padding: 6px 0px;
    background-color: rgb(255, 255, 255);
    border-right: 2px solid rgb(230, 230, 255);
    border-bottom: 2px solid rgb(230, 230, 255);
    border-left: 2px solid rgb(230, 230, 255);
    border-image: initial;
    border-top: none;
    border-radius: 0px 0px 3px 3px;
    font-size: 15px;
    line-height: 18px;
    letter-spacing: normal;
    color: rgb(61, 64, 71);
    position: absolute;
    top: 100%;
    left: 0px;
    right: 0px;
    transform-origin: center top;
    z-index: 150;
    overflow: auto;
    transform: scaleY(0);
    opacity: 1;
    box-shadow: rgb(0 0 0 / 10%) 0px 15px 25px -10px;
    display: flex;
    flex-direction: column;
}
.search-option {
    text-align: left;
    width: 100%;
    display: flex;
    color: rgb(72, 72, 112);
    font-size: 15px;
    font-weight: 400;
    padding: 6px 16px;
    line-height: 1.2;
    letter-spacing: normal;
    background: transparent;
    border: 0px;
    cursor: pointer;
    flex-direction: row;
    align-items: center;
}
.search-option:hover {
    box-shadow: none;
    color: rgb(22, 136, 254);
    background: rgb(247, 247, 252);
    border-radius: 0px;
}

.search-active .search-drop-down {
    transform: scaleY(1);
}

.itinerary-item-display-set {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.filter-section {
    display: flex;
    width: 100%;
    position: relative;
    margin-top: 20px;
    align-items: center;
}

.rand-name {
    font-weight: 600;
    font-size: 16px;
    /* margin-right: 1rem; */
    display: inline-block;
    min-width: 50px;
}

.filter-outer {
    position: relative;
    width: auto;
    display: flex;
    flex-wrap: wrap;
    margin-left: 1rem;
}

.filter {
    padding: 0.61875rem 1.5rem;
    font-size: 0.875rem;
    line-height: 1.3;
    border: 1px solid var(--clr-2);
    border-radius: 3px;
    color: var(--clr-3);
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    margin-right: 0.8rem;
    cursor: pointer;
    transition: all .4s ease;
}

.filter:hover, .filter.active {
    background: var(--theme-clr-1);
    color: var(--theme-clr-bg);
}

.tbl-outer {
    width: 100%;
    position: relative;
    padding-top: 30px;
    border-top: 1px solid var(--clr-2);
}

.tc-table {
    position: relative;
    min-width: 100%;
    border: 1px solid var(--clr-2);
    border-spacing: 0px;
    border-radius: 3px;
}

.tc-table td, .tc-table th {
    padding: 10px;
    font-size: 14px;
}

.tc-table th {
    text-align: left;
    background: var(--clr-4);
    color: var(--clr-3);
}

.tc-table td {
    font-weight: 600;
    color: var(--clr-primary-text);
    font-size: 13px;
}

.tc-table tr:not(:last-child) td {
    border-bottom: 1px solid var(--clr-2);
}

.ita-icon {
    width: 25px;
}

.item-action-sec {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.v-filter {
    margin-bottom: 0.8rem;
}

.vehicle-outer {
    position: relative;
    width: 23%;
    border: 1px solid var(--clr-2);
    padding: 10px;
    border-radius: 3px;
    margin-bottom: 1.5rem;
}

.vehicle-outer-container {
    position: relative;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding-top: 30px;
    border-top: 1px solid var(--clr-2);
}

.vehicle-img-sec {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--clr-4);
    margin-bottom: 10px;
}

.vehicle-outer:not(:nth-child(4n)) {
    margin-right: 2%;
}
.vehicle-nm {
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
}

.vehi-label {
    font-size: 11px;
    line-height: 1;
    display: inline-flex;
    margin-bottom: 10px;
    background: var(--clr-2);
    padding: 4px 10px;
    border-radius: 3px;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-weight: 700;
}

.owner-name {
    position: relative;
    display: flex;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
}

.owner-phone {
    color: var(--clr-3);
    font-size: 14px;
}

.vehicle-info-container {
    position: relative;
    padding-left: 5px;
}

.driver-outer {
    position: relative;
    padding: 10px;
    border: 1px solid var(--clr-2);
    border-radius: 3px;
    display: flex;
    width: 32%;
}

.driver-img-sec {
    position: relative;
    background: var(--clr-4);
    width: 45%;
    aspect-ratio: 3/4;
    margin-right: 10px;
    border-radius: 3px;
}

.driver-info-container {
    position: relative;
    width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.driver-outer:not(:nth-child(3n)) {
    margin-right: 2%;
}

.popup-inner.pi-large {
    max-width: 900px;
    width: 80%;
}

.popup-header {
    position: relative;
    padding: 0 15px;
}

.item-bulk-inner {
    display: flex;
    width: 100%;
    position: relative;
    flex-wrap: wrap;
}

.half-container {
    position: relative;
    width: 50%;
}

.item-bulk-inner .half-container:not(:nth-child(2n)) {
    padding-right: 1rem;
}

.chunk-header {
    position: relative;
    display: block;
    border-bottom: 1px solid var(--clr-2);
    margin-bottom: 2rem;
    padding-bottom: 10px;
    font-weight: 500;
    color: var(--clr-3);
}

.img-up-outer {
    position: relative;
    width: 100%;
    padding: 10px;
    border-radius: 7px;
    border: 1px solid var(--clr-2);
    display: grid;
    place-items: center;
    height: 100%;
}

#rl-container .img-up-outer {
    aspect-ratio: 1;
    max-width: 300px;
}

.img-up-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.img-up-outer:before {
    content: '';
    position: absolute;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    left: 20px;
    top: 20px;
    border: 2px dashed var(--clr-4);
}

.img-up-inner i {
    font-size: 2.5rem;
    color: var(--clr-2);
}

.img-up-txt {
    width: 70%;
    font-size: 13px;
    color: var(--clr-3);
    margin-top: 1rem;
}

.image-upload {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    opacity: 0;
    cursor: pointer;
}

.hexnine-container .img-up-outer {
    aspect-ratio: 16/9;
}

.onethird-container {
    position: relative;
    width: calc(100% / 3);
    padding-right: 1.5rem;
}

.onethird-container:not(:nth-child(3n)) {
}

#popbottom-slider {
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: 150;
    background: #fff;
    display: flex;
    flex-direction: column;
    top: 100%;
    left: 0;
    padding: 2rem;
    justify-content: flex-start;
    transition: all .4s ease;
    align-items: center;
    overflow-y: scroll;
}

.pb-outer {
    position: relative;
    width: 100%;
    height: calc(100% - 80px);
}

.pb-footer {
    position: relative;
    display: flex;
    padding: 2rem 0rem 0;
    justify-content: flex-end;
    border-top: 1px solid hsl(218, 4%, 92.5%);
    width: 100%;
}

.pb-footer .button:not(:last-child) {
    margin-right: 1rem;
}

.pb-title {
    text-align: center;
    font-size: 2rem;
    color: var(--clr-primary-text);
    margin-bottom: 2rem;
}

#popbottom-slider.active {
    top: 0;
}

#pb-img-preview {
    position: relative;
    width: 100%;
    height: 60vh;
}

.inner-img-prev {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-poc-outer {
    margin-top: 1rem;
}

.image-upload-h {
    display: none;
}

.tallhex-container {
    width: 70%;
    aspect-ratio: 3/4;
}

.item-bulk-inner .half-container:nth-child(2n) {
    padding-left: 1rem;
}

.full-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.ac-btn-area {
    margin-bottom: 2rem;
}

.banner-outer {
    position: relative;
    background: var(--clr-4);
    width: 100%;
    padding: 2rem;
    border-radius: 6px;
    margin-bottom: 2rem;
}

.banner-title-sec {
    width: 100%;
    text-align: center;
}

.banner-title {
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.bs-title {
    font-weight: 800;
    padding-right: 20px;
}

.bs-row {
    font-size: 14px;
    margin-bottom: 0.4rem;
    position: relative;
    display: flex;
}

.bs-title:after {
    content: ':';
}

.popbtm-container {
    width: 70%;
    position: relative;
}

.pb-info-display-sec {
    position: relative;
    width: 100%;
    display: flex;
    margin-top: 0rem;
    border: 1px solid hsl(218, 4%, 92.5%);
    flex-wrap: wrap;
    padding: 2rem;
    border-radius: 3px;
    margin-bottom: 2rem;
}

.hpb-text {
    width: 100%;
    display: flex;
    padding: 1rem 0 5px;
    border-bottom: 1px solid var(--clr-2);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    color: var(--clr-primary-text);
    font-weight: 700;
}

.vehicle-pb-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.info-inbound {
    position: relative;
    display: flex;
    margin-top: 1.5rem;
}

#trip-basic-inner .item-bulk-chunk {
    margin-top: 2rem;
}

#notification-bar {
    position: fixed;
    z-index: 300;
    right: -100%;
    margin-right: 1rem;
    padding: 20px;
    background: var(--clr-primary-text);
    bottom: 5rem;
    max-width: 30vw;
    border-radius: 3rem;
    color: #fff;
    font-size: 14px;
    transition: all .8s ease;
}

#notification-bar.active {
    right: 0;
}

.logo-text {
    text-transform: uppercase;
    font-weight: 900;
}

.wrap-container {
    position: relative;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.wrap-container .half-container:nth-child(2n-1) {
    padding-right: 10px;
}

.wrap-container .half-container:nth-child(2n) {
    padding-left: 10px;
}

.pca-icon {
    height: 25px;
    width: 25px;
    color: var(--theme-clr-1);
    cursor: pointer;
    margin: auto;
    position: relative;
    display: block;
    padding: 5px;
    border-radius: 50%;
    transition: all .5s ease;
}

.tl-center {
    text-align: center !important;
}

.pr-info-display-sec {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.pr-inner-container {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.quarter-container {
    position: relative;
    width: 25%;
}

.pr-inner-container .quarter-container:nth-child(4n+1) {
    padding-right: 10px;
}

.pr-inner-container .quarter-container:nth-child(4n+2), .pr-inner-container .quarter-container:nth-child(4n+3) {
    padding: 0 10px;
}

.pr-inner-container .quarter-container:nth-child(4n) {
    padding-left: 10px;
}

.new-report {
    position: relative;
    width: 23%;
    margin: 10px 1%;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px dotted var(--clr-2);
    color: var(--clr-3);
    transition: all .4s ease;
    border-radius: 14px;
    cursor: pointer;
}

.nr-icon {
    fill: var(--clr-3);
    width: 50px;
    margin-bottom: 1rem;
    transition: all .4s ease;
}

.new-report:hover .nr-icon {
    fill: var(--clr-primary-text);
}

.new-report:hover {
    color: var(--clr-primary-text);
    border-color: var(--clr-primary-text);
}

.new-report span {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
}


.report-folder {
    position: relative;
    width: 23%;
    margin: 10px 1%;
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 3px solid var(--clr-2);
    color: var(--clr-3);
    transition: all .4s ease;
    border-radius: 14px;
    cursor: pointer;
    justify-content: flex-start;
}

.report-btn {
    position: relative;
    width: 30px;
    height: 30px;
    border: 2px solid var(--clr-3);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    fill: var(--clr-3);
    color: var(--clr-3);
    border-radius: 50%;
    cursor: pointer;
    margin-bottom: 5px;
}

.folder-title {
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
    text-decoration: underline;
}

.folder-body {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.info-sec-v {
    position: relative;
    width: 100%;
    margin-bottom: 0.5rem;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.infos-title {
    position: relative;
    font-weight: 700;
}

.infos-data {
    padding-left: 10px;
}

.attc-download-btn {
    position: relative;
    display: flex;
    width: 100%;
}

.attc-down {
    width: 100%;
    position: relative;
    border: 1px solid var(--clr-3);
    padding: 5px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    /* color: var(--clr-3); */
}

.half-container.forced:nth-child(2n),.pr-inner-container .half-container:nth-child(2n+1) {
    padding-right: 10px;
}

.half-container.forced:nth-child(2n-1) {
    padding-left: 10px;
}

.pop-input-sec.radio-sec {
    display: flex;
    align-items: center;
}

.input-row {
    position: relative;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.attc-choose {
    width: max-content;
    position: relative;
    border: 1px solid var(--clr-3);
    padding: 10px 5px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    color: var(--clr-3);
    margin-right: 1rem;
}

.file-upload-action {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

#file-chosen {
    font-size: 14px;
    color: var(--clr-3);
}

.radio-row .radio-container {
    width: 20%;
}

.radio-row .pop-i-c-title {
    margin-bottom: 0;
    width: 20%;
}

.radio-row {    
    padding: 20px 0;
}
.radio-row:not(:nth-last-child(1)) {
    border-bottom: 1px solid var(--clr-4);
}

#current_illness {
    position: relative;
    width: 100%;
}
.folder::before {
    top: -24px;
    left: 0;
    width: 80%;
    height: 24px;
    border-radius: 14px 0 0;
    content: '';
    display: block;
    position: absolute;
    background: var(--theme-clr-1);
}
.folder::after{
    top: -48px;
    right: 10%;
    border: 24px solid transparent;
    content: '';
    display: block;
    position: absolute;
    border-bottom-color: var(--theme-clr-1);
}
.folder {
    width: 23%;
    margin: 30px 1% 20px;
    border-radius: 0 14px 14px;
    /* border: 2px solid; */
    position:relative;
    background: var(--clr-4);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgb(0 0 0 / 8%);
    transition: all .5s ease;
}

.records-list-container {
    position: relative;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding-top: 30px;
    border-top: 1px solid var(--clr-2);
}

#file-container {
    position: relative;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.cmp-outer {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 10px 20px;
    min-height: 150px;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
}



.cm-hover {
    position: absolute;
    z-index: 5;
    background: rgb(255 255 255 / 95%);
    width: 100%;
    height: 100%;
    top: -100%;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    transition: all .3s ease;
    border-radius: 0 12px 12px;
    flex-direction: column;
    padding: 1.5rem 0;
}


.cmp-id {
    position: absolute;
    top: -21px;
    color: var(--clr-2);
    font-size: 12px;
    left: 1.2rem;
}

.cat-cmp {
    font-size: 13px;
    color: var(--clr-primary-text);
    margin-bottom: 5px;
}

.cmp-outer h2 {
    font-size: 17px;
    color: var(--clr-primary-text);
}
.cmp-outer:hover .cm-hover {
    top: 0;
}

#pagination-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
}

.cmp-btn {
    display: flex;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all .5s ease;
    position: relative;
}

.cmp-btn .solo-icon {
    width: 15px;
    margin-right: 10px;
}

.cmp-btn:hover {
    color: var(--theme-clr-1);
}

.cmp-btn:before {
    content: '';
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background: var(--theme-clr-1);
    position: absolute;
    transition: all .5s ease;
}

.cmp-btn:hover:before {
    width: 100%;
}

.pca-icon:hover {
    background: var(--theme-clr-1);
    color: #fff;
}

.content-area {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    width: 50%;
    color: #fff;
}

.welcome-section {
    width: 100%;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    background: url(../images/svg/mbg.svg);
    padding: 3rem;
    border-radius: 2rem;
    background-position: center;
    background-size: cover;
}

h1.welcome-msg {
    font-weight: 200;
}

.sec-thum-area {
    position: relative;
    width: 30%;
}

img.sec-thumb {
    mix-blend-mode: initial;
}

.eye-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.eye-name {
    position: relative;
    display: flex;
    width: 15%;
}

.eye-row-chunk {
    display: flex;
    width: 85%;
    flex-wrap: wrap;
}

.eye-row {
    position: relative;
    width: 100%;
    display: flex;
    padding: 15px 0;
}

.eye-option-sec {
    position: relative;
    width: 85%;
    display: flex;
}

.eye-row .pop-i-c-title {
    width: 15%;
}
.eye-container.m-row{
    border-bottom: 1px solid var(--clr-4);
}

.quarter-container.dip-1 {
    padding-left: 0 !important;
    margin-top: 10px;
}

.folder.company::before {
    background: #038aff;
}

.folder.company::after {
    border-bottom-color: #038aff;
}

.folder.po::before {
    background: #00b5cc;
}

.folder.po::after {
    border-bottom-color: #00b5cc;
}

.folder:hover {
    box-shadow: -2px 20px 20px 4px rgba(0, 0, 0, 0.19), 0 6px 6px rgb(0 0 0 / 8%);
}

.report-btn-cont {
    position: absolute;
    top: 10px;
    right: 10px;
}

div#popbottom-slider {}

.result-content {
    position: relative;
    display: flex;
    padding: 20px;
    background: var(--clr-4);
    margin-bottom: 2rem;
    border-radius: 20px;
    align-items: center;
    width: 100%;
}

.result-content .pop-i-c-title {
    width: 50%;
}

.result-content .radio-container {
    width: 25%;
}

.mt-ind {
    margin-bottom: 1.5rem;
}

.medical::before {
    background: #af4154;
}

.medical::after {
    border-bottom-color: #af4154;
}

.no-text {
    position: relative;
    margin-bottom: 1rem;
    display: flex;
    padding: 15px;
    background: #eaefff;
    color: var(--theme-clr-1);
    border-radius: 20px;
    border: 2px solid;
    font-size: 13px;
    text-align: center;
}

.no-text.warning {
    color: #af4154;
    background: #f1e5e7;
}

.main-text-2 {
    text-transform: uppercase;
    font-size: 40px;
    font-weight: 800;
}

.otp-container {
    text-align: center;
}
.otp-inputs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}
.otp-input {
    width: 3rem;
    height: 3rem;
    margin: 0.5rem;
    font-size: 2rem;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    color: hsl(218, 4%, 30%);
}
.otp-input:focus {
    border-color: #007BFF;
    outline: none;
}
.btn-prime:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    border-color: #ccc;
}

.hb-area {
    position: fixed;
    margin-top: 10px;
    z-index: 400;
    left: 1rem;
    /* transform: translateY(-200px); */
    transition: all 0.8s ease;
    top: 0px;
    display: none;
}
.upper-header {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

img.c-logo {
    position: relative;
    width: 180px;
}
.pb-close {
    position: fixed;
    top: 2rem;
    right: 2rem;
    cursor: pointer;
    display: none;
}

.pb-close svg {
    width: 2rem;
    height: 2rem;
}

.confirmation-cont {
    position: relative;
    display: flex;
    width: 100%;
    margin-bottom: 3rem;
}

.pb-inner-sec {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.bolder {
    font-weight: 800;
}

.pb-footer-x {
    position: relative;
    display: flex;
    width: 100%;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
}

.pb-bottom-m{
    position: relative;
    width: 70%;
    padding-bottom: 5rem;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
}

.signature {
    position: relative;
    width: 100px;
}

.pb-chunk {
    position: relative;
    display: flex;
    flex-direction: column;
}

.upper-header .pb-title {
    text-align: center;
    font-size: 2rem;
    color: var(--clr-primary-text);
    margin-bottom: 0rem;
    text-transform: uppercase;
}
.pop-d-content {
    color: var(--clr-3);
}

.view-record-x .popup-info-chunk {
    margin-bottom: 1rem;
}

.view-record-x .pop-i-c-title {
    font-size: 13px;
    font-weight: 700;
}

.view-record-x .eye-name {
    width: 30%;
}

.view-record-x .eye-row-chunk {
    width: 70%;
}

.view-record-x .eye-row .pop-i-c-title {
    width: 30%;
}

.view-record-x .radio-row {
    padding: 10px 0;
    width: 50%;
}

.view-record-x .report-btn {
    display: none;
}

.view-record-x .new-report {
    display: none;
}

#downloadPDF {
    display: none;
}
.mag-data {
    position: relative;
    font-size: 13px;
    color: var(--clr-3);
}

span.sub {
    font-size: 10px;
}

.active .pb-close {
    display: flex;
}

.inv-header {
    position: relative;
    width: 100%;
    display: flex;
    margin-bottom: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
}
.checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    user-select: none;
}

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

/* Create a custom checkbox */
.checkbox-container .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    /* background-color: #eee; */
    border-radius: 4px;
}

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

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .checkmark {
    background-color: var(--theme-clr-1);
}

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

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

/* Style the checkmark/indicator */
.checkbox-container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.header-btn {
    margin-top: 0.5rem;
    margin-right: 1rem;
}

div#inv-container {
    position: relative;
    width: 80%;
    display: flex;
    flex-wrap: wrap;
}

.ps-container {
    position: fixed;
    overflow-y: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .75);
    z-index: 280;
    display: none;
}

.box-report {
    position: relative;
    display: flex;
    width: 100%;
    align-items: center;
    margin-top: 2rem;
    padding: 2rem;
    border: 2px dotted var(--clr-primary-text);
    border-radius: 5px;
}

.box-report .quarter-container {
    padding-left: 10px;
    padding-right: 10px;
}

.box-report .input-text {
    min-width: auto;
}

.box-report .popup-info-chunk {
    margin-bottom: 1rem;
}

.tbl-outer.tbl-of {overflow-x: scroll;padding-bottom: 2rem;}

.tbl-of .tc-table th {
    white-space: nowrap;
    text-align: center;
}

.ws-nw {
    white-space: nowrap;
}

.long-container {
    position: relative;
    display: flex;
    margin: 2rem 0;
    width: 100%;
}

.flex-right {
    justify-content: flex-end;
}