/* *****************
  
  CSS GERAL DO PROJETO

***********
 */

body{
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 12pt;
    transition: .1s all ease-in;
    background-color: #111B28;
}
::-moz-selection{
    color: white;
    background: #539e91;
}
::selection {
    color: white;
    background: #539e91;
}
.mce-content-body{
    min-height: 100vh;
}
.login-menu i.fa{
    padding-right: 5px;
}
/* ======  Auxiliar =============================================*/
a{
   color: inherit;
   text-decoration: none;
}
a:hover{
    color: inherit;
    text-decoration: none;
    opacity: .7;
}
a:focus{
    text-decoration: none;
}
a.color{
    transition: .1s all ease-in;
    color: rgb(65,148,133);
}
a.color:hover{
    color: rgb(49, 105, 91);
}
hr {
  border-top: 1px solid #dedacc !important;
}
.title{
    text-transform: uppercase;
    font-family: 'Josefin Sans', sans-serif;
}
.text-highlight{font-family: 'Josefin Sans', sans-serif;}
.text{font-family: 'Source Sans Pro', sans-serif;}
.right{float: right;}
.left{float: left;}

.border-bottom{
    border-bottom: 10px solid #d6d2c5;
}
.bread{
    margin-bottom: 30px;
    font-size: 12px;
}
.bread a{
    color: rgb(65,148,133);
}
/* ======  Cascata =============================================*/
.dyn-title{
    font-size: 15pt;
}
/* ícone de abrir */
.arrow-icon{
    display: inline-block;
    background-image: url('../images/icons/arrow.png');
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center;
    height: 15px;
    width: 20px; 
    transition: .3s all ease-in;
    transform: rotate(90deg);
}
.arrow-icon.dark{
    background-image: url('../images/icons/arrowDark.png');
}
.arrow-icon.opened{
    transform: rotate(180deg);
}

/* container dinâmico */
.dyn-content{
    height: 0px;
    overflow: hidden;
    transition: .3s all ease-in;
}
.open-dynContainer{
    margin-top: 15px !important;
}
.open-dynContainer:hover{
    cursor: pointer;
    opacity: .5;
}
/* ======  Botões =============================================*/
.button{
    outline: none;
    padding: 5px 10px;
    margin: 5px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 10pt;
    border: 1px solid;
    background-color: transparent;
    transition: 0.1s all ease-in;
    text-transform: uppercase;
}
.button:hover{
    color: black;
    background-color: white;
}
input[type="file"]::-webkit-file-upload-button {
    outline: none;
    padding: 5px 10px;
    margin: 5px 25px 5px 0px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 10pt;
    border: 1px solid;
    background-color: transparent;
    transition: 0.1s all ease-in;
    text-transform: uppercase;
}
input[type="file"]::-webkit-file-upload-button:hover{
    color: #f0f0e1;
    background-color: #595959;
    border-color: #595959;
    cursor: pointer;
}

/* ====== Forms =================================================*/
/* Checkbox! */
/* Base for label styling */
[type="checkbox"]:not(:checked),
[type="checkbox"]:checked{
    position: absolute;
    left: -9999px;
}
[type="checkbox"]:not(:checked) + label,
[type="checkbox"]:checked + label{
    position: relative;
    padding-left: 25px;
    cursor: pointer;
}
/* checkbox aspect */
[type="checkbox"]:not(:checked) + label:before,
[type="checkbox"]:checked + label:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0px;
    width: 17px;
    height: 17px;
    border: 1px solid #a2b7b0;
    background-color: white;
}
/* checked mark aspect */
[type="checkbox"]:not(:checked) + label:after,
[type="checkbox"]:checked + label:after{
    content: '✔';
    position: absolute;
    top: 0px;
    left: 4px;
    font-size: 18px;
    line-height: 0.8;
    color: #09ad7e;
    transition: all .2s;
}
/* checked mark aspect changes */
[type="checkbox"]:not(:checked) + label:after{
    opacity: 0;
    transform: scale(0);
}
[type="checkbox"]:checked + label:after{
    opacity: 1;
    transform: scale(1);
}
/* disabled checkbox */
[type="checkbox"]:disabled:not(:checked) + label:before,
[type="checkbox"]:disabled:checked + label:before{
    box-shadow: none;
    border-color: #bbb;
    background-color: #ddd;
}
[type="checkbox"]:disabled:checked + label:after{
    color: #999;
}
[type="checkbox"]:disabled + label{
    color: #aaa;
}
/* accessibility */
[type="checkbox"]:checked:focus + label:before,
[type="checkbox"]:not(:checked):focus + label:before{
    border: 1px dotted #027d5a             ;
}

.dark-form{
    background-color: #dedacc;
    padding: 30px;
    margin-bottom: 30px;
}
.title-form{
    font-size: 13pt;
    text-align: right;
    padding-top: 15px;
}
.input{
    border: none;
    outline: none;
    line-height: 40px;
    padding-left: 15px;
}
.control{
    font-size: 18px;
    position: relative;
    display: block;
    margin-bottom: 15px;
    padding-left: 30px;
    cursor: pointer;
}
.control input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.control__indicator {
    position: absolute;
    top: 2px;
    left: 0;
    width: 20px;
    height: 20px;
    background: #ccc;
}

/* Hover and focus states */
.control:hover input ~ .control__indicator,
.control input:focus ~ .control__indicator {background: #bbb;}

/* Checked state */
.control input:checked ~ .control__indicator {background: #595959;}

/* Hover state whilst checked */
.control:hover input:not([disabled]):checked ~ .control__indicator,
.control input:checked:focus ~ .control__indicator {background: #787878;}

/* Disabled state */
.control input:disabled ~ .control__indicator {
    pointer-events: none;
    opacity: .6;
    background: #e6e6e6;
}

/* Check mark */
.control__indicator:after {
    position: absolute;
    display: none;
    content: '';
}

/* Show check mark */
.control input:checked ~ .control__indicator:after {
    display: block;
}

/* Checkbox tick */
.control--checkbox .control__indicator:after {
    top: 4px;
    left: 7px;
    width: 7px;
    height: 10px;
    transform: rotate(45deg);
    border: solid #fff;
    border-width: 0 2px 2px 0;
}

/* Disabled tick colour */
.control--checkbox input:disabled ~ .control__indicator:after {border-color: #7b7b7b;}

/* Radio button inner circle */
.control--radio .control__indicator:after {
    top: 7px;
    left: 7px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
}

/* Disabled circle colour */
.control--radio input:disabled ~ .control__indicator:after {
    background: #7b7b7b;
}
/* ====== Paginação ===============*/
.pager{
    text-align: center !important;
    padding-top: 25px;
}
.pager ul{
    margin: 0px 10px;
}
.list-view .summary{
    margin-top: 15px !important;
    text-align: left !important; 
}
.pager li > a, .pager li > span{
    background-color: #595959;
    border: none;
}
ul.yiiPager a:link, ul.yiiPager a:visited{
    margin-left: -1px;
    border: none;
    color: #f0f0e1;
    padding: 12px 14px;
    font-size: 10pt;
    font-family: 'Josefin Sans', sans-serif;
}
.pager .next > a, .pager .next > span,.pager .previous > a, .pager .previous > span{
    float: none;
}
.pager li > a, .pager li > span{
    border-radius: 0px;
}
ul.yiiPager .selected a{
    background-color: #419485;
    border: 1px solid #419485 !important;
    font-weight: bold;
}
.pager li > a:hover, .pager li > a:focus{
    background-color: #f0f0e1;
    color: #595959;
    font-weight: bold;
    border: 1px solid #595959 !important;
}
.sortable-list{
    line-height: 35px;
    list-style-type: none;
    padding: 0px;
}
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default{
    background: #419485 !important;
    border-color: #f0f0e1 !important;
    border-bottom: 1px solid;
    color: #fff !important;
    font-size: 12pt !important;
    padding: 0px 15px !important;
}
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active{
    background: #dedacc !important;
    border-color: #f0f0e1 !important;
    color: #595959 !important;
    padding: 0px 25px !important;
}
.ui-state-default .ui-icon{
    display: inline-block;
}
/* states and images */
.ui-icon { width: 16px; height: 16px; background-image: url(images/ui-icons_0078ae_256x240.png); }
.ui-widget-content .ui-icon {background-image: url(images/ui-icons_0078ae_256x240.png); }
.ui-widget-header .ui-icon {background-image: url(images/ui-icons_d8e7f3_256x240.png); }
.ui-state-default .ui-icon { background-image: url(images/ui-icons_e0fdff_256x240.png); }
.ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url(images/ui-icons_e0fdff_256x240.png); }
.ui-state-active .ui-icon {background-image: url(images/ui-icons_f5e175_256x240.png); }
.ui-state-highlight .ui-icon {background-image: url(images/ui-icons_f7a50d_256x240.png); }
.ui-state-error .ui-icon, .ui-state-error-text .ui-icon {background-image: url(images/ui-icons_fcd113_256x240.png); }

/* ======  Conteúdo =============================================*/
.site-container{
    position: relative;
    top: 0px;
    left: 0px;
    padding: 0px !important;
}
.content-wrapper{
    padding: 0px !important;
}
/* Largura do conteúdo */
.container-custom{
    width: 1400px; /* Tamanho padrão do site, para telas > 1500px */
    margin: 0px auto !important;
    padding: 10px 0px;
}
/* ======  Títulos =============================================*/
.title-container{
    font-size: 19pt;
    margin-top: 25px;
}

/* icons */
.pageTitle-icon{color: rgb(65,148,133);}
.title-iconLeft{
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: left;
    width: 15px;
    height: 18px;
    display: inline-block;
    margin-top: 3px;
}
.title-iconRight{
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: right;
    width: 15px;
    height: 18px;
    display: inline-block;
    margin-top: 3px;
}
/* verde */
.title-iconLeft.color{
    background-image: url('../images/icons/left.png');
}

.title-iconRight.color{
    background-image: url('../images/icons/right.png');
}

/* branco */
.title-iconRight.white{
    background-image: url('../images/icons/rightWhite.png');
}
.title-iconLeft.white{
    background-image: url('../images/icons/leftWhite.png');
}

/* Layout responsivo *//* ======  min-width: 1200px ====================*/
@media only screen and (max-width: 1499px){
    .container-custom{
        width: 1100px;
    }
}

/* ======  min-width: 992px =============================================*/
@media only screen and (max-width: 1199px){
    .container-custom{
        width: 860px;
    }
}

/* ======  min-width: 768px =============================================*/
@media only screen and (max-width: 991px){
    .container-custom{
        width: 690px;
    }
}

/* ======  min-width: 480px =============================================*/
@media only screen and (max-width: 767px){
    .page-content{
        margin-top: 95px;
    }
    .container-custom{
        width: 415px;
    }
     ul.yiiPager a:link,
    ul.yiiPager a:visited{
        padding: 8px;
        font-size: 14px;
    }
    ul.yiiPager li.next, 
    ul.yiiPager li.previous{
        display: none;
    }
}

/* ======  min-width: 320px =============================================*/
@media only screen and (max-width: 479px){
    .page-content{
        margin-top: 0px;
    }
    .container-custom{
        width: 260px;
    }
    .title-container{
        font-size: 14pt;
    }
    .dyn-title{
        font-size: 13pt;
    }
    .arrow-icon{
        height: 12px;
        width: 16px;
    }

    ul.yiiPager a:link,
    ul.yiiPager a:visited{
        padding: 3px;
        font-size: 11px;
    }
}