﻿/*
Created By: Leandro
Creation Date: 02/28/2019
Add all the customized styles
*/

/*Images*/




.container {
    padding-right: initial !important;
    padding-left: initial !important;
    margin-right: initial !important;
    margin-left: initial !important;
    width: initial !important;
}







.img_logo {
    width: 170px;
    height: auto;
    display: block;
    margin-right: auto;
}


.divider{
    width:5px;
    height:auto;
    display:inline-block;
}








/*Panels*/

.shadow-panel {
    -webkit-box-shadow: 5px 5px 15px -5px rgba(0,0,0,0.95);
    box-shadow: 5px 5px 15px -5px rgba(0,0,0,0.95);
}

/*Form controls*/

.form-group.required.control-label:before {
    color: red;
    content: "*";
    position: absolute;
    margin-left: -10px;
}

/*Button*/

.btn-space5 {
    margin-right: 5px;
}

.btn-space10 {
    margin-right: 10px;
}

/*Modals*/

.modal-header {
    padding: 10px;
}

.modal-body {
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

.modal-stream {
    width: auto !important;
    max-height: calc(100vh - 200px) !important;
}

.modal-content-stream {
    height: 100% !important;
}

.modal-body-stream {
    padding: 0px !important;
}

/*Others*/

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #62cb31;
    margin: 1em 0;
    padding: 0;
}

.top-buffer10 {
    margin-top: 10px;
}

.top-buffer20 {
    margin-top: 10px;
}

/*Icons*/
.navbar-desktop-toggle {
    position: relative;
    float: right;
    padding: 9px 10px;
    margin-top: 8px;
    margin-right: 5px;
    margin-bottom: 8px;
}

.red {
    font-size: 16px;
    color: #ff0000 !important;
}

.green {
    font-size: 16px;
    color: green !important;
}

/*Popover*/
.popover-title {
    text-align: center;
    font-size: 16px;
}

.popover-content {
    font-size: 14px;
}

/*Tooltip*/
.tooltip.primary .tooltip-inner {
    background-color: #337ab7;
}

.tooltip.primary.top > .tooltip-arrow {
    border-top-color: #337ab7;
}

.tooltip.primary.right > .tooltip-arrow {
    border-right-color: #337ab7;
}

.tooltip.primary.bottom > .tooltip-arrow {
    border-bottom-color: #337ab7;
}

.tooltip.primary.left > .tooltip-arrow {
    border-left-color: #337ab7;
}

.tooltip.info .tooltip-inner {
    background-color: #31b0d5;
}

.tooltip.info.top > .tooltip-arrow {
    border-top-color: #31b0d5;
}

.tooltip.info.right > .tooltip-arrow {
    border-right-color: #31b0d5;
}

.tooltip.info.bottom > .tooltip-arrow {
    border-bottom-color: #31b0d5;
}

.tooltip.info.left > .tooltip-arrow {
    border-left-color: #31b0d5;
}

.tooltip.success .tooltip-inner {
    background-color: #449d44;
}

.tooltip.success.top > .tooltip-arrow {
    border-top-color: #449d44;
}

.tooltip.success.right > .tooltip-arrow {
    border-right-color: #449d44;
}

.tooltip.success.bottom > .tooltip-arrow {
    border-bottom-color: #449d44;
}

.tooltip.success.left > .tooltip-arrow {
    border-left-color: #449d44;
}

.tooltip.warning .tooltip-inner {
    background-color: #ec971f;
}

.tooltip.warning.top > .tooltip-arrow {
    border-top-color: #ec971f;
}

.tooltip.warning.right > .tooltip-arrow {
    border-right-color: #ec971f;
}

.tooltip.warning.bottom > .tooltip-arrow {
    border-bottom-color: #ec971f;
}

.tooltip.warning.left > .tooltip-arrow {
    border-left-color: #ec971f;
}

.tooltip.danger .tooltip-inner {
    background-color: #d9534f;
}

.tooltip.danger.top > .tooltip-arrow {
    border-top-color: #d9534f;
}

.tooltip.danger.right > .tooltip-arrow {
    border-right-color: #d9534f;
}

.tooltip.danger.bottom > .tooltip-arrow {
    border-bottom-color: #d9534f;
}

.tooltip.danger.left > .tooltip-arrow {
    border-left-color: #d9534f;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
}

    .tooltip .tooltiptext::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        margin-left: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: #555 transparent transparent transparent;
    }

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

/*Datatables*/

.td-wrap {
    word-break: break-all;
    vertical-align: top;
}

/*Signature
 In the form Contract Confirmation
 Change was necessary to be responsive
*/
.jSignature {
    width: auto !important;
    height: auto !important;
}

/*radiobutton*/

[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

    [type="radio"]:checked + label,
    [type="radio"]:not(:checked) + label {
        position: relative;
        padding-left: 28px;
        cursor: pointer;
        line-height: 20px;
        display: inline-block;
        color: #666;
    }

        [type="radio"]:checked + label:before,
        [type="radio"]:not(:checked) + label:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 18px;
            height: 18px;
            border: 1px solid #ddd;
            border-radius: 100%;
            background: #fff;
        }

        [type="radio"]:checked + label:after,
        [type="radio"]:not(:checked) + label:after {
            content: '';
            width: 12px;
            height: 12px;
            background: green;
            position: absolute;
            top: 4px;
            left: 4px;
            border-radius: 100%;
            -webkit-transition: all 0.2s ease;
            transition: all 0.2s ease;
        }

        [type="radio"]:not(:checked) + label:after {
            opacity: 0;
            -webkit-transform: scale(0);
            transform: scale(0);
        }

        [type="radio"]:checked + label:after {
            opacity: 1;
            -webkit-transform: scale(1);
            transform: scale(1);
        }

/*Checkbox*/

/*Alerts and Window Confirm*/

/* Upload Button*/
.btn-file {
    position: relative;
    overflow: hidden;
}

/*.btn-file input[type=file] {
        position: absolute;
        top: 0;
        right: 0;
        min-width: 100%;
        min-height: 100%;
        font-size: 100px;
        text-align: right;
        filter: alpha(opacity=0);
        opacity: 0;
        outline: none;
        background: white;
        cursor: inherit;
        display: block;
    }*/

#img-upload {
    width: 100%;
}

.text-control {
    font-size: 14px;
    /*line-height: 1.42857143;*/
    color: #555;
    /*border-color: #eaeaea !important;
    background-color: #fff;
    background-image: none;
    /*border: 1px solid #ccc;
    border-radius: 4px;*/
    /*-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;*/
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
    top: 0px !important;
}

/*FontSize**/

.font-10 {
    font-size: 10px !important;
}

.font-12 {
    font-size: 12px !important;
}

.font-15 {
    font-size: 15px !important;
}

.font-16 {
    font-size: 18px !important;
}

.font-18 {
    font-size: 18px !important;
}

.font-20 {
    font-size: 20px !important;
}

.font-24 {
    font-size: 24px !important;
}

/**hidden a column inside a user control*/

.hide {
    display: none;
}

/*Checkbox*/

/*Datatable*/

.dataTables_info {
    font-size: 12px !important;
}

.dataTables_paginate {
    font-size: 10px !important;
    top: -165px !important;
}

.dataTables_length {
    font-size: 10px !important;
}

.dataTables_filter {
    font-size: 10px !important;
}

/*Loader*/

.loader {
    border: 18px solid white; /* Light grey */
    border-top: 18px solid green; /* Blue */
    border-radius: 70%;
    width: 100px;
    height: 100px;
    animation: spin 800ms linear infinite;
    left: 50%;
    margin-left: -20px;
    top: 350px !important;
    margin-top: -20px;
    position: absolute;
    z-index: 19 !important;
}

.loaderinv {
    border: 18px solid green; /* Light grey */
    border-top: 18px solid white; /* Blue */
    border-radius: 70%;
    width: 100px;
    height: 100px;
    animation: spin 800ms linear infinite;
    left: 50%;
    margin-left: -20px;
    top: 350px !important;
    margin-top: -20px;
    position: absolute;
    z-index: 19 !important;
}


@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.modal-dialog-center {
    margin-top: 25%;
}

.blur {
    /*box-shadow: 0px 0px 20px 20px rgba(255,255,255,1);
    text-shadow: 0px 0px 10px rgba(51, 51, 51, 0.9);
    transform: scale(1);
    opacity: 2;*/
    -webkit-filter: blur(8px);
}

.loader2 {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba( 255, 255, 255, .8 ) url('../img/ajax-loader.gif') 50% 50% no-repeat;
}

/*.modal-backdrop*/

/*.modal-backdrop {
    -webkit-filter: blur(8px);
}*/

/* Harpreet Forms */
.btn-error {
    background-color: #e74c3c;
    border-color: #e74c3c;
    color: #fff;
    text-align: center;
}

/* Overwrite*/

.btn-info-force {
    background-color: #4ea5e0 !important;
    border-color: #4ea5e0 !important;
    color: #fff !important;
}

    .btn-info-force:hover {
        color: #fff !important;
        background-color: #31b0d5 !important;
        border-color: #269abc !important;
    }

.btn-success-force {
    background-color: #62cb31 !important;
    border-color: #62cb31 !important;
    color: #fff !important;
}

.alert-gray {
    color: black;
    background-color: #F8F8F8;
    border-color: #F8F8F8;
}

.input-group-addon {
    padding: 6px 12px;
    font-size: 14px;
    font-weight: normal;
    line-height: 1;
    color: #555;
    text-align: left !important;
    border-radius: 4px;
    background-color: white !important;
    border: 0px !important;
}

/*span*/

.space-1-5 {
    display: inline-block; /* change the display type           */
    margin: 10px 0;
}

/*Checkbox*/

.icheck-large {
    width: 26px !important;
    height: 26px !important;
}

.icheck-space {
    margin-bottom: 10px !important;
}



 .invisible {
            visibility: hidden;
            width: 0px !important;
            height: 0px !important;
            top: 0px !important;
            bottom: 0px !important;
            display: none !important;
            margin-bottom: 0px !important;
            clear: both !important;
            line-height: 0 !important;
            font-size: 0 !important;
            margin: 0 !important;
            padding: 0 !important;
            margin-top: 0px !important;
            margin-left : 0px !important;
            margin-right : 0px !important;
            
        }

.btnpurple {
    color: #fff;
    background-color: #5454a8 !important; /*c39bd3*/
    border-color: #5454a8 !important;
    text-align: center;
}
.btn-back {
    color: #fff;
    background-color: #5454a8 !important;
    border-color: #5454a8 !important;
    text-align: center;
}
.btnfilter {
    color: #fff !important;
    background-color: #ff7373 !important;
    border-color: #c39bd3 !important;
    text-align: center;
    width: 150px !important;
    margin-top: 25px !important;
    margin-left: 25px !important;
}
.btnpeach {
   
    color: #fff !important;
    background-color: #ff7373 !important;
    border-color: #c39bd3 !important;
    text-align: center;
}