﻿
/******************************************************************************
 taysir list
*******************************************************************************/
.taysir-list .list-row > div {
    height: 35px;
    border-right: 1px solid #CDCDCD;
    padding: 7px 10px;
    color: #666;
}

    .taysir-list .list-row > div:first-of-type {
        border-left: 1px solid gray;
        padding-top: 4px;
    }

.tile-list-check {
    border: 1px solid #D3D3D3;
    margin-bottom: 9px;
    min-height: 47px;
    padding: 5px 0px;
    background-color: #EFEFEF;
    width: calc(100% - 1px);
}

imagePayment {
    content: url('img/paymenticon.png');
}

​
/****************************************************************

 ***************************************************************/
.table-color-red {
    background-color: aqua;
}

/*******************************************************************
    tooltip
*****************************************************************/
.custumtooltip {
    position: relative;
    display: inline-block;
}

    .custumtooltip .custumtooltiptext {
        visibility: hidden;
        width: auto;
        background-color: #555;
        color: #fff;
        text-align: center;
        border-radius: 6px;
        padding: 5px 8px;
        position: absolute;
        z-index: 101;
        bottom: 125%;
        left: 50%;
        margin-left: -60px;
        opacity: 0;
        transition: opacity 1s;
    }

        .custumtooltip .custumtooltiptext::after {
            content: "";
            position: absolute;
            top: 100%;
            left: 50%;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: #555 transparent transparent transparent;
        }

    .custumtooltip:hover .custumtooltiptext {
        visibility: visible;
        opacity: 1;
    }

.truncproduct {
    overflow: hidden;
    text-overflow: ellipsis;
    width: 250px;
    white-space: nowrap;
}

.TruncRib {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.truncAdressAgence {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/***************************************************************
table initial Setting
*****************************************************************/
.responstable {
    margin: 1em 0;
    width: 100%;
    overflow: hidden;
    background: #FFF;
    color: #024457;
    border-radius: 10px;
    border: 1px solid goldenrod;
}

    .responstable tr {
        border: 1px solid #D9E4E6;
    }

        .responstable tr:nth-child(odd) {
            background-color: #f2f1ea;
        }

    .responstable th {
        display: none;
        border: 1px solid #FFF;
        background-color: goldenrod;
        color: #FFF;
        padding: 1em;
    }

        .responstable th:first-child {
            display: table-cell;
            text-align: center;
        }

        .responstable th:nth-child(2) {
            display: table-cell;
        }

            .responstable th:nth-child(2) span {
                display: none;
            }

            .responstable th:nth-child(2):after {
                content: attr(data-th);
            }

            .responstable th:nth-child(2):after {
                display: none;
            }

}

.responstable td {
    display: block;
    word-wrap: break-word;
    max-width: 7em;
}

    .responstable td:first-child {
        display: table-cell;
        text-align: center;
        border-right: 1px solid #D9E4E6;
    }

.responstable td {
    border: 1px solid #D9E4E6;
}

.responstable th, .responstable td {
    text-align: left;
    margin: .5em 1em;
}

.responstable th, .responstable td {
    display: table-cell;
    padding: 1em;
}

h1 {
    font-family: Verdana;
    font-weight: normal;
    color: #024457;
}

    h1 span {
        color: goldenrod;
    }
/***********************************************************************
table sorter    
*************************************************************************/
/* pager wrapper, div */
.tablesorter-pager {
    padding: 5px;
}
/* pager wrapper, in thead/tfoot */
td.tablesorter-pager {
    background-color: #e6eeee;
    margin: 0; /* needed for bootstrap .pager gets a 18px bottom margin */
}
/* pager navigation arrows */
.tablesorter-pager img {
    vertical-align: middle;
    margin-right: 2px;
    cursor: pointer;
}

/* pager output text */
.tablesorter-pager .pagedisplay {
    padding: 0 5px 0 5px;
    width: 50px;
    text-align: center;
}

/* pager element reset (needed for bootstrap) */
.tablesorter-pager select {
    margin: 0;
    padding: 0;
}

/*** css used when "updateArrows" option is true ***/
/* the pager itself gets a disabled class when the number of rows is less than the size */
.tablesorter-pager.disabled {
    display: none;
}
/* hide or fade out pager arrows when the first or last row is visible */
.tablesorter-pager .disabled {
    /* visibility: hidden */
    opacity: 0.5;
    filter: alpha(opacity=50);
    cursor: default;
}
/*****************************************************************************
 Button Export
******************************************************************************/
.button {
    display: inline-block;
    border-radius: 4px;
    background-color: #f4bd2f;
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 15px;
    padding: 7px;
    width: 200px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;
}

    .button span {
        cursor: pointer;
        display: inline-block;
        position: relative;
        transition: 0.5s;
    }

        .button span:after {
            content: '\00bb';
            position: absolute;
            opacity: 0;
            top: 0;
            right: -20px;
            transition: 0.5s;
        }

    .button:hover span {
        padding-right: 25px;
    }

        .button:hover span:after {
            opacity: 1;
            right: 0;
        }
/******************************************************************************
 Tags 
*******************************************************************************/

[data-status="Refund"] {
    color: #fff !important;
    background-color: indianred !important;
}

[data-status="Paid"] {
    color: #fff !important;
    background-color: yellowgreen !important;
}

[data-status="NotPaid"] {
    color: #fff !important;
    background-color: red !important;
    /*padding-left:30px;*/
}

[data-status="PartialPaid"] {
    color: #fff !important;
    background-color: orange !important;
}

[data-status="Pending paid"] {
    color: #fff !important;
    background-color: darkviolet !important;
}
/******************************************************************************
 taysir list
*******************************************************************************/
.taysir-list .list-row > div {
    height: 35px;
    border-right: 1px solid #CDCDCD;
    padding: 7px 10px;
    color: #666;
}

.truncateProductName {
    max-width: 580px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.truncateCurrency {
    max-width: 207px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.truncateNameAgence {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.taysir-list .list-row > div:first-of-type {
    border-left: 1px solid gray;
    padding-top: 4px;
}

.taysir-list .list-row > div:last-of-type {
    border-right: 1px solid gray;
}

.taysir-list .list-row-header {
    height: 35px;
    border-top: 1px solid #808080;
    text-transform: uppercase;
    background-color: #E1E1E1;
    color: #333;
}

.taysir-list .dark-row {
    background-color: #EAEAEA;
}

.taysir-list .list-row:last-child div {
    border-bottom: 1px solid #808080;
}
/************************************************************************
    RdlcImage
****************************************************************************/
.img-size {
    width: 50%;
    height: 50px;
}

div.img {
    margin: 5px;
    border: 1px solid #ccc;
    float: left;
    width: 180px;
    height: 250px;
}

    div.img:hover {
        border: 1px solid #777;
    }

    div.img img {
        width: 100%;
        height: 100%;
    }

div.desc {
    padding: 15px;
    text-align: center;
}

/******************************************************************************
 selectize
*******************************************************************************/

.selectize-input,
.selectize-input.focus,
.selectize-dropdown,
.selectize-dropdown.form-control {
    border-radius: 0px;
    -webkit-border-radius: 0px;
    box-shadow: none;
    color: #555;
}

    .selectize-dropdown,
    .selectize-dropdown.form-control {
        border: 1px solid #66afe9;
        margin-top: 0px;
    }

.selectize-input {
    border-radius: 0px;
    border: 1px solid #C6C6C6;
    min-height: 26px;
    padding: 1px 8px 0px 8px;
}

    .selectize-input.focus {
        border-color: #66afe9;
    }

.selectize-dropdown-content {
    padding: 0px;
}

.selectize-dropdown .active {
    background-color: #1e90ff;
    color: #ffffff;
}

.selectize-control.single .selectize-input:after {
    right: 10px;
}

/******************************************************************************
 autocomplete
*******************************************************************************/
.buttonAddBalance {
    margin-top: -20px;
}

.ui-autocomplete {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    float: left;
    display: none;
    min-width: 160px;
    padding: 4px 0;
    margin: 0 0 10px 25px;
    list-style: none;
    background-color: #ffffff;
    border-color: #ccc;
    border-color: rgba(0, 0, 0, 0.2);
    border-style: solid;
    border-width: 1px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    *border-right-width: 2px;
    *border-bottom-width: 2px;
}

.ui-autocomplete {
    height: 200px;
    overflow-y: scroll;
    overflow-x: hidden;
}

.ui-menu-item > a.ui-corner-all {
    display: block;
    padding: 3px 15px;
    clear: both;
    font-weight: normal;
    line-height: 18px;
    color: #555555;
    white-space: nowrap;
    text-decoration: none;
}

.ui-state-hover, .ui-state-active {
    color: #ffffff;
    text-decoration: none;
    background-color: #0088cc;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    background-image: none;
}


/******************************************************************************
 block edit
*******************************************************************************/

#blockEdit {
    background-color: #fff;
    padding: 10px;
    border: 1px solid #888888;
    margin-top: 3px;
    padding: 40px;
}

.selected-pricing {
    background-color: lightblue !important;
}
/*****************************************************************************
truncate message and device
******************************************************************************/
.truncateMessage {
    width: 190px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.truncateDevice {
    width: 100px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.truncateDeviceMobileUser {
    width: 421px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notif-scroll {
    height: auto;
    max-height: 300px;
    width: 350px;
    overflow-y: scroll !important;
}

.show-notifications.active ~ .notifications {
    z-index: 100;
}

.ty-navs-tabs {
    display: none;
}

    .ty-navs-tabs li {
    }

        .ty-navs-tabs li a {
        }

            .ty-navs-tabs li a:hover {
            }

    .ty-navs-tabs .active a {
    }

#menu-view {
    padding-left: 0px;
    padding-right: 0px;
    margin-bottom: 0px;
}

    #menu-view a {
        color: #fff;
        text-decoration: none;
    }

    #menu-view > li,
    #menu-view > li li {
        position: relative;
        display: inline-block;
        width: 140px;
        padding: 6px 15px;
        background-color: #f4bd2f;
        border-radius: 20px;
    }

        #menu-view > li li {
            background: transparent none;
        }


    #menu-view ul {
        position: absolute;
        top: 2em;
        left: 0;
        max-height: 0em;
        margin: 0;
        padding: 0;
        background-color: #ddd;
        background-image: linear-gradient(#fff,#f4bd2f);
        overflow: hidden;
        transition: 1s max-height 0.3s;
        border-radius: 0 0 8px 8px;
    }

    #menu-view > li:hover ul {
        max-height: 13em;
    }

    #menu-view .btn-save {
        float: right !important;
    }
/******************************************************************************
 taysir tabs 
*******************************************************************************/
.ty-tabs-info {
}

    .ty-tabs-info .actions {
        border: 1px solid #c1c2c2;
        padding: 5px;
        min-height: 45px;
    }

    .ty-tabs-info .rooms-avalibility {
        padding: 15px 0px;
    }

    .ty-tabs-info .total {
        color: #800000 !important;
        font-weight: bold;
        text-transform: uppercase;
    }


    .ty-tabs-info .option-date-mail {
        text-align: center;
    }

        .ty-tabs-info .option-date-mail a {
            margin-top: 17px;
        }

    .ty-tabs-info .day {
        margin-top: 23px;
    }

.bold-label {
    font-weight: bold;
}

.row-bb-1 {
    padding: 12px 0px;
    border-bottom: 1px solid #C1C2C2;
}

.col-xs-1-5 {
    width: 12.5%;
    float: left;
    padding: 0px 15px;
}

.col-xs-2-5 {
    width: 20.8333333333333333%;
    float: left;
    padding: 0px 15px;
}

.col-xs-0-5 {
    width: 4.166666666666667%;
    float: left;
    padding: 0px 15px;
}

.green-button-plus {
    color: green;
}
/******************************************************************************
 Pagination
*******************************************************************************/
/*.pager-list{
    margin-top: 96px;
    margin-bottom: 55px;*/
/*border: 1px solid #f1f1f1;
    height: 54px;
}

.pager-list ul{
        margin-top: 14px;
}

.pager-list li{
    display:inline-block;
    margin-right:10px;  
}

.pager-list a{
     text-decoration:none;
     color:#fff;
     padding: 5px 10px;
     background-color: #f4bd2f;
    border-radius: 3px;
}

.pager-list .active,
.pager-list a:hover{
     background-color: #f6a61b;
}

    .pager-list select {
        margin-top: 12px;
        margin-top: 12px;
        border: 0;
        border-radius: 100px;
        background-color: #f2f3f8;
        height: 30px;
        width: 50px;
        padding-left: 5px;
    }*/
/******************************************************************************
  Fancybox
*******************************************************************************/
.fancybox-margin .fixed-header .header,
.fancybox-margin .fixed-header #top-box {
    left: -7.5px;
}

.fancybox-close {
    cursor: pointer;
    border-radius: 23px;
    background-color: #F8F8F8;
    color: #555;
    width: 30px;
    text-align: center;
    padding-bottom: 5px;
    border: 1px solid #CCC;
    height: 30px;
    line-height: 26px;
    display: inline-block;
}

    .fancybox-close:hover {
        color: #7f7f7f;
        text-decoration: none;
        -webkit-transition: color .2s linear;
        transition: color .2s linear;
    }

.fancybox-nav span svg {
    vertical-align: middle;
}

.fancybox-nav span {
    background: rgba(0,0,0,0.6);
    border: 0 none;
    color: rgb(255, 255, 255);
    display: block;
    float: right;
    height: 68px;
    width: 68px;
    line-height: 65px;
    margin: -20px 0 0 0;
    text-align: center;
    text-decoration: none;
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
}

    .fancybox-nav span:hover {
        background: rgba(0,0,0,0.6);
        color: rgb(255, 255, 255);
        text-decoration: none;
        -webkit-transition: all .2s linear;
        transition: all .2s linear;
    }

/*****************************************************************************
    pagination
******************************************************************************/
/******************************************************************************
 Pagination
*******************************************************************************/
.pager-list {
    /*margin-top: 996px;*/
    margin-bottom: 25px;
    /*border: 1px solid #f1f1f1;*/
    height: 54px;
}

    .pager-list ul {
        margin-top: 14px;
        -webkit-padding-start: 0;
    }

    .pager-list li {
        display: inline-block;
    }

    .pager-list a {
        text-decoration: none;
        color: rgba(53, 64, 82, 0.5);
        padding: 8px 10px;
        background-color: #fff;
        /*border-radius: 3px;*/
        /*opacity: 0.5;*/
        font-family: SourceSansPro;
        border-bottom: solid 1px #cdcdcd;
        border-top: solid 1px #cdcdcd;
    }

        .pager-list .active,
        .pager-list a:hover {
            color: #354052;
            font-weight: 600;
            text-decoration: none;
        }

    .pager-list select {
        margin-top: 12px;
    }

.div-pagination {
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    display: block;
    float: right;
}

.pad-r0 {
    padding-right: 0;
}

.gray-color {
    /*color:#7f8fa4;*/
    color: rgba(53, 64, 82, 0.5);
}

.selectdiv {
    position: relative;
    width: 23%;
}

    .selectdiv:after {
        content: '\f078';
        font: normal normal normal 10px/1 FontAwesome;
        right: 10px;
        bottom: 11px;
        height: 34px;
        padding: 15px 0px 0px 8px;
        position: absolute;
        pointer-events: none;
        font-weight: normal;
        color: #a8aab7;
    }
    /********************************/
:root input[type="checkbox"].checkbox-slide + div {
    display: inline-block;
    vertical-align: middle;
    width: 2.5em;
    height: 1em;
    border: 1px solid rgba(0,0,0,.3);
    border-radius: 999px;
    margin: 0 .5em;
    background: white;
    background-size: 200% 100%;
    background-position: 100% 0;
    background-origin: border-box;
    background-clip: border-box;
    overflow: hidden;
    transition-duration: .4s;
    transition-property: padding, width, background-position, text-indent;
    font-size: 180%; /* change this and see how they adjust! */

    text-align: left;
}

:root input[type="checkbox"].checkbox-slide:checked + div {
    padding-left: 1.5em;
    background-position: 0 0;
}

:root input[type="checkbox"].checkbox-slide:checked + div {
    border: 2px solid #14A372;
}

:root input[type="checkbox"].checkbox-slide + div {
    border: 2px solid #DE0F46;
}

    :root input[type="checkbox"].checkbox-slide + div:before {
        content: 'ON';
        float: left;
        width: 1.30em;
        height: 1.30em;
        margin: 0.2em;
        border: 1px solid rgba(0,0,0,.35);
        border-radius: inherit;
        background: #DE0F46;
        color: #14A372;
        text-indent: -2.5em;
    }

:root input[type="checkbox"].checkbox-slide:checked + div:before {
    background: #14A372;
}

:root input[type="checkbox"].checkbox-slide:active + div:before {
    background-color: #eee;
}

:root input[type="checkbox"].checkbox-slide + div:before,
:root input[type="checkbox"].checkbox-slide + div:after {
    font: bold 50%/1.2 SegoeUI;
    text-transform: uppercase;
}

:root input[type="checkbox"].checkbox-slide + div:after {
    content: 'OFF';
    float: left;
    text-indent: .5em;
    color: #DE0F46;
    text-shadow: none;
    margin-top: 0.3em;
}

.checkbox-slide-spinner {
    width: 15%;
    display: none;
}
