/*Properties shared across entire site*/
/*
 *           ____  _____  _   _  _____  ____   ___  ____
 *         / ___|| ____|| \ | || ____||  _ \ |_ _|/ ___|
 *       | |  _ |  _|  |  \| ||  _|  | |_) | | || |
 *      | |_| || |___ | |\  || |___ |  _ <  | || |___
 *      \____||_____||_| \_||_____||_| \_\|___|\____|
 *
 */
@import url('https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&subset=devanagari,latin-ext');

.main-color-orange
{
    color : #f47617;
}

.main-color-blue
{
    color : #3498db;
}

.bg-gray
{
    background-color : #969798 !important;
}

a.bg-gray:hover, a.bg-gray:focus,
button.bg-gray:hover,
button.bg-gray:focus
{
    background-color : #6e7479 !important;
}

.border-gray
{
    border-color : #6e7479 !important;
}


.border-green
{
    border-color : green !important;
}

.border-radius-standard
{
    -webkit-border-radius : 5px;
    -moz-border-radius    : 5px;
    border-radius         : 5px;
}

.label
{
    padding               : 1px 4px;
    font-size             : 10px;
    font-weight           : 400;
    color                 : #fff;
    text-transform        : uppercase;
    white-space           : nowrap;
    -webkit-border-radius : 3px;
    -moz-border-radius    : 3px;
    border-radius         : 3px;
}

.bg-turcoaz
{
    background-color : #99aea0;
}

.bg-silver
{
    background-color : #f5f4f3;
}

.key-val-pair th, td
{
    font-weight    : normal;
    max-width      : 250px;
    text-align     : left;
    /*border:1px solid black;*/
    padding-right  : 8px;
    padding-left   : 8px;
    padding-bottom : 4px;
}

/* Increasse the size of default bootstrap container by 200px */
@media (min-width: 1300px) {
    .container {
        max-width: 1240px;
    }
}

/***** Horizontal line *****/
hr
{
    display    : block;
    height     : 1px;
    border     : 0;
    border-top : 1px solid #ccc;
    margin     : 5px;
    padding    : 0;
}

.height-2
{
    height: 2px;
}

.height-3
{
    height: 3px;
}

.w-49
{
    width: 49.5% !important;
}

.forms-border
{
    border: solid #e9eaea 2px;
    -webkit-border-radius : 5px;
    -moz-border-radius    : 5px;
    border-radius         : 5px;
}

/* Used to align forms on external section of the website.*/
.forms-external-section-small
{
    position: relative;
    padding: 20px;
    /*background-color: #f8f7f7;*/
    max-width: 300px;
    border: solid #e9eaea 2px;
    -webkit-border-radius : 5px;
    -moz-border-radius    : 5px;
    border-radius         : 5px;
}

.forms-external-section-containter
{
    position: relative;
    padding: 20px;
    /*background-color: #f8f7f7;*/
    max-width: 500px;
    border: solid #e9eaea 2px;
    -webkit-border-radius : 5px;
    -moz-border-radius    : 5px;
    border-radius         : 5px;
}

/* Used to align forms on external section of the website.*/
.forms-external-section-containter-double
{
    position: relative;
    padding: 20px;
    /*background-color: #f8f7f7;*/
    max-width: 710px;
    border: solid #e9eaea 2px;
    -webkit-border-radius : 5px;
    -moz-border-radius    : 5px;
    border-radius         : 5px;
}

/* Used to align forms on external section of the website.*/
.forms-external-section-containter-triple
{
    position: relative;
    padding: 20px;
    /*background-color: #f8f7f7;*/
    max-width: 1000px;
    border: solid #e9eaea 2px;
    -webkit-border-radius : 5px;
    -moz-border-radius    : 5px;
    border-radius         : 5px;
}

/* Used to align forms on external section of the website.*/
.forms-external-section-containter-quadruple
{
    position: relative;
    padding: 20px;
    /*background-color: #f8f7f7;*/
    max-width: 1500px;
    border: solid #e9eaea 2px;
    -webkit-border-radius : 5px;
    -moz-border-radius    : 5px;
    border-radius         : 5px;
}

/* Used to align forms on external section of the website.*/
.forms-external-section-containter-full
{
    position: relative;
    padding: 20px;
    /*background-color: #f8f7f7;*/
    max-width: 100%;
    border: solid #e9eaea 2px;
    -webkit-border-radius : 5px;
    -moz-border-radius    : 5px;
    border-radius         : 5px;
}

/* Reset fieldset border changed by normalizer*/
fieldset
{
    border: none;
    margin: 0;
    padding: 0;
}

/* Standard border 2px */
.std-border-2px
{
    border: solid #e9eaea 2px
}

/* Standard border 2px */
.std-border-1px
{
    border: solid #e9eaea 1px
}

/* Bold bullet Dot to indicate a status */
.dot-normal
{
    height: 15px;
    width: 15px;
    border-radius: 50%;
    display: inline-block;
}

/* Standard css transition */
.std-transition
{
    transition: 0.4s;
}

/* Change color of the box on mouse over */
.std-hover-box:hover
{
    background-color: #f7f8f8;
    box-shadow: 0 5px 15px rgba(26, 26, 26, 0.3);
}

/* Set text color to black */
.text-grey
{
    color: grey;
}

.text-grey-light
{
    color: #d1d1d1;
}

.text-disabled
{
    color: #d1d1d1;
}

.text-muted-extra
{
    color: #d1d1d1;
}

.text-danger-light
{
    color: #fbb1c0;
}

.text-success-light
{
    color: rgba(92, 166, 109, 0.7);
}

.color-danger
{
    color: #dc3545 !important;
}

.color-warning
{
    color: #ffc107 !important;
}

.color-success
{
    color: #28a745 !important;
}

.opacity-50
{
    opacity: 0.5;
}

.opacity-25
{
    opacity: 0.25;
}

.opacity-75
{
    opacity: 0.75;
}
.opacity-100
{
    opacity: 1;
}


.mw-50
{
    max-width: 50%;
}

.mw-75
{
    max-width: 75%;
}

.mw-99
{
    max-width: 99%;
}

.mw-700px
{
    max-width: 700px;
}

.mw-1000px
{
    max-width: 1000px;
}


.w-40px
{
    width: 40px;
}

.w-100px
{
    width: 100px;
}

.w-125px
{
    width: 125px;
}

.h-fixed-400px
{
    max-height: 400px;
    min-height: 400px;
}

@media(min-width: 1050px) { .w-lg-1000 {width: 1000px !important;} }
@media(min-width: 1050px) { .mw-lg-1000 {max-width: 1000px !important;} }

@media(min-width: 1600px) { .w-lg-1500 {width: 1600px !important;} }
@media(min-width: 1600px) { .mw-lg-1500 {max-width: 1600px !important;} }

/* Multiple options to wrap the text */
.text-nowrap { white-space : normal !important; }
.text-nowrap-all { white-space : nowrap !important; }
@media (min-width: 500px) { .text-nowrap { white-space : nowrap !important; } }
@media (min-width: 768px) { .text-nowrap-sm { white-space : nowrap !important; } }
@media (min-width: 992px) { .text-nowrap-md { white-space : nowrap !important; } }
@media (min-width: 1200px) { .text-nowrap-lg { white-space : nowrap !important; } }

/* pre-wrap white space property*/
.text-prewrap
{
    white-space: pre-wrap;
}

.text-break-multi-word-only
{
    white-space: pre-wrap;
    word-break: normal;
}

.text-break-all
{
    white-space: pre-wrap;
    word-break: break-all;
}
.text-nobreak
{
    white-space: nowrap;
    word-break: keep-all;
}


.input-readonly .input-readonly:disabled, .input-readonly[readonly]
{
    background-color: #e9ecef;
    opacity: 1;
}

#csrf-expiration-notice
{
    background     : rgba(255, 71, 71, 0.24);
    padding-bottom : 3px;
    text-align     : center;
}

.display-none
{
    display: none !important;
}

.font-consolas-std
{
    font-family: Consolas,serif;
}

.line-height-25px
{
    line-height: 25px;
}

.width-auto
{
    width: auto;
}

.height-auto
{
    height: auto;
}

.tag
{
    padding:               3px 4px 3px 4px;
    text-transform:        uppercase;
    white-space:           nowrap;
    -webkit-border-radius: 3px;
    -moz-border-radius:    3px;
    border-radius:         3px;
    font-family:           Consolas, serif;
    font-size:             small;
}

.tag-radius
{
    padding:               1px 4px 1px 4px;
    text-transform:        uppercase;
    white-space:           nowrap;
    -webkit-border-radius: 10px;
    -moz-border-radius:    10px;
    border-radius:         10px;
    font-family:           Consolas, serif;
    font-size:             small;
}

.tag-primary
{
    color: #fff;
    background-color: #007bff;
}

.tag-critical
{
    background-color: #7b1216;
    color:            white;
}

.tag-high
{
    background-color: #dc3545;
    color:            white;
}

.tag-warning
{
    background-color: #ffc107;
    color:            white;
}

.tag-info
{
    background-color: #17a2b8;
    color:            white;
}

.tag-debug
{
    background-color: #28a745;
    color:            white;
}

.tag-ok
{
    background-color: #28a745;
    color:            white;
}

.tag-nok
{
    background-color: #dc3545;
    color:            white;
}

.tag-success
{
    background-color: #28a745;
    color:            white;
}

.tag-danger
{
    background-color: #dc3545;
    color:            white;
}

.tag-disabled
{
    background-color: grey;
    color:            white;
}

.tag-muted
{
    background-color: #b9b9b9;
    color:            white;
}

.z-index-auto
{
    z-index: auto !important;
}

.naked-button
{
    background: none;
    padding: 0;
    border: none;
}

.cursor-hand
{
    cursor: pointer;
}

.action-cancel-operation-popup
{

}

.action-delete-records-popup
{

}

/***
 *      __  __  ___  ____    _    _     ____
 *     |  \/  |/ _ \|  _ \  / \  | |   / ___|
 *     | |\/| | | | | | | |/ _ \ | |   \___ \
 *     | |  | | |_| | |_| / ___ \| |___ ___) |
 *     |_|  |_|\___/|____/_/   \_\_____|____/
 *
 */

@media (max-width: 600px)
{
    .modal-dialog-medium-size
    {
        max-width: 100%;
    }
}

@media (min-width: 750px)
{
    .modal-dialog-medium-size
    {
        max-width: 700px;
    }
}

@media (min-width: 900px)
{
    .modal-dialog-medium-size
    {
        max-width: 800px;
    }
}

@media (min-width: 1200px)
{
    .modal-dialog-medium-size
    {
        max-width: 1000px;
    }
}

@media (min-width: 1600px)
{
    .modal-dialog-medium-size
    {
        max-width: 1400px;
    }
}




/*
 *         _     ____   _   _  ____   _____  ____
 *        / \   | __ ) | | | |/ ___| | ____|/ ___|
 *       / _ \  |  _ \ | | | |\___ \ |  _|  \___ \
 *      / ___ \ | |_) || |_| | ___) || |___  ___) |
 *     /_/   \_\|____/  \___/ |____/ |_____||____/
 *
 */
.abuse-color-header-reporter
{
    background : beige;
}

.abuse-color-content-reporter
{
    background : rgba(245, 245, 220, 0.44);
}

.abuse-color-header-reported
{
    background-color : rgb(214, 233, 249);
}

.abuse-color-content-reported
{
    background-color : rgba(206, 224, 240, 0.33);
}

.abuse-color-header-staff
{
    background-color : rgb(255, 213, 214);
}

.abuse-color-content-staff
{
    background-color : rgba(250, 219, 216, 0.76);
}

/*
 *      _____  ___  ____  _  __ _____  _____  ____
 *     |_   _||_ _|/ ___|| |/ /| ____||_   _|/ ___|
 *       | |   | || |    | ' / |  _|    | |  \___ \
 *       | |   | || |___ | . \ | |___   | |   ___) |
 *       |_|  |___|\____||_|\_\|_____|  |_|  |____/
 *
 */
.ticket-color-header-user
{
    background-color : rgb(214, 233, 249);
}

.ticket-color-content-user
{
    background-color : rgba(206, 224, 240, 0.33);
}

.ticket-color-header-staff
{
    background-color : rgb(255, 213, 214);
}

.ticket-color-content-staff
{
    background-color : rgba(250, 219, 216, 0.76);
}

/*    _____ ___ __  __ _____ _     ___ _   _ _____  */
/*   |_   _|_ _|  \/  | ____| |   |_ _| \ | | ____| */
/*    | |  | || |\/| |  _| | |    | ||  \| |  _|    */
/*   | |  | || |  | | |___| |___ | || |\  | |___    */
/*  |_| |___|_|  |_|_____|_____|___|_| \_|_____|    */
/*                                                  */
ul.timeline-vertical
{
    list-style-type : none;
    position        : relative;
}

ul.timeline-vertical:before
{
    content    : ' ';
    background : #d4d9df;
    display    : inline-block;
    position   : absolute;
    left       : 29px;
    width      : 2px;
    height     : 100%;
    z-index    : 400;
}

ul.timeline-vertical > li
{
    margin       : 20px 0;
    padding-left : 20px;
}

ul.timeline-vertical > li:before
{
    content       : ' ';
    background    : white;
    display       : inline-block;
    position      : absolute;
    border-radius : 50%;
    border        : 3px solid #22c0e8;
    left          : 20px;
    width         : 20px;
    height        : 20px;
    z-index       : 400;
}

/*
 *      _____  ___    ___  _____  _____  ____
 *     |  ___|/ _ \  / _ \|_   _|| ____||  _ \
 *     | |_  | | | || | | | | |  |  _|  | |_) |
 *     |  _| | |_| || |_| | | |  | |___ |  _ <
 *     |_|    \___/  \___/  |_|  |_____||_| \_\
 *
 */
footer
{
    background : #16222A;
    background : -webkit-linear-gradient(59deg, #3A6073, #16222A);
    background : linear-gradient(59deg, #3A6073, #16222A);
    color      : white;
    margin-top : 0;
    bottom     : 0;
}

footer a
{
    color               : #fff;
    font-size           : 14px;
    transition-duration : 0.2s;
}

footer a:hover
{
    color           : #FA944B;
    text-decoration : none;
}

.copyright-footer
{
    font-size  : 12px;
    padding    : 10px 0 10px 0;
    border-top : 1px solid #FFFFFF;
}

.copyright-text
{
    float : right;
}


.footer-middle
{
    padding-top : 2em;
    color       : white;
}

/* LANG PICKER */
.language-picker
{
    padding-right : 10px;
}

/* Make classic dropdown menu button smaller and transparent */
.transparent-dropdown
{
    border-style    : none !important;
    outline         : none !important;
    box-shadow      : none !important;
    text-decoration : none;
    padding         : 0 !important;
    font-size       : small;
}

.transparent-dropdown:hover, .transparent-dropdown:focus, .transparent-dropdown:active, .transparent-dropdown.active, .open > .dropdown-toggle.transparent-dropdown, .transparent-dropdown:active:focus
{
    border-style    : none !important;
    outline         : none !important;
    box-shadow      : none !important;
    text-decoration : none;
    padding         : 0 !important;
}

/* Used for form fields to match the width fo the parent. Used especially inside <lablel class="form-label-full-width"> */
.form-label-full-width
{
    text-wrap : none;
    width     : 100%;
}

/** Search bar */
.intellisearch
{
    float:right;
    color:#fff;
    width:40px;
    border-radius:4px;
    text-align:left;
    transition:all .2s;
    z-index:1000;
    overflow:hidden
}

.intellisearchresults-title
{
    margin: 0 0 5px 0;
    padding: 6px 15px;
    font-size: 12px;
    font-weight: 700;
    text-align: left;
    color: #888;
    text-transform: uppercase;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
}

.intellisearchresults
{
    position:absolute;
    margin:0;
    padding:0;
    top:45px;
    left:0;
    width:100%;
    font-size:12px;
    background-color:#fff;
    text-align:left;
    z-index:10
}
@media only screen and (min-width:1275px)
{
    .intellisearchresults {
        margin:0 0 0 10px;
        border-left:1px solid #eaeaea;
        left:auto;
        right:0;
        width:500px
    }
}

.brand-img
{
    height             : 25px;
    width              : auto;
    display            : block;
    -webkit-transition : all 0.3s ease-out;
    transition         : all 0.3s ease-out;
}
