/* here you can put your own css to customize and override the theme */

/***
Rounded Portlets
***/
/*
.portlet {
	border-radius: 4px !important;
}

.portlet .portlet-title {
	border-radius: 4px 4px 0px 0px !important;
}

.portlet .portlet-body,
.portlet .portlet-body .form-actions  {
	border-radius: 0px 0px 4px 4px !important;
}
*/
/* altera background do footer para destacar os botoes de acoes */
/*
.page-footer {
 background-color:#abcdef !important; 
 height: 40px;
}*/
.modal {
    bottom: 0;
    display: none;
    left: 0;
    outline: 0 none;
    overflow: hidden;
    position: fixed;
    right: 0 !important;
    top: 0 !important;
    margin: initial;
    z-index: 9999;
    width: auto;
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}
/*------------------------------------------------------------------
[10. Modals]
*/
.modal .close:focus {
    outline: 0;
}

.modal .modal-dialog {
    transition: all .2s !important;
}

.modal .modal-content {
    border: 1px solid #f2f6f7;
    border-radius: 3px;
    box-shadow: none;
}

.modal .modal-header {
    text-align: center;
    border-bottom: 0;
    padding: 25px 25px 0 25px;
}

    .modal .modal-header p {
        color: #8b91a0;
    }

.modal .modal-body {
    box-shadow: none;
    padding: 25px;
    padding-top: 0;
    white-space: normal;
}

.modal .modal-footer {
    border-top: none;
    box-shadow: none;
    margin-top: 0;
    padding: 25px;
    padding-top: 0;
}

.modal .drop-shadow {
    box-shadow: 0 0 9px rgba(191, 191, 191, 0.36) !important;
}

.modal.fade {
    opacity: 1 !important;
}

    .modal.fade.stick-up .modal-dialog {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        -ms-transform: translate(0, -100%);
        margin-top: -5px;
    }

    .modal.fade.stick-up.in .modal-dialog {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -ms-transform: translate(0, 0);
    }

    .modal.fade.slide-up {
        height: 100%;
        top: auto;
    }

        .modal.fade.slide-up.in .modal-dialog {
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
            -ms-transform: translate(0, 0);
        }

        .modal.fade.slide-up.disable-scroll {
            overflow: hidden;
        }

        .modal.fade.slide-up .modal-dialog {
            display: table;
            height: 100%;
            -webkit-transform: translate3d(0, 75%, 0);
            transform: translate3d(0, 75%, 0);
            -ms-transform: translate(0, 75%);
        }

        .modal.fade.slide-up .modal-content-wrapper {
            display: table-cell;
            vertical-align: middle;
        }

    .modal.fade.center-scale .modal-dialog {
        display: table;
        height: 100%;
    }

    .modal.fade.center-scale .modal-content {
        display: table-cell;
        vertical-align: middle;
        border: 0;
        background: transparent;
    }

        .modal.fade.center-scale .modal-content .modal-header {
            border-bottom: 0px;
        }

    .modal.fade.center-scale.in .modal-dialog {
        opacity: 1;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    .modal.fade.center-scale .modal-dialog {
        opacity: 0;
        -webkit-transform: scale(0.6);
        -ms-transform: scale(0.6);
        transform: scale(0.6);
    }

    .modal.fade.fill-in {
        background-color: rgba(255, 255, 255, 0);
        -webkit-transition: background-color 0.3s;
        transition: background-color 0.3s;
    }

        .modal.fade.fill-in > .close {
            margin-top: 20px;
            margin-right: 20px;
            opacity: 0.6;
        }

            .modal.fade.fill-in > .close > i {
                font-size: 16px;
            }

        .modal.fade.fill-in .modal-dialog {
            display: table;
            height: 100%;
        }

        .modal.fade.fill-in .modal-content {
            display: table-cell;
            vertical-align: middle;
            border: 0;
            background: transparent;
        }

            .modal.fade.fill-in .modal-content .modal-header {
                border-bottom: 0px;
            }

        .modal.fade.fill-in.in {
            background-color: rgba(255, 255, 255, 0.85);
        }

            .modal.fade.fill-in.in .modal-dialog {
                opacity: 1;
                -webkit-transform: scale(1);
                -ms-transform: scale(1);
                transform: scale(1);
            }

        .modal.fade.fill-in .modal-dialog {
            opacity: 0;
            -webkit-transform: scale(0.6);
            -ms-transform: scale(0.6);
            transform: scale(0.6);
        }

    .modal.fade.slide-right .close {
        position: absolute;
        top: 0;
        right: 0;
        margin-right: 10px;
        z-index: 10;
    }

    .modal.fade.slide-right.in .modal-dialog {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -ms-transform: translate(0, 0);
    }

    .modal.fade.slide-right .modal-dialog {
        position: absolute;
        right: 0;
        margin: 0;
        height: 100%;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        -ms-transform: translate(100%, 0);
    }

        .modal.fade.slide-right .modal-dialog .modal-content-wrapper {
            height: 100%;
        }

        .modal.fade.slide-right .modal-dialog .modal-content {
            height: 100%;
        }

    .modal.fade.slide-right .modal-content {
        border-radius: 0px;
    }

.fill-in-modal .modal-backdrop {
    background-color: transparent;
}

.modal-backdrop {
    opacity: 0;
    -webkit-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
}

    .modal-backdrop.in {
        opacity: 0.30;
    }
/* Responsive Handlers: Modals
------------------------------------
*/
@media (max-width: 768px) {
    .modal.fill-in .modal-dialog {
        width: calc(100% - 20px);
    }

    .modal.slide-up .modal-dialog {
        width: calc(100% - 20px);
    }
}

@media (min-width: 768px) {
    .modal.stick-up .modal-dialog {
        margin: -5px auto;
    }

    .modal.slide-up .modal-dialog {
        margin: 0 auto;
    }

    .modal.fill-in .modal-dialog {
        margin: 0 auto;
    }

    .modal .modal-content {
        box-shadow: none;
    }
}
/* Hide TextBox RadUpload
------------------------------------
    */
div.RadUpload .ruFakeInput {
    visibility: hidden;
    width: 0;
    padding: 0;
}

div.RadUpload .ruFileInput {
    width: 1;
}

.logoPagto {
    height: 150px;
    width: 150px;
    margin: 10px 10px 10px 10px;
    min-height: 150px;
}
/* RadComboBox Multiple Columns
------------------------------------
    */

.demo-container label {
    padding-right: 10px;
    width: 185px;
    display: inline-block;
}

.demo-container .RadButton {
    margin-top: 20px;
}


/** Columns */
.rcbHeader ul,
.rcbFooter ul,
.rcbItem ul,
.rcbHovered ul,
.rcbDisabled ul {
    margin: 0;
    padding: 0;
    width: 100%;
    display: inline-block;
    list-style-type: none;
}

.exampleRadComboBox.RadComboBoxDropDown .rcbHeader {
    padding: 5px 27px 4px 7px;
}

.rcbScroll {
    overflow: scroll !important;
    overflow-x: hidden !important;
}

.col1,
.col2,
.col3 {
    margin: 0;
    padding: 0 5px 0 0;
    width: 30%;
    line-height: 14px;
    float: left;
}
/** Multiple rows and columns */
.multipleRowsColumns .rcbItem,
.multipleRowsColumns .rcbHovered {
    float: left;
    margin: 0 1px;
    min-height: 13px;
    overflow: hidden;
    padding: 2px 19px 2px 6px;
    width: 150px;
}


.results {
    display: block;
    margin-top: 20px;
}

.jwlogo {
    visibility: hidden !important;
}


/******************************************/
.photo-upload .rcuHeader {
    display: none !important;
}

.photo-upload .rcuInfoPanel {
    border: 0 !important;
}

    .photo-upload .rcuInfoPanel .rcuBody {
        background-color: #e5e5e5;
        border: 0 !important;
    }

        .photo-upload .rcuInfoPanel .rcuBody .rcuFileList {
            border: 0 !important;
        }

.photo-upload .rcuFileInput:hover {
    cursor: pointer;
}

.photo-upload .rcuFileWrap {
    background-image: none !important;
    color: #FFFFFF !important;
    background-color: #4B8DF8 !important;
    border-radius: 0 !important;
    font-size: 14px !important;
    padding: 7px 14px !important;
    height: auto !important;
    border: 0 solid transparent !important;
    border-radius: 4px !important;
}

    .photo-upload .rcuFileWrap:hover {
        border-width: 1px;
    }
.messageAviso {
    left: 0;
    width: 100%;
    text-decoration:none;
    padding: 10px;
}
    .messageAviso a:hover {
    text-decoration: none;
    }
.inner-messageAviso {
    margin: 0 auto;
    text-align: justify;
}
.closeAviso {
    margin-top: 0px;
    margin-right: 0px;
    float:right;
    font-size: medium;
    color: white;
}
.bannerBtn {
    z-index: 999;
}
#imgLogo {
max-width: 150px;
}
  .row-two .portlet .portlet-body .tab-content .tab-pane .feeds li .col2 .date2 {
    font-size: 12px;
    font-style: normal;
    line-height: 2; 
    color: black !important;
  }