pacific-icon-cita:before {
    color: #ff545e;
    font-family: "pacific-icons";
    content: "\61";
    margin-right: 10px;
    font-size: 18px;
}

a{
    padding: 10px;
    color:#259e82;
    text-decoration: none;

}
ul {
    -webkit-padding-start: 0px;
}
span{
    white-space: pre-line;
}
.hide-empty{
    display: none;
}

.subheadings{
    position: absolute;
    top: 0px;
    right: 0px;
    color:#9D988E;
}
.subheadings button{
    padding: 5px;
    margin: 0px;
    margin-left: 8px;
}
#menu {
    width: 200px;
}
#userData {
    border-top: 1px solid #eee
}
.text-label{
    font-weight: bold;
    text-transform: uppercase;
}
.capitalize {
    text-transform: capitalize;
}
.login{
    position: relative;
    left: 22%;
}
.custom_checkbox{
    margin-left: 25px;
}
.right-aling{
    text-align: right;
}
.last_release_change{
    background:#DDD;
}
.dir_rigth{
    direction: rtl;
}
textarea {
    min-height: 100px;
}
.textarea-input-wrapper {
    display: inline-block !important;
    width: 96%;
}
#traslator{
    display: inline-block;
    width: 100%;
}
.sub-menu span{
    color: #259e82;
    text-align: center;
    font-weight: bold;
    margin-left: 5px;
    margin-right: 5px;
    text-transform: uppercase;
}



.tooltip-custom {
    display: inline;
    position: relative;
    background-color: #666;
    border-radius: 40px;
    padding: 4px 8px;
    color: white;
    margin: 5px;
}

.tooltip-custom:hover {

    text-decoration: none;
}

.tooltip-custom:hover:after {
    background: #111;
    background: rgba(0,0,0,.8);
    border-radius: .5em;
    top: 1em;
    color: #fff;
    content: attr(tooltipValue);
    display: block;
    /*max-width:600px;*/
    left: 2em;
    padding: .3em 1em;
    position: absolute;
    /*text-shadow: 0 1px 0 #000;*/
    white-space:pre-line;
    z-index: 98;
}
.info-tooltip{
    display: none;
    background-color: #777;
    color: #fff;
    margin-bottom: 20px;
}

.titleLabel{
    font-size: 1.1em;
    font-weight: bold;
    border:1px solid #259e82;
    border-radius: 5px;
    padding: 10px 0px;
}
.languageLabel{
    font-size: 1.1em;
    font-weight: bold;
    color:#259e82;
}



div.custom-form-group{
    padding-left: 20px;
}
div.custom-form-group label{
    white-space: normal;
}

.action-icons{
    display: none;
    cursor:pointer;
    font-size: 30px;
    margin-left: 20px;
    vertical-align:top;
    position: relative;left: -50px;top: 50px;
}
div.column label{
    display: inline-block !important;
    max-width: 45%;
}
div.column .cke-textarea-wrapper{
    display: inline-block;
    width: 50%;
    vertical-align: top;
}
div.column .fa-pencil-square-o.action-icons{
    display:inline-block;
    left: 0px;top: 0px;
}
div.column .fa-share-square-o.action-icons{
    -moz-transform: scale(-1, 1);
    -webkit-transform: scale(-1, 1);
    -o-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1);
    left: 0px;top: 0px;
}


/*Slider*/

.slider{
    width: 600px; /*Same as width of the large image*/
    position: relative;
    /*Instead of height we will use padding*/
    padding-top: 400px; /*That helps bring the labels down*/
    margin: 0px auto 100px;
}


/*Last thing remaining is to add transitions*/
.slider>img{
    position: absolute;
    left: 0; top: 0;
    transition: all 0.5s;
    max-width: 600px;
    max-height: 400px;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.75);
}

.slider input[name='slide_switch'] {
    display: none;
}

.slider label {
    /*Lets add some spacing for the thumbnails*/
    margin: 35px 0 0 18px;
    border: 3px solid #999;

    float: left;
    cursor: pointer;
    transition: all 0.5s;

    /*Default style = low opacity*/
    opacity: 0.6;
}

.slider label img{
    display: block;

}

/*Time to add the click effects*/
.slider input[name='slide_switch']:checked+label {
    border-color: #666;
    opacity: 1;
}
/*Clicking any thumbnail now should change its opacity(style)*/
/*Time to work on the main images*/
.slider input[name='slide_switch'] ~ img {
    display: none;

}
/*That hides all main images at a 110% size
On click the images will be displayed at normal size to complete the effect
*/
.slider input[name='slide_switch']:checked+label+img {

    display: block;
}

/*
collapsable
*/
ul.collapsableTree {
    list-style-type: none;
}
label.collapsableTree{
    background-color: #259e82;
    border-radius: 5px;
    padding: 3px;
    padding-left: 25px;
    color: white;
    margin: 0;
}

li.collapsableTree {
    margin: 7px;
    padding: 0px;
    border: 1px solid rgb(160, 195, 187);
    border-radius: 10px;
}
input.collapsableTree[type=checkbox] { display: none; }
input.collapsableTree[type=checkbox] ~ ul {
    max-height: 0;
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    white-space:nowrap;
    -webkit-transition:all .2s ease;
    -moz-transition:all .2s ease;
    -o-transition:all .2s ease;
    transition:all .2s ease;

}
input.collapsableTree[type=checkbox]:checked ~ ul {
    max-height: 100%;
    max-width: 100%;
    opacity: 1;
}
input.collapsableTree[type=checkbox] + label:before{
    transform-origin:25% 50%;
    border: 8px solid transparent;
    border-width: 8px 12px;
    border-left-color: white;
    margin-left: -20px;
    width: 0;
    height: 0;
    display: inline-block;
    text-align: center;
    content: '';
    color: #AAAFAB;
    -webkit-transition:all .2s ease;
    -moz-transition:all .2s ease;
    -o-transition:all .2s ease;
    transition:all .2s ease;
    position: absolute;
    margin-top: 1px;
}
input.collapsableTree[type=checkbox]:checked + label:before {
    transform: rotate(90deg);
    margin-top: 6px;
    margin-left: -25px;
}


/*           Buttons       */
.pure-button-primary,
.button-success,
.button-error,
.button-warning,
.button-secondary {
    color: white;
    border-radius: 4px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}
.pure-button-primary{
    background: #259e82;
}


.button-success {
    background: rgb(28, 184, 65);
}

.button-error {
    background: rgb(202, 60, 60);
}

.button-warning {
    background: rgb(223, 117, 20);
}

.button-secondary {
    background: rgb(104, 17, 177);
}

.admin .content{
    border:2px solid #229479;
    border-radius: 15px;
    padding-bottom: 60px;
    max-width: 1024px;
}

