﻿/* Styles for validation helpers
-----------------------------------------------------------*/
.field-validation-error {
    color: #f00;
}

.field-validation-valid {
    display: none;
}

.input-validation-error {
    border: 1px solid #f00;
    background-color: #fee;
}

.validation-summary-errors {
    font-weight: bold;
    color: #f00;
}

.validation-summary-valid {
    display: none;
}

button:active, button:visited, button:focus {
    outline: 0 !important;
}

/*--added SG------------------------------------------------------------*/
/*.datepicker {
    font-size: 11px;
}

.datepicker-days thead tr [data-action] {
    border-bottom: 1px solid #337ab7;
}

.bootstrap-datetimepicker-widget table td.active, .bootstrap-datetimepicker-widget table td.active:hover,
.bootstrap-datetimepicker-widget table td span.active {
    background-color: #337ab7;
    color: #ffffff;
}

.datepicker .table-condensed > tbody > tr > td,
.datepicker .table-condensed > tbody > tr > th,
.datepicker .table-condensed > tfoot > tr > td,
.datepicker .table-condensed > tfoot > tr > th,
.datepicker .table-condensed > thead > tr > td,
.datepicker .table-condensed > thead > tr > th {
    padding: 1px;
}

.datepicker .table-condensed > tbody > tr > td {
    font-weight: 600;
}*/

/*datetimepicker*/

.panel-color {
    background-color: white;
    padding: 10px 0 10px 8px;
    margin-bottom: -8px;
    border-radius: 5px;
}

    .panel-color i {
        font-size: 16px;
        vertical-align: middle;
        margin: 5px;
    }

.pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover {
    background-color: #eeeeee !important;
    color: black !important;
    box-shadow: none !important;
}

.tr-Blocked {
    background-color: darkgray;
}

span.required {
    color: red;
}

.row.ticket-headings span {
    color: #fff;
    background-color: darkgray;
    padding: 1px 10px;
}

.row.ticket-headings .form-group {
    
}

/*Loader*/
.loading-container {
    z-index: 2000;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: #2dc3e8;*/
    background: #d60d453d;
    opacity: 0.7;
    text-align: center;
}

.lds-roller {
    margin: 40vh auto;
    position: relative;
    left: -12px;
    display: inline-block;
    width: 64px;
    height: 64px;
}

    .lds-roller div {
        animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
        transform-origin: 32px 32px;
    }

        .lds-roller div:after {
            content: " ";
            display: block;
            position: absolute;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #fff;
            margin: -3px 0 0 -3px;
        }

        .lds-roller div:nth-child(1) {
            animation-delay: -0.036s;
        }

            .lds-roller div:nth-child(1):after {
                top: 50px;
                left: 50px;
            }

        .lds-roller div:nth-child(2) {
            animation-delay: -0.072s;
        }

            .lds-roller div:nth-child(2):after {
                top: 54px;
                left: 45px;
            }

        .lds-roller div:nth-child(3) {
            animation-delay: -0.108s;
        }

            .lds-roller div:nth-child(3):after {
                top: 57px;
                left: 39px;
            }

        .lds-roller div:nth-child(4) {
            animation-delay: -0.144s;
        }

            .lds-roller div:nth-child(4):after {
                top: 58px;
                left: 32px;
            }

        .lds-roller div:nth-child(5) {
            animation-delay: -0.18s;
        }

            .lds-roller div:nth-child(5):after {
                top: 57px;
                left: 25px;
            }

        .lds-roller div:nth-child(6) {
            animation-delay: -0.216s;
        }

            .lds-roller div:nth-child(6):after {
                top: 54px;
                left: 19px;
            }

        .lds-roller div:nth-child(7) {
            animation-delay: -0.252s;
        }

            .lds-roller div:nth-child(7):after {
                top: 50px;
                left: 14px;
            }

        .lds-roller div:nth-child(8) {
            animation-delay: -0.288s;
        }

            .lds-roller div:nth-child(8):after {
                top: 45px;
                left: 10px;
            }

@keyframes lds-roller {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-container.loading-inactive {
    display: none;
}

/*hourglass*/
.lds-hourglass {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
    top: 300px;
}

    .lds-hourglass:after {
        content: " ";
        display: block;
        border-radius: 50%;
        width: 0;
        height: 0;
        margin: 6px;
        box-sizing: border-box;
        border: 26px solid #fff;
        border-color: #fff transparent #fff transparent;
        animation: lds-hourglass 1.2s infinite;
    }

@keyframes lds-hourglass {
    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);
    }
}

/*end hourglass*/
/*Loader2*/

.loader2-container {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    position: fixed;
    z-index: 100000;
    /*background: rgba(214,13,69,.2);*/
    background-color: #d60d4533 !important;
}

.loader2 {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #d60d4500;
    width: 120px;
    height: 120px;
    -webkit-animation: spin .5s linear infinite; /* Safari */
    animation: spin .5s linear infinite;
    top: 40%;
    left: 46%;
    position: absolute;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loader2-container.loader2-inactive {
    display: none;
}

/*End Loader*/

/*TransactionDetail*/
#dvTransactionPartialView .table > tbody > tr > th,
#dvCommentPartialView .table > thead > tr > th {
    background-color: #a9a9a94a;
}

#tableCardDetails .table > thead > tr > th {
    /*font-size: 10px;
    font-weight: 800;*/
}

.td_addcard {
}

    .td_addcard button {
        font-size: 6px;
        float: right;
    }

#dvPriceDetails {
}

#tableTravellers .table .table > thead > tr > th {
    background-color: lightgray;
}
/*TransactionDetail*/

/*TransactionIndex*/
.transaction-header {
    font-size: 10px;
    display: -webkit-box;
    padding-left: 4px;
}

.transaction-body {
}

.price-total-left {
    background-color: #a9a9a94a;
}

.price-total-right {
    text-align: center;
    background-color: #e6e6e6;
}


.grandTotall, .grandTotalr {
    font-size: 18px;
}

.content.divDashboard .inner .h2 {
    padding-top: 15px !important;
}


.transaction-header .panel-color span {
    font-size: 10px;
}

.headerp1 {
    width: 45%;
}

.headerp2 {
    width: 14%;
}

.headerp3 {
    width: 17%;
}

.headerp4 {
    width: 23%;
}

/*Chargeback*/
.dataTables_scrollBody {
    max-height: 49vh;
}
/*EndChargeBack*/


@media screen and (max-width: 1366px) {
    .transaction-header .panel-color span {
        font-size: 10px;
    }

    .table_font_12 tbody tr td,
    .table_font_12 tbody tr th,
    .table_font_12 thead tr th {
        font-size: 11px !important;
    }

    .table.detail_legends tr td {
        font-size: 12px;
        border-top: unset;
    }
}

.changeagent {
    text-align: center;
    background-color: #f7f173;
    font-size: 17px;
    padding: 10px;
}

.modal-header {
    /*background-color: #03A9F4;
    color: #fff;*/
    padding:10px !important;
}   

.textarea-has-error {
    border: 1px dashed red;
}

.wysihtml5-sandbox.has-error {
    border: 1px dashed red;
}

#modalChargeBackComments, #modalGenericComments {
    padding-right: unset !important;
}

    #modalGenericComments .modal-content,
    #modalChargeBackComments .modal-content {
        width: 80vw;
        margin-left: 10vw;
        margin-top: 5vh;
    }

    #modalGenericComments .modal-dialog,
    #modalChargeBackComments .modal-dialog {
        width: unset !important;
        margin: unset !important;
    }

    #modalGenericComments .modal-dialog,
    #modalChargeBackAttachments .modal-dialog {
        width: 40vw;
    }

    #modalGenericComments .document_heading,
    #modalChargeBackAttachments .document_heading {
        width: 15vw;
    }

    #modalGenericComments .checkbox.icheck-primary label:before,
    #modalChargeBackAttachments .checkbox.icheck-primary label:before {
        border: 1px solid #d60d45;
    }

    #modalGenericComments .document_images,
    #modalChargeBackAttachments .document_images {
        width: auto;
    }

        #modalGenericComments .document_images label,
        #modalChargeBackAttachments .document_images label {
            margin-right: 10px;
        }

.itemBox.td-actions a {
    margin-right: 5px;
}

.popup-adap {
    width: unset !important;
    margin: unset !important;
    width: 60vw !important;
    margin-left: 20vw !important;
    padding-top: 5vh;
}

    .popup-adap .fa.fa-times.error {
        font-size: 50vh;
        color: red;
        text-align: center;
    }

    .popup-adap.w33 {
        width: 33vw !important;
        margin-left: 33vw !important;
        padding-top: 20vh;
    }

#modalChargeBackEmailARCContent .divImgContainer {
    height: 50%;
    padding: 10px;
    border: 1px solid;
    background-color: lightgray;
    width: 20%;
}

#modalChargeBackEmailARCContent .divImgAttachment {
    width: 100%;
    height: 100%;
}

#card_emailAttachments .attachment-container {
    float: left;
    margin-top: 20px;
}

#card_emailAttachments .container {
    width: 10vw;
    background-color: lightgray;
    padding: 10px;
    margin: 5px;
    text-align: center;
}

    #card_emailAttachments .container .document {
        border-radius: unset;
        margin: unset !important;
        margin-right: unset !important;
        text-align: center;
        width: 100%;
        height: 85px;
    }

#card_emailAttachments img {
}

#card_emailAttachments .imgTitle {
}

#card_emailAttachments .text {
    opacity: 0;
    position: absolute;
    color: white;
    background-color: #d60d45;
    bottom: 50px;
    font-weight: 800;
    padding-left: 12px;
    padding-right: 12px;
    width: 10vw;
    margin: -10px;
    overflow: hidden;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}


#card_emailAttachments .container:hover {
    opacity: 0.8;
}

    #card_emailAttachments .container:hover .text {
        opacity: 1;
    }

#card_emailAttachments .icon-size {
    font-size: 6vw;
}

.row.more_filters.dn {
    display: none;
}

ul.typeahead.dropdown-menu > li.active > a > i {
    color: #fff !important;
}


/*TransactionIndex*/
/*--added SG------------------------------------------------------------*/

/*TransactionDetail*/

#transactionDetailPage .table-bordered > thead > tr > th,
#transactionDetailPage .table-bordered > tbody > tr > th,
#transactionDetailPage .table-bordered > tbody > tr > td {
    border: 1px solid darkgray !important;
}

table.table.ticket-sameforall > tbody > tr > td {
    border: 1px solid #1abc9c !important;
}

#transactionDetailPage .panel-default {
    border-color: darkgray;
}

.comment_user_name, .comment_user_type {
    padding: 2px;
    text-align: center;
    margin-bottom: 1px;
    border-radius: 25px;
}

.comment_user_name {
    width: 35%;
    background-color: #03a9f44d;
    margin-right: 1px;
}

.comment_user_type {
    width: 65%;
    background-color: #03a9f41a;
}

.comment_row {
    padding: 3px;
}

.scroll_content.admin_view .comment_row:hover {
    background-color: lightgray;
}

    .scroll_content.admin_view .comment_row:hover .comment_text {
        border: 1px solid red;
    }

    .scroll_content.admin_view .comment_row:hover .comment_action .fa-trash {
        color:red;
    }

.scroll_content.admin_view .comment_row.item_deleted {
    background-color: lightcoral;
    color: white;
}

    .scroll_content.admin_view .comment_row.item_deleted:hover .comment_text {
        border: 1px solid #d2d6de;
    }

.comment_time {
    margin-top: 6px;
    margin-left: 10px;
}

.comment_user {
    margin-top: 6px;
}

.comment_text {
    border-radius: 5px;
    position: relative;
    padding: 5px 10px;
    background: unset;
    border: 1px solid #d2d6de;
    color: #444444;
    width: 56%;
    margin-top: 2px;
}

    .comment_text p {
        margin: unset;
    }


.item_deleted .comment_text {
    color: white;
}

.select2.select2-container {
    display: inherit !important;
    width: 100% !important;
}

/*.select2.select2-container.select2-container--default.select2-container--below{
    width:100% !important;
}*/

.fg_txtbComment iframe p {
    font-size: 12px !important;
}


.timezone_display {
    background-color: #d60d45;
    color: #fff;
    padding: 5px;
    font-weight: 700;
}

.document_type {
    vertical-align: top;
    padding: 10px;
    font-weight: 800;
}

.hideElement {
    display: none;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}

.showElement {
    display: block;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}

.form_gray {
    padding: 10px;
    background-color: #d3d3d375;
}

.noimage {
    border: 1px dashed red !important;
}

.col-lg-12.document_body {
    display: inline-flex;
}

.document_body .checkbox {
    margin: unset !important;
}

.document_heading {
    width: 15vw;
}

.document_images {
    width: auto;
}

    .document_images img {
        width: 100px;
        height: 100px;
    }

.document {
    position: relative;
    margin-right: 5px;
    border-radius: 50%;
}

    .document:hover .docoverlay {
        display: block;
        /*cursor:pointer;*/
    }

.docoverlay {
    position: absolute;
    color: #f1f1f1;
    color: white;
    display: none;
    height: 100px;
    width: 95%;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,.5);
    padding-top: 40px;
    border-radius: 50%;
}

    .docoverlay ul {
        margin-left: unset;
    }

        .docoverlay ul li a i {
            background-color: #03a9f4;
            border-radius: 50%;
            color: #fff;
            font-size: 12px;
            width: 20px;
            height: 20px;
            text-align: center;
            line-height: 20px;
        }

.comment_image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

label.price_item {
    font-weight: unset;
}

#dv_chargeBackAttachments .document_images .document_heading {
    width: 50%;
    overflow: hidden;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

#dv_chargeBackAttachments .document_images .checkbox {
    width: 20%;
}

#dv_chargeBackAttachments .document_images {
    width: 100%;
    margin-bottom: 5px;
}

    #dv_chargeBackAttachments .document_images .col-lg-12 {
        margin-bottom: 5px;
    }



/*DocumentsDisplay*/
.col-lg-12.document_body_dtp {
    display: inline-flex;
    margin-bottom: 10px;
}

.document_images_dtp {
    width: auto;
    background-color: gray;
}

.document_heading_dtp {
    width: 15vw;
    padding: 5px;
    background-color: lightgray;
}

.document_dtp_image {
    position: relative;
    margin-right: 5px;
    border-radius: 50%;
}

.document_dtp {
    position: relative;
    border-radius: 50%;
    padding: 5px;
}

    .document_dtp img {
        width: 100px;
        height: 100px;
    }

.document_type_dtp {
    vertical-align: top;
    padding: 10px;
    font-weight: 800;
}



/*.document_dtp_image:hover .docoverlay_dtp {
    display: block;
}*/

.document_dtp:hover .docoverlay_dtp {
    display: block !important;
}

.docoverlay_dtp {
    position: absolute;
    color: #f1f1f1;
    color: white;
    display: none;
    height: 100px;
    width: 87%;
    top: 4%;
    background-color: rgba(0,0,0,.5);
    padding-top: 40px;
    border-radius: 50%;
}

    .docoverlay_dtp ul {
        margin-left: unset;
    }

        .docoverlay_dtp ul li a i {
            background-color: #03a9f4;
            border-radius: 50%;
            color: #fff;
            font-size: 12px;
            width: 20px;
            height: 20px;
            text-align: center;
            line-height: 20px;
        }

.document_dtp:hover .docoverlay_file {
    display: block !important;
}

.docoverlay_file {
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
    display: none;
}

    .docoverlay_file ul li a {
        cursor: pointer;
    }

        .docoverlay_file ul li a i {
            background-color: #03a9f4;
            border-radius: 50%;
            color: #fff;
            font-size: 12px;
            width: 20px;
            height: 20px;
            text-align: center;
            line-height: 20px;
            margin-top: 5px;
        }


.sidebar-item {
    border-right: 1px solid #eee;
    float: left;
    background-color: transparent;
    background-image: none;
    padding: 15px 15px;
    font-family: fontAwesome;
    color: white;
}

    .sidebar-item:focus {
        color: white;
    }

    .sidebar-item:hover {
        background: #ffffff;
        color: black;
    }


/*DocumentsDisplay Completes*/






/*EndTransactionDetial*/


/*Profile*/

.chart-responsive.profile img {
    width: 70%;
    border-radius: 50%;
}

.profile {
    height: 195px;
}

/*EndProfile*/


/*UserList*/
.table_font_12 tbody tr td,
.table_font_12 tbody tr th,
.table_font_12 thead tr th {
    font-size: 12px;
    /*font-family: 'Noto Serif KR', serif;*/
}

.table_font_13 tbody tr td,
.table_font_13 tbody tr th,
.table_font_13 thead tr th {
    font-size: 13px;
}

.table_font_14 tbody tr td,
.table_font_14 tbody tr th,
.table_font_14 thead tr th {
    font-size: 14px;
    /*font-family: 'Mr De Haviland', cursive;*/
    /*font-family: 'Noto Serif KR', serif;*/
}

/*TransactionIndex*/
#transactionindex .table > thead > tr > th {
    /*background-color: darkgray;*/
}

#transactionindex .table > thead {
    /*background-color: #a9a9a94a;*/
}

/*#transactionindex .table > tbody > tr.active:hover,
#transactionindex .table > tbody > tr.even:hover {
    background-color: red !important;
}*/


/*EndTransactionIndex*/

/*EndUserList*/






/*Theme*/
.skin-blue .main-header .navbar {
    background-color: #d60d45 !important;
}

.skin-blue .main-header .logo {
    background-color: #d60d45 !important;
}

.skin-blue .sidebar-menu > li:hover > a, .skin-blue .sidebar-menu > li.active > a {
    border-left-color: #d60d45;
}

.fa-circle-selected::before {
    color: #d60d45;
}

.user-panel {
    background-color: #d60d4530;
}

span.spn-theme {
    background-color: #d60d45;
}

    span.spn-theme a {
        color: #fff;
    }

.main-sidebar .sidebar ul li.header {
    background-color: #d60d451c;
    color: #000;
    text-align: center;
    font-weight: 800;
}

.box.box-primary {
    border-top: unset;
}

.box-header.search-filter {
    border-bottom: unset;
}


.btn-primary {
    background-color: #d60d45;
    border-color: #d60d45;
}

    .btn-primary:hover,
    .btn-primary:active,
    .btn-primary:focus {
        background-color: #d60d45;
    }

.linkColor-100:hover, .linkColor-100:visited, .linkColor-100:active, .linkColor-100:focus {
    color: #fff;
}

.linkColor-102:hover, .linkColor-102:visited, .linkColor-102:active, .linkColor-102:focus {
    color: #fff;
}
.linkColor-default {
    background-color: #d60d45;
    color: white;
    padding-left: 5px;
    padding-right: 5px;
}

    .linkColor-default:hover, .linkColor-default:visited, .linkColor-default:active, .linkColor-default:focus {
        color: #fff;
    }
.detail-website {
    padding-top: 13px;
    padding-bottom: 14px;
    font-weight: 600;
    margin-right: -10px;
}

.modal-dialog .modal-content .modal-header button.close {
    background-color: #d60d45;
    width: 35px;
    height: 35px;
    font-size: 35px;
    color: white;
    opacity: 1;
    border-radius: 50%;
}

.booking-confirmation {
    background-color: lightgray;
    border-radius: 5px;
}

.spanheading {
    text-align: center;
    display: inherit;
    font-size: 20px;
}

    .spanheading span {
        color: #d60d45;
    }

#dvARC table thead {
    background-color: darkgray;
    color: #000;
}

.payment_none {
    background-color: red;
    color: white;
}

.payment_notnone {
    background-color: green;
    color: white;
}

.payment_status_open {
    background-color: orange;
    color: white;
}

.payment_status_paid {
    background-color: green;
    color: white;
}

.payment_status_cancelled {
    background-color: red;
    color: white;
}



.delete-recording {
    padding: 10px;
    background-color: red;
    color: white;
    display: table-caption;
}

.recording audio {
    width: 95%;
}


::selection {
    background-color: #d60d45;
}

.logo-lg {
    font-family: cursive;
    font-size: 35px;
    -webkit-animation: logo-lg 1s ease-in-out infinite alternate;
    -moz-animation: logo-lg 1s ease-in-out infinite alternate;
    animation: logo-lg 1s ease-in-out infinite alternate;
}

/*@-webkit-keyframes logo-lg {
    from {
        text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #e60073, 0 0 40px #e60073, 0 0 50px #e60073, 0 0 60px #e60073, 0 0 70px #e60073;
    }

    to {
        text-shadow: 0 0 20px #fff, 0 0 30px #ff4da6, 0 0 40px #ff4da6, 0 0 50px #ff4da6, 0 0 60px #ff4da6, 0 0 70px #ff4da6, 0 0 80px #ff4da6;
    }
}*/


.header {
    font-family: 'Saira Stencil One';
    font-size: 19px !important;
    font-weight: unset !important;
    color: #d60d45 !important;
}

/*.header:nth-child(1) {
        background: cornflowerblue;
    }

    .header:nth-child(2) {
        background: salmon;
    }

    .header:nth-child(3) {
        background: gray;
    }

    .header:after {
        animation: shine 2s ease-in-out infinite;
        animation-fill-mode: forwards;
        content: "";
        position: absolute;
        top: -110%;
        left: -210%;
        width: 250%;
        height: 900%;
        opacity: 0;
        transform: rotate(30deg);
        background: rgba(255, 255, 255, 0.13);
        background: linear-gradient( to right,
        #d60d45 0%, rgba(255, 255, 255, 0.13) 77%, rgba(255, 255, 255, 0.5) 92%, rgba(255, 255, 255, 0.0) 100% );
    }

    .header:active:after {
        opacity: 0;
    }

@keyframes shine {
    10% {
        opacity: 1;
        top: -30%;
        left: -30%;
        transition-property: left, top, opacity;
        transition-duration: 0.7s, 0.7s, 0.15s;
        transition-timing-function: ease;
    }

    100% {
        opacity: 0;
        top: -30%;
        left: -30%;
        transition-property: left, top, opacity;
    }
}*/

.table.detail_legends {
    margin: unset;
    width: 68%;
    float: right;
}

.td-verticle {
    padding: inherit !important;
    padding-top: 8px !important;
}

    .td-verticle span {
        left: 0;
        writing-mode: vertical-lr;
        text-orientation: upright;
        letter-spacing: -4px;
        color: white;
        font-weight: 700;
        width: 50% !important;
        text-align: center;
        vertical-align: middle;
    }

/*.td-verticle span::-moz-placeholder {
    letter-spacing: unset !important;
}*/

#wordPad {
}

    #wordPad textarea {
        width: 100%;
        resize: none;
        font-size: 13px;
    }

/*.ui-dialog.ui-widget.ui-widget-content.ui-corner-all.ui-front.ui-draggable.ui-resizable {
    z-index: 1100;
    overflow: hidden;
    position: fixed !important;
    height: 225px !important;
}*/

.ui-dialog.ui-widget.ui-widget-content.ui-corner-all.ui-front.ui-draggable.ui-resizable {
    z-index: 1030;
    max-height: unset;
    min-height: unset;
    overflow: hidden;
}

.ui-dialog-titlebar-close {
    background: url('/cdn/content/images/close.png') no-repeat center center;
}

.ui-dialog-content.ui-widget-content {
    width: 100% !important;
    height: 100% !important;
    overflow: hidden;
}

.masked {
    font-size: inherit;
    padding: unset;
    margin: unset;
    text-align: left;
    letter-spacing: unset;
    width: 100%;
}

.thheading {
    padding: 0 !important;
    vertical-align: middle;
}

    .thheading .thheading_parent {
        display: inline-flex;
        width: 100%;
        padding: 8px;
    }

    .thheading .thheading_1 {
        width: 80%;
    }

    .thheading .thheading_2 {
        width: 20%;
        float: right;
        text-align: center;
    }

.thheading_2 span:hover,
.table-responsive span.top-span:hover,
.tddata span:hover {
    cursor: pointer;
}

.event_parent {
    display: flex;
    width: 100%;
    background-color: lightgray;
    padding: 5px;
    text-align: left;
}

    .event_parent div {
        padding-left: 5px;
    }

    .event_parent .event_heading {
        font-weight: 600;
        background-color: #d60d4571;
        width: 20%;
        color: white;
    }

    .event_parent .event_data {
        width: 80%;
        background-color: #a9a9a95c;
    }

.swal80 {
    width: 60% !important;
}

.edit_paidfor_view {
    padding: 5px;
    background-color: #d60d45;
    color: white;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}

.already_imported_pnr {
    padding: 5px;
    background-color: #d60d45;
    color: white;
    border-radius: 5px;
    font-weight: 600;
    margin-left: 5px;
}

    .already_imported_pnr:hover, .already_imported_pnr:active, .already_imported_pnr:focus {
        color: white;
    }

.udheader {
    display: inline-flex;
    width: 100%;
}

    .udheader div {
        width: 100%;
    }

    .udheader .udhmiddle {
        text-align: center;
        font-weight: 800;
        font-size: 18px;
    }


/*.wysihtml5-sandbox iframe html body p {
    font-size: 13px !important;
}*/

.form-control .textarea .wysihtml5-editor p {
    font-size: 10px !important;
}

.detail_page_logo {
    text-align: center;
    padding: 4px;
}

    .detail_page_logo img {
        width: 35%;
    }


#tableFraudMeta .container {
    width: 100% !important;
}

.t_info {
    padding: 0 5px 0 5px;
    background-color: #d60d45;
    border-radius: 50%;
    font-size: 10px;
    font-style: italic;
    color: white;
    float: right;
    font-weight: 100;
    font-family: cursive;
}

    .t_info :hover {
        color: white;
    }

.tblfs12 {
    font-size: 12px;
}

    .tblfs12 tr > td {
        font-size: 12px !important;
    }

.panel-group {
    margin-bottom: unset !important;
}

.spnEditPriceErrorMessage {
    float: left;
    color: red;
    margin-left: 100px;
    font-size: 14px;
}

#dvTransactionFraudMetaPartialView a:hover,
#dvTransactionFraudMetaPartialView a:active,
#dvTransactionFraudMetaPartialView a:focus {
    color: #000;
}


#tableEmailPanel .form-control,
#tableEmailPanel .label-wrapper {
    /*margin-top: 5px;*/
}

#tableEmailPanel .bootstrap-tagsinput {
    margin-top: 5px;
    width: 100%;
    margin-bottom: 10px;
}

#tableEmailPanel .tag.label.label-info {
    background-color: #d60d45 !important;
    font-size: 100%;
}

.ft_10 {
    font-size: 10px !important;
}

.ft_11 {
    font-size: 11px !important;
}


/*.table-responsive span.top-span:hover {
    cursor: pointer;
}

.tddata span:hover{
    cursor: pointer;
}*/



/*EndTheme*/


/*Mobile*/
/*@media only screen and (max-width:481px) and  (min-width:321px){*/
@media only screen and (max-width:481px) {
    .timezone_display {
        display: grid;
        padding: unset;
        background-color: unset;
        color: #d60d45;
    }

    .inner .font-bold {
        display: none;
    }

    .box-header .box-title {
        font-size: 11px;
    }

    .panel-color.pull-right {
        float: left !important;
    }

    #reportFilteres #dvButtons {
        text-align: center;
        padding: 10px;
    }

        #reportFilteres #dvButtons button:first-child {
            margin-bottom: 5px;
        }

    .loader2 {
        left: 35%;
    }

    #dvRefundPartialView .pull-right {
        text-align: right;
        margin-top: 5px;
    }

    span.pull-right button {
        font-size: 10px;
    }

    #collapseComment .box-footer {
        padding: 5px;
        font-size: 12px;
    }

    .box-footer button {
        font-size: 10px;
    }

    .table-responsive {
        overflow-x: auto;
    }

    .transaction-header {
        display: inline-block;
    }

    .headerp1, .headerp2, .headerp3, .headerp4 {
        display: inline;
    }

    ul li#ShowWordPad {
        display: none;
    }

    .comment_row {
        text-align: center;
        border: 1px solid #d2d6de;
    }

    .comment_time {
        margin: unset;
    }

    .comment_text {
        border: unset;
        width: 100%;
    }

    .detail_page_logo {
        margin-top: 10px;
    }

    .panelBottomMargin {
        margin-bottom: 10px;
    }

    .row#dvComments {
        margin: unset !important;
    }

    .pagination-sm > li > a, .pagination-sm > li > span {
        padding: 2px 5px;
        font-size: 8px;
    }

    .pagination.pagination-sm.no-margin.pull-right {
        margin: -6px 0 0 0 !important;
    }

    .content.divDashboard .inner .h2 {
        font-size: 16px;
        font-weight: 800;
    }

    .content.divDashboard .small-box-footer {
        font-size: 10px;
    }

    .main-footer {
        font-size: 10px;
    }

    .ticket_legends {
        font-size: 10px;
    }

        .ticket_legends .badge.flat {
            font-size: 10px;
        }

    /*Import*/
    .modal-dialog {
        width: auto !important;
    }

    .table thead tr th {
        font-size: 10px;
    }

    .table tbody tr td {
        font-size: 10px;
    }
    /*EndImport*/

    .popup-adap {
    }

        .popup-adap.w33 {
            margin: unset !important;
            width: 100vw !important;
        }

        .popup-adap .modal-content {
            margin: 1vw;
        }

    .navbar.navbar-static-top .logout {
        display: none;
    }
}

@media only screen and (min-width:482px) {
    /*.inner[data-original-title] {
        content: '';
    }*/
}

/*This should be at bottorm*/
/*@-moz-document url-prefix() {
    .td-verticle span {
        letter-spacing: unset !important;
    }
}*/

@media screen and (min--moz-device-pixel-ratio:0) {
    .td-verticle span {
        letter-spacing: unset !important;
    }
}

/*EndMobile*/


/*Custom Radio*/
.rcontainer {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default radio button */
    .rcontainer input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

/* Create a custom radio button */
.rcheckmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
    border: 1px solid #d60d45;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.rcontainer input:checked ~ .rcheckmark {
    background-color: #d60d45;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.rcheckmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.rcontainer input:checked ~ .rcheckmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.rcontainer .rcheckmark:after {
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

.custom-radio {
    display: inline-flex;
}

    .custom-radio label {
        margin-top: -20px;
    }

/*Custom Radio*/

.header-custom-search {
    width: 96%;
    float: left !important;
}

    .header-custom-search .form-control {
        height: 50px;
    }

    .header-custom-search .input-group-btn {
        padding: unset;
    }

        .header-custom-search .input-group-btn button {
            height: 50px;
        }

.fawhitelist {
}

.fagraylist {
    color: gray;
}

.fablacklist {
    color: black;
}

.fachargeback {
    color: red;
}

.facurrentlist {
    border: 3px solid #d60d45;
    pointer-events: none;
}

img.email-logo {
    max-width: 100%;
    border-style: none;
    min-height: 60px;
    background-color: #273142 !important;
    padding: 10px;
}

td.td-truncated-250 {
    white-space: nowrap;
    overflow: hidden;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    max-width: 250px;
}

td.tdsuccess {
    background-color: green !important;
    color: white;
}


div.ttitle {
    padding: 10px;
    background-color: lightgray;
    display: flex;
    text-align: right;
}

    div.ttitle span.ttype {
        padding: 10px;
        background-color: #d60d45;
        color: #fff;
        font-weight: 800;
    }

    div.ttitle span.tduration {
        font-weight: unset;
        background-color: unset;
        color: black;
        font-weight: 800;
    }


.modal-close {
    position: fixed;
    z-index: 1;
    right: 10px;
}

td.td-ref-action {
    padding: 0 0 0 10px;
}

    td.td-ref-action text {
        line-height: 2.3;
    }

    td.td-ref-action span {
        float: right;
        display: inline-flex;
        padding: 2px;
    }

/*Header Animation*/
.header-spinner {
    width: 20px;
    height: 20px;
    position: relative;
    margin: 0 15px 5px 15px
}

.double-bounce1, .double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
    0%, 100% {
        -webkit-transform: scale(0.0)
    }

    50% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes sk-bounce {
    0%, 100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }

    50% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}
/*Ends Header Animation*/

/*Typeahead*/
/*ul.typeahead.dropdown-menu > li.active > a > i {
    color: #fff !important;
}*/
/*end Typeahead*/
/*Margins*/
.mr10 {
    margin-right: 10px !important;
}

.mb10 {
    margin-bottom: 10px !important;
}

.mb5 {
    margin-bottom: 5px !important;
}

/*End Margins*/

.task-count {
    font-weight: 600;
    color: blue;
}

.form-group.has-error .bootstrap-tagsinput {
    border-color: #a94442 !important;
    box-shadow: none;
}

.form-group .bootstrap-tagsinput {
    line-height: 1.7 !important;
    box-shadow: none;
}

/*Task colors*/
.task-open {
    background-color: #9E9E9E;
}

.task-inprogress {
    background-color: #FFC107;
}

.task-closed {
    background-color: #33691E;
}

.task-pending {
    background-color: #F44336;
}
/*End Task Colors*/
/*Credit Status*/

.cs-approaching {
    color: #B8860B;
}

.cs-negotiating {
    color: #A9A9A9;
}

.cs-settled {
    color: #7FFF00;
}

.cs-refunded {
    color: #FF0000;
}

.cs-chargeback {
    color: #000;
}

.cs-futurecredit {
    color: blue;
}
/*End Credit Status*/

#transactionDetailPage .content {
    padding-top: unset;
}

#bookingTopFixedRow {
    background-color: antiquewhite;
    position: fixed;
    z-index: 100;
    text-align: center;
    padding:12px 10px;
}

    #bookingTopFixedRow .toprow {
        display: block ruby !important;
    }

        #bookingTopFixedRow .toprow .titem {
            margin: 0 2% 0 2%;
        }

            #bookingTopFixedRow .toprow .titem .theading {
                font-size: 13px;
            }

            #bookingTopFixedRow .toprow .titem .tcont {
                font-weight: 800;
                font-size: 15px;
            }


/*Chrome Specifig*/
@media all and (-webkit-min-device-pixel-ratio:0) and (min-resolution: .001dpcm) {
    #bookingTopFixedRow .toprow {
        display: flex;
    }

    @media only screen and (min-width: 1030px) and (max-width: 1366px) { 
        #bookingTopFixedRow .toprow .titem .tcont {
            font-weight: 800;
            font-size: 15px;
        }

        #bookingTopFixedRow .toprow .titem.badgeflag {
            margin-left: 6% !important;
        }
    }

    @media screen and (min-width: 1366px) {
        #bookingTopFixedRow .toprow .titem {
            margin: 0 2.5% 0 2.5% !important;
        }

            #bookingTopFixedRow .toprow .titem.badgeflag {
                margin-left: 4% !important;
            }
    } 
}

@media screen and (min-width: 1366px) {

}
/*Firefox Specifig*/
@-moz-document url-prefix() {
    @media only screen and (min-width: 1030px) and (max-width: 1366px) {
        #bookingTopFixedRow .toprow .titem.badgeflag {
            margin-left: 5% !important;
        }
    }

    @media screen and (min-width: 1366px) {
        #bookingTopFixedRow .toprow .titem.badgeflag {
            margin-left: 3% !important;
        }
    }

    .badgeflag {
        position: inherit !important;
    }
}


	
	#modalEmailAuthorize table{
		border-collapse: unset;
	}