/*RESET*/
:root {
    --especialFont: 'Rubik', sans-serif;
    --regularText: #222222;
    --grayText: #565656;
    --grayBox: #efefef;
    --lightText: #9B9B9B;
    --titleText: #2E4C3E;
    --accentColor: #50BC8A;
    --activeColor: #FFCD35;
    --shadowGray: 0px 0px 5px #c7c7c7;
    --shadowGreen: 0px 0px 5px #50BC8A;
    --boxBorder: 1px solid #a8a8a8;
    --boxRadius: 5px;
    --buttonRadius: 25px;
}
* {
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    //-webkit-text-stroke-width: .05px;
	//-webkit-text-stroke-color: white;
	-webkit-font-smoothing:antialiased;
	text-rendering: optimizeLegibility;
    background-repeat: no-repeat;
}
html, body, header, main, footer, section, article, iframe, div, p, form, input, ul, ol, li, h1, h2, h3, table, th, td, figure {
	margin: 0px;
	padding: 0px;
}
object, iframe, table, img, input, button {
	outline: none;
	border: none;
}
table {
	border-collapse: collapse;
}
body {
    font-family: var(--especialFont), sans-serif;
	font-size: 13px;
	color: #000;
}
li {
	list-style: none;
}
a {
    outline: none;
    text-decoration: none;
    cursor: pointer;
}
a:hover {
    text-decoration: none;
}
.ocultar {
    display: none !important;
}
.mostrar {
    display: block !important;
}
.inputError{
    border: 2px solid #FF0000 !important;
}

/*RESET*/
header {
    height: 50px;
    width: 100%;
    position: fixed;
    box-shadow: var(--shadowGray);
    background: white;
    z-index: 100;
}
header .content {
    position: relative;
}
header .logo {
    height: 30px;
    position: absolute;
    left: 10px;
    top: 10px;
}
header .logo a.home {
    float: right;
    height: 30px;
    width: 20px;
    margin-left: 15px;
    background-image: url(../img/home.svg);
    background-position: center;
}
header .logo a.back {
    float: right;
    line-height: 30px;
    padding-left: 15px;
    margin-left: 15px;
    color: var(--grayText);
    background-image: url(../img/back.svg);
    background-position: left center;
}
header .user {
    position: absolute;
    right: 10px;
    top: 10px;
    line-height: 30px;
}
.user span, .list li .user, .details li .user, .section label .user {
    width: 30px;
    height: 30px;
    float: left;
    border-radius: 50%;
    margin-right: 5px;
    background-color: var(--accentColor);
    background-size: cover;
    background-position: center;
}
.list li .user, .details li .user, .section label .user {
    margin-left: -10px;
    margin-top: -7px;
    margin-right: 10px;
}
.user em {
    font-style: normal;
}
.user em a {
    color: var(--grayText);
    padding-left: 25px;
    background-image: url(../img/user.svg);
}
@media (max-width:500px) {
    .user em {
        display: none;
    }
}
.logout {
    width: 30px;
    height: 30px;
    float: right;
    margin-left: 10px;
    background-image: url(../img/logout.svg);
    background-size: 20px;
    background-position: center;
}
.edit {
    width: 30px;
    height: 30px;
    float: right;
    margin-left: 5px;
    background-image: url(../img/edit.svg);
    background-size: 15px;
    background-position: center;
}
header .notifications {
    width: 30px;
    height: 30px;
    float: right;
    margin-left: 5px;
    background-image: url(../img/notifications.svg);
    background-size: 18px;
    background-position: center;
}
.delete, .delete-post, .delete-mensaje {
    width: 30px;
    height: 30px;
    float: right;
    margin-left: 10px;
    background-image: url(../img/delete.svg);
    background-size: 15px;
    background-position: center;
}
.archive {
    width: 25px;
    height: 25px;
    float: right;
    margin-top: -7px;
    background-image: url(../img/remove.svg);
    background-size: 25px;
    background-position: center;
}
.alert {
    max-width: 500px;
    margin: auto;
    margin-bottom: 30px;
    padding: 10px;
    background: red;
    color: white;
    text-align: center;
    font-weight: bold;
    border-radius: var(--boxRadius);
    box-shadow: var(--shadowGray);
    border: 1px solid #fff;
}
.alert_ok {
    max-width: 500px;
    margin: auto;
    margin-bottom: 30px;
    padding: 10px;
    background: green;
    color: white;
    text-align: center;
    font-weight: bold;
    border-radius: var(--boxRadius);
    box-shadow: var(--shadowGray);
    border: 1px solid #fff;
}
nav {
    margin: 40px 0;
}
nav li {
    display: inline-block;
}
nav li a {
    box-shadow: var(--shadowGray);
    padding: 20px;
    border-radius: var(--boxRadius);
    color: var(--grayText);
    display: block;
    margin: 10px;
    min-width: 200px;
}
nav li a img {
    display: block;
    height: 50px;
    margin: auto;
    margin-bottom: 10px;
}
h1 {
    font-family: var(--especialFont);
    font-size: 30px;
    color: var(--titleText);
}
h2 {
    font-weight: 100;
    line-height: 45px;
    margin-bottom: 20px;
    color: var(--titleText);
    font-size: 20px;
    background-position: left center;
}
h2.account {
    padding-left: 35px;
    background-image: url(../img/school.svg);
    background-size: 25px;
}
h2.notifications {
    padding-left: 35px;
    background-image: url(../img/notifications.svg);
    background-size: 25px;
}
h2.users {
    padding-left: 35px;
    background-image: url(../img/users.svg);
    background-size: 25px;
}
h2.posts {
    padding-left: 35px;
    background-image: url(../img/post.svg);
    background-size: 30px;
}
h2.pinned {
    padding-left: 35px;
    background-image: url(../img/bookmark.svg);
    background-size: 15px;
}
h2.messages {
    padding-left: 40px;
    background-image: url(../img/messages.svg);
    background-size: 30px;
}
h2.calendar {
    padding-left: 40px;
    background-image: url(../img/calendar.svg);
    background-size: 30px;
}
h2.files {
    padding-left: 40px;
    background-image: url(../img/files.svg);
    background-size: 20px;
}
h2.tracking {
    padding-left: 30px;
    background-image: url(../img/tracking.svg);
    background-size: 20px;
}
h2.likes {
    padding-left: 35px;
    background-image: url(../img/like-active.svg);
    background-size: 25px;
}
h2.unuse {
    padding-left: 35px;
    background-image: url(../img/unuse.svg);
    background-size: 20px;
}
h2 em {
    color: var(--lightText);
    font-size: 14px;
}
h3 {
    font-weight: 100;
    margin-bottom: 25px;
    color: var(--titleText);
    font-size: 16px;
}
h3 a {
    font-size: 13px;
    font-weight: 600;
    color: var(--accentColor);
    margin-left: 10px;
}
p.small {
    color: var(--grayText);
    font-size: 13px;
}
p.note {
    padding: 10px;
    background-color: var(--grayBox);
    border-radius: var(--boxRadius);
    margin-bottom: 20px;
    font-size: 13px !important;
}
p.note img, p.icon img {
    margin-right: 5px;
}
p.note input {
    font-family: var(--especialFont), sans-serif;
    font-size: 13px !important;
    font-weight: bold;
    background: transparent;
    border: none;
    outline: none;
}
p.note button {
    font-family: var(--especialFont), sans-serif;
    font-weight: bold;
    float: right;
    color: var(--accentColor) !important;
    background-color: white !important;
    border-radius: var(--buttonRadius);
    background: transparent !important;
    cursor: pointer;
}
p.note button.disabled {
    color: var(--lightText) !important;
}
p.caracteres {
    text-align: right;
    margin-bottom: 10px;
    margin-top: -20px;
}
hr {
    background: #efefef;
    height: 5px;
    margin-bottom: 20px;
    border: none;
}
hr.separador {
    background: var(--accentColor);
    border-radius: 20px;
}
.gallery_ced{
    margin: 20px 0;
    position: relative;
    text-align: center;
}
.gallery_posts, .gallery_messages {
    height: 266px;
    margin: 20px 0;
    position: relative;
    text-align: center;
    background: var(--grayBox);
}
@media screen and (max-width: 650px) {
    .gallery_posts, .gallery_messages {
        height: 200px;
    }
}
#gallery figure {
    display: none;
    margin: 0;
}
#gallery figure:first-of-type {
    display: block;
}
#gallery figure:first-of-type img {
    background-position: center;
    background-size: cover;
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
#gallery span {
    position: absolute;
    left: calc(50% - 55px);
    top: calc(50% - 20px);
    height: 40px;
    padding: 0 20px 0 35px;
    color: #fff;
    line-height: 40px;
    font-size: 12px;
    font-weight: bold;
    background-image: url(../img/btn_gallery.svg);
    background-size: 18px;
    background-repeat: no-repeat;
    background-position: 10px center;
    border-radius: var(--buttonRadius);
    box-shadow: var(--shadowGreen);
    transition: background 1s ease;
}
#gallery span.postImages {
    background-color: #50BC8A;
}
form {
    margin: auto;
    padding: 25px 0;
    text-align: left;
}
form.border {
    padding: 15px 0;
    margin: 0;
    border-top: 5px solid #efefef;
    border-bottom: 5px solid #efefef;
}
form.basic {
    padding: 0;
}
form.center {
    text-align: center;
}
.login form {
    max-width: 300px;
}
.login form p a {
    text-align: center;
}
form label, p.label, span.label, .section label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--regularText);
    margin-bottom: 15px;
}
form label em {
    float: right;
    color: red;
    text-transform: none;
    font-style: normal;
    font-size: 12px;
}
form label.options em {
    float: none;
    color: var(--lightText);
    font-style: italic;
}
form input, form select, form textarea, .section select {
    width: 100%;
    height: 45px;
    display: block;
    margin-bottom: 25px;
    padding: 0 10px;
    line-height: 45px;
    font-size: 14px;
    font-family: var(--especialFont);
    color: var(--grayText);
    box-shadow: var(--shadowGray);
    border-radius: var(--boxRadius);
    border: none;
    background: white;
}
form input.search {
    background-image: url(../img/search.svg);
    background-position: right 10px center;
    background-repeat: no-repeat;
}
form input.add {
    background-image: url(../img/add.svg);
    background-position: right 10px center;
    background-repeat: no-repeat;
    background-size: 16px;
}
form input[type="file"] {
    padding-top: 12px;
    line-height: 18px;
    cursor: pointer;
    background-image: url(../img/file.svg);
    background-position: right 10px center;
    background-repeat: no-repeat;
    background-size: 14px;
}
form input[type="file"].photo {
    background-image: url(../img/camera.svg);
    background-size: 20px;
}
form input[type="date"] {
    line-height: normal;
}
form input.half, form select.half {
    width: 60%;
    display: inline-block;
}
@media (max-width:500px) {
    form input.half, form select.half {
        width: 100%;
    }
}
form .group {
    margin-bottom: 25px;
}
form .group li {
    position: relative;
}
form .group input::placeholder {
    color: var(--grayText);
}
form .group .delete {
    position: absolute;
    top: 7px;
    right: 10px;
}
form .columns li {
    display: inline-block;
}
form .columns li:first-child {
    width: 70%;
}
form .columns li:nth-child(2) {
    width: 25%;
    float: right;
}
form .columns button {
    margin: 0;
    margin-bottom: 20px;
}
form .group > li > ul {
    margin-top: -28px;
    border-top: 1px solid var(--grayBox);
    box-shadow: 0px 3px 5px #c7c7c7;
    border-radius: var(--boxRadius);
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    background: white;
    padding: 20px;
}
form select, .section select {
    -moz-appearance:none;
    -webkit-appearance:none;
    appearance:none;
    background-image: url(../img/select.svg);
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 30px;
}
form select.basic, .section select.basic {
    width: auto;
    height: 25px;
    line-height: 25px;
    box-shadow: none;
    float: right;
    margin-right: 20px;
    margin-top: -5px;
}
form textarea {
    height: 150px;
    line-height: 20px;
    padding: 10px;
}
form textarea#textoPublicar {
    height: 100px;
}
form textarea#textoDetallesPublicar {
    height: 200px;
}
form button, .button a, .modal-body button {
    height: 45px;
    max-width: 420px;
    display: block;
    padding: 10px 40px;
    margin: 20px auto;
    color: white;
    font-weight: 800;
    font-size: 13px;
    text-align: center;
    line-height: 23px;
    letter-spacing: 0px;
    font-family: var(--especialFont);
    background: var(--accentColor);
    border-radius: var(--buttonRadius);
    box-shadow: var(--shadowGreen);
    cursor: pointer;
    border: none;
}
form button.cancel, .button.cancel a, .modal-body button.cancel {
    color: var(--grayText);
    background: white;
    box-shadow: var(--shadowGray);
}
.button.clear a {
    color: red;
    background: white;
    box-shadow: var(--shadowGray);
}
form .inline {
    display: inline-block;
    margin: 0 10px;
}
form .inline.margin {
    margin-left: 0px;
}
form button.reenviar, .button a.reenviar, form.reenviar {
    float: right;
    margin: 0;
    color: black;
    background: none;
    border-radius: 0;
    box-shadow: none;
    text-align: right;
    padding: 0;
}
form button.right, .button a.right, form.right, form input.right {
    float: right;
    margin: 0;
}
form input.right {
    width: 25%;
    margin: 0;
}
form.right {
    width: 240px;
    margin: 0;
    padding: 0;
}
@media (max-width:500px) {
    form button.right, .button.right {
        float: none;
        margin: auto;
        margin-bottom: 30px;
    }
}
form > p a {
    display: block;
    font-weight: 600;
    color: var(--accentColor);
    line-height: 30px;
}
form > div {
    padding: 15px;
    box-shadow: var(--shadowGray);
    border-radius: var(--boxRadius);
    margin-bottom: 25px;
}
form > div.feed, form > div.list {
    padding: 0px;
    box-shadow: none;
    border-radius: none;
    margin-bottom: 0px;
}
form .teacher > div , form .family > div {
    margin-bottom: 25px;
}
form > div.clean {
    padding: 0;
    margin: 0;
    box-shadow: none;
}
form > div img {
    height: 50px;
}
form > div a {
    color: var(--accentColor);
    font-weight: bold;
}
form .teacher > div img, form .family > div img  {
    height: 100px;
}
form .box a {
    width: 30px;
    height: 30px;
    float: right;
    margin-left: 5px;
    background-position: center;
}
form .box a.edit {
    background-image: url(../img/edit.svg);
}
form .box a.delete {
    background-image: url(../img/delete.svg);
}
form .options {
    position: relative;
    cursor: pointer;
    user-select: none;
    padding: 20px;
    box-shadow: var(--shadowGray);
    border-radius: var(--boxRadius);
    margin-bottom: 15px;
    font-size: 13px;
    font-weight: normal;
    text-transform: inherit;
}
form .options input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
form .checkmark {
    position: absolute;
    top: 10px;
    right: 10px;
    height: 30px;
    width: 45px;
    background-image: url(../img/option.svg);
}
form .options input:checked ~ .checkmark {
    background-image: url(../img/option-checked.svg);
}
form .predictor {
    position: relative;
    margin-bottom: 30px;
}
form .predictor ul {
    width: 100%;
    position: absolute;
    top: 47px;
    padding: 10px;
    box-shadow: 0px 0px 10px #5c5c5c;
    border-radius: var(--boxRadius);
    background: white;
    z-index: 100;
}
form .predictor ul li {
    line-height: 30px;
    border-bottom: 1px solid #efefef;
    cursor: pointer;
    padding: 5px;
    background-image: url(../img/add.svg);
    background-position: center right;
    background-size: 15px;
}
form .predictor ul li img {
    margin-left: 5px;
}
footer {
    padding: 0 5%;
}
footer p {
    margin-bottom: 20px;
    text-align: center;
    color: var(--lightText);
}
footer p span {
    color: var(--regularText);
    font-size: 9px;
    display: block;
    margin-bottom: 5px;
}
footer p a {
    text-decoration: underline;
    color: var(--lightText);
}
footer em {
    font-style: normal !important;
}
.login, .main {
    padding: 5%;
    text-align: center !important;
}
.section {
    width: 90%;
    max-width: 500px;
    margin: auto;
}
.main, .section {
    padding-top: calc(50px + 2%);
    padding-bottom: 5%;
}
main .center {
    text-align: center;
}
.login img {
    display: block;
    margin: 20px auto;
}
.school img {
    width: 40%;
    max-width: 200px;
    display: block;
    margin: auto;
    border-radius: 50%;
    box-shadow: var(--shadowGray);
}
.school a {
    padding: 10px 40px;
    border: var(--boxBorder);
    display: inline-block;
    margin-top: 10px;
    border-radius: var(--boxRadius);
    color: var(--grayText);
    background-image: url(../img/school.svg), url(../img/edit.svg);
    background-position: left 10px center, right 10px center;
    background-size: 20px, 15px;
}
.school a.teacher {
    background-image: url(../img/school.svg);
    background-position: left 10px center;
    background-size: 20px;
    padding: 10px 10px 10px 40px;
}
.list {
    margin: 25px 0;
}
.list ul {
    margin-bottom: 20px;
}
.list li {
    margin: 10px 0;
    position: relative;
}
.list li.selected {
    box-shadow: var(--shadowGreen);
}
.list li a {
    display: block;
    padding: 20px;
    padding-right: 85px;
    box-shadow: var(--shadowGray);
    border-radius: var(--boxRadius);
    background-image: url(), url(../img/arrow.svg);
    background-position: left 10px center, right 15px center;
    color: var(--grayText);
}
.list li.item {
    display: block;
    padding: 20px;
    padding-right: 60px;
    box-shadow: var(--shadowGray);
    border-radius: var(--boxRadius);
    color: var(--grayText);
}
.list li.item span {
    right: 10px;
}
.list li a.teachers {
    padding-left: 50px;
    background-image: url(../img/teachers.svg), url(../img/arrow.svg);
}
.list li a.teachers.download {
    background-image: url(../img/teachers.svg), url(../img/received.svg);
}
.list li a.mixed {
    padding-left: 50px;
    background-image: url(../img/mixed.svg), url(../img/arrow.svg);
    background-size: 28px, auto;
}
.list li a.students {
    padding-left: 50px;
    background-image: url(../img/students.svg), url(../img/arrow.svg);
}
.list li a.students.download {
    background-image: url(../img/students.svg), url(../img/received.svg);
}
.list li a.events.download {
    padding-left: 50px;
    background-image: url(../img/events.svg), url(../img/received.svg);
    background-size: 25px, auto;
}
.list li a.family {
    padding-left: 50px;
    background-image: url(../img/family.svg), url(../img/arrow.svg);
}
.list li a.family.download {
    background-image: url(../img/family.svg), url(../img/received.svg);
}
.list li a.authorized {
    padding-left: 50px;
    background-image: url(../img/authorized.svg), url(../img/arrow.svg);
}
.list li a.grades {
    padding-left: 50px;
    background-image: url(../img/grades.svg), url(../img/arrow.svg);
}
.list li a.assistance {
    padding-left: 50px;
    background-image: url(../img/assistance.svg), url(../img/arrow.svg);
}
.list li a.status {
    padding-left: 50px;
    background-image: url(../img/status.svg), url(../img/arrow.svg);
}
.list li a.posts {
    padding-left: 50px;
    background-image: url(../img/post.svg), url(../img/arrow.svg);
    background-size: 30px, auto;
}
.list li a.messages {
    padding-left: 50px;
    background-image: url(../img/messages.svg), url(../img/arrow.svg);
    background-size: 25px, auto;
}
.list li a.calendar {
    padding-left: 50px;
    background-image: url(../img/calendar.svg), url(../img/arrow.svg);
    background-size: 27px, auto;
}
.list li a.records {
    padding-left: 50px;
    background-image: url(../img/records.svg), url(../img/arrow.svg);
    background-position: left 15px center, right 15px center;
}
.list li a.notifications {
    padding-left: 50px;
    background-image: url(../img/notifications.svg), url(../img/arrow.svg);
    background-size: 25px, auto;
}
.list li a.files {
    padding-left: 50px;
    background-image: url(../img/files.svg), url(../img/arrow.svg);
    background-size: 21px, auto;
}
.list li a em, .list li em, .details li em {
    color: var(--lightText);
}
.list li span {
    top: 20%;
    right: 30px;
    position: absolute;
}
label.options span {
    top: 20%;
    right: 10px;
    position: absolute;
}
label .principal {
    right: 150px !important;
    top: 38% !important;
}
form .list li span {
    right: 10px;
}
.list li span a, .options span a {
    width: 30px;
    height: 30px;
    padding: 0;
    float: left;
    margin-left: 0px !important;
    background-position: center;
    box-shadow: none;
}
li span.main {
    width: 25px;
    height: 25px;
    margin-top: -5px;
    padding: 0;
    float: right;
    background-position: center;
    box-shadow: none;
    background-image: url(../img/star.svg);
    background-size: 15px;
    margin-right: 30px;
}
.section label span.unuse, .list li span.unuse {
    width: 25px;
    height: 25px;
    margin: -3px 35px 0 0;
    float: right;
    background-position: center;
    box-shadow: none;
    background-image: url(../img/unuse.svg);
    background-size: 15px;
}
.section label span.unuse {
    margin: 3px 50px 0 0;
}
.list li span a.edit {
    background-image: url(../img/edit.svg);
}
.list li span a.delete, .options span a.delete {
    background-image: url(../img/delete.svg);
}
.list li span a.remove, .options span a.remove {
    background-image: url(../img/remove.svg);
}
.details .user {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--accentColor);
    background-size: cover;
    background-position: center;
    margin-bottom: 15px;
}
.details li {
    display: block;
    padding: 20px;
    box-shadow: var(--shadowGray);
    border-radius: var(--boxRadius);
    color: var(--grayText);
    margin-bottom: 15px;
    position: relative;
}
.details li a{
    display: block;
    background-image: url(), url(../img/arrow.svg);
    background-position: left 10px center, right 15px center;
    color: var(--grayText);
}
.details p.info {
    margin-bottom: 20px;
    padding: 20px;
    background: #f7f7f7;
    border-radius: var(--boxRadius);
}
.details p.info a {
    color: var(--accentColor);
    font-weight: bold;
}
.details li .status {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 25px;
}
.feed, .chats, .events, .record {
    margin: 25px 0;
}
.feed > li, .chats > li, .events > li, .record > li, .event .detail, .post .detail {
    margin-bottom: 25px;
    padding: 25px 15px 15px 15px;
    position: relative;
    color: var(--grayText);
    box-shadow: var(--shadowGray);
    border-radius: var(--boxRadius);
}
.event .note {
    display: block;
    padding: 10px;
    background-color: var(--grayBox);
    border-radius: var(--boxRadius);
    margin: 20px 0;
    font-size: 13px !important;
    color: black;
}
.event .note img {
    margin-right: 5px;
}
.feed li i {
    font-size: 18px;
    margin-top: -5px;
    margin-right: 10px;
    margin-bottom: 10px;
}
.chats > li, .events > li {
    padding-right: 30px;
    background-image: url(../img/arrow.svg);
    background-position: right 15px top 20px;
}
.chats > li a, .events > li a, .feed > li a {
    display: block;
    color: var(--grayText);
}
.feed > li em, .chats > li em, .events > li em, .record > li em, .message > em, .event > em, .post > em {
    color: var(--lightText);
}
.events > li em {
    font-size: 12px;
}
.feed > li .user, .chats > li .user, .events > li .user, .record > li .user, .message .user, .event .user, .post .user {
    width: 29px;
    height: 29px;
    float: left;
    border-radius: 50%;
    margin-right: 10px;
    margin-top: -10px;
    background-color: var(--accentColor);
    background-size: cover;
    background-position: center;
    border: 1px solid var(--grayBox);
}
.chats > li .file, .chats > li .photos, .events > li .file{
    float: left;
    background-size: contain;
    margin-right: 5px;
    margin-top: -2px;
}
.chats > li .file, .events > li .file {
    width: 15px;
    height: 15px;
    background-image: url(../img/file.svg);
}
.chats > li .photos {
    width: 17px;
    height: 17px;
    background-image: url(../img/camera.svg);
}
.feed > li a.link, .message > li a.link, .event .detail > a.link {
    display: block;
    border-top: 1px solid var(--grayBox);
    border-bottom: 1px solid var(--grayBox);
    margin-top: 15px;
    margin-bottom: 5px;
    line-height: 45px;
    color: var(--accentColor);
    font-weight: bold;
    font-size: 13px;
    text-align: left;
    background-image: url(), url(../img/arrow.svg);
    background-position: left center, right center;
}
.feed > li a.detail{
    background-image: url(), url(../img/more.png);
    background-position: left center, right bottom 10px;
}

.message, .event, .post {
    color: var(--grayText);
    margin-bottom: 30px;
    padding-top: 25px;
}
.event {
    padding-top: 10px;
}
.message .detail, .event .detail, .post .detail {
    margin: 15px 0;
    display: block;
    font-size: 16px;
    padding: 15px;
}
.message .detail img {
    height: auto;
}
.feed .text, .chats .text, .events .text, .record .text {
    width: 100%;
    position: relative;
    display: block;
    padding: 20px 0;
    font-size: 16px;
}
.chats .text, .events .text, .record .text {
    padding-bottom: 10px;
}
.events .text .icons {
    float: right;
}
.feed .text {
    margin-bottom: 10px;
    border-bottom: 1px solid var(--grayBox);
}
.feed .detail {
    margin-top: 10px;
    margin-bottom: 10px;
}
.feed .text em {
    position: absolute;
    bottom: -30px;
    right: 0;
    line-height: 20px;
    font-size: 13px;
    font-style: normal;
    color: var(--grayText);
}
.feed .text em.tooltip {
    color: var(--accentColor);
    text-align: right;
    font-weight: bold;
    cursor: pointer;
}
.chats .text em {
    float: right;
    margin-top: 10px;
    margin-right: -25px;
}
.feed .like {
    height: 20px;
    display: block;
    padding-left: 30px;
    line-height: 20px;
    background-image: url(../img/like.svg);
}
.feed .like.active {
    background-image: url(../img/like-active.svg);
    font-weight: bold;
    color: var(--accentColor);
}
.feed > a, .chats > a {
    text-align: center;
    display: block;
    font-weight: 600;
    color: var(--accentColor);
}
.feed .edit, .feed .delete, .chats .delete, .events .delete, .events .edit, .record .delete, .record .edit {
    margin-top: -10px;
    margin-left: 0px;
}
.chats .new, .chats .received, .chats .sent, .chats .replied, .chats .replied_me {
    width: 10px;
    height: 10px;
    float: right;
    margin: 0 5px;
    background-size: cover;
}
.chats .new {
    background-image: url(../img/new.svg);
    background-size: 7px;
}
.chats .received {
    background-image: url(../img/received.svg);
}
.chats .sent {
    background-image: url(../img/sent.svg);
}
.chats .replied {
    background-image: url(../img/replied.svg);
    background-size: 10px;
}
.chats .replied_me {
    background-image: url(../img/replied_me.svg);
    background-size: 10px;
}
.feed p, .chats p, .events p {
    margin-bottom: 20px;
    font-size: 12px;
}
.slides {
    position: relative;
    margin-bottom: 20px;
}
.slides img {
    width: 100%;
}
.slides ol {
    width: 100%;
    position: absolute;
    bottom: 5%;
    text-align: center;
}
.slides .dot {
    height: 10px;
    width: 10px;
    margin: 1px;
    background-color: white;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}
.slides .active {
    background-color: var(--accentColor);
}
.slides .fade {
    animation-name: fade;
    animation-duration: 1.5s;
}
@keyframes fade {
    from {
        opacity: .4
    }
    to {
        opacity: 1
    }
}
.calendars {
    padding: 20px 15px;
    position: relative;
    color: var(--grayText);
    box-shadow: var(--shadowGray);
    border-radius: var(--boxRadius);
    margin-bottom: 20px;
}
.calendars .month {
    padding: 0px 20px 20px 20px;
    text-align: center;
}
.calendars .month ul li {
    font-size: 16px;
    text-transform: uppercase;
}
.calendars .month .prev, .calendars .month .next {
    width: 8px;
    height: 15px;
    background-size: cover;
}
.calendars .month .prev {
    float: left;
    background-image: url(../img/back.svg);
}
.calendars .month .next {
    float: right;
    background-image: url(../img/arrow.svg);
}
.calendars .month .title{
    text-transform: uppercase;
}
.calendars .weekdays {
    padding: 10px 0;
}
.calendars .weekdays li {
    display: inline-block;
    width: 13.6%;
    text-align: center;
    color: black;
}
.calendars .days {
    padding: 10px 0;
    margin: 0;
}
.calendars .days li {
    display: inline-block;
    width: 13.6%;
    text-align: center;
    margin: 5px 0;
    font-size: 12px;
    color: var(--grayText);
    cursor: pointer;
}
.calendars .days li .today, .calendars .days li .todayFin, .calendars .days li .active, .calendars .days li .selected {
    padding: 5px;
    color: white !important;
    border-radius: 50%;
    width: 25px;
    display: inline-block;
}
.calendars .days li .today, .calendars .days li .todayFin {
    background-color: var(--accentColor);
}
.calendars .days li .active {
    background-color: var(--activeColor);
}
.calendars .days li .selected {
    background-color: var(--grayBox);
    color: var(--grayText) !important;
}
@media screen and (max-width:720px) {
    .calendars .weekdays li,
    .calendars .days li {
        width: 13.1%;
    }
}
@media screen and (max-width: 420px) {
    .calendars .weekdays li,
    .calendars .days li {
        width: 12.5%;
    }
    .calendars .days li .active {
        padding: 2px;
    }
}
@media screen and (max-width: 290px) {
    .calendars .weekdays li,
    .calendars .days li {
        width: 12.2%;
    }
}
.grade h2 {
    font-size: 16px;
    font-weight: bold;
    border-bottom: 2px solid var(--grayBox);
}
.grade h2 strong {
    color: var(--accentColor);
    float: right;
}
.grade li {
    box-shadow: none;
    padding: 0;
    line-height: 30px;
}
.grade li:last-child {
    border-bottom: 2px solid var(--grayBox);
    padding-bottom: 15px;
    margin-bottom: 25px;
}
.grade li em, .grade li span {
    float: right;
    margin: 0 5px;
    font-style: normal;
}
.grade li em strong {
    color: var(--accentColor);
}
.filters {
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadowGray);
    border-radius: var(--boxRadius);
}
.filters span {
    height: 20px;
    line-height: 20px;
    display: block;
    padding: 0 30px;
    color: var(--grayText);    
    font-weight: bold;
    background-image: url(../img/filters.svg), url(../img/accordion.svg);
    background-position: left center, right center;    
    background-size: 20px, auto;
    cursor: pointer;
}
.filters form {
    display: none;
    margin-top: 30px;
}
.pagination {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}
.pagination li, .pagination ul {
    display: inline-block;
    vertical-align: top;
}
.pagination li a {
    display: block;
    height: 30px;
    line-height: 30px;
    padding: 0 10px;
    border-radius: 20px;
    color: var(--grayText);
    font-weight: bolder;
    margin: 0 5px;
    box-shadow: var(--shadowGray);
    background-size: 10px;
    background-position: center;
    background-image: none;
}
.pagination li a.active {
    background-color: var(--accentColor);
    box-shadow: var(--shadowGreen);
    color: white;
}
.pagination li a.prev {
    background-image: url(../img/back.svg);
    box-shadow: none;
}
.pagination li a.next {
    background-image: url(../img/arrow.svg);
    box-shadow: none;
}
.pagination li.more{
    vertical-align: bottom;
    font-weight: bold;
    font-size: 18px;
}
.tooltip {
    position: relative;
    display: inline-block;
}
.tooltip .tooltiptext {
    visibility: hidden;
    width: 150px;
    background-color: #555;
    color: #fff;
    text-align: center;
    line-height: 17px;
    border-radius: 6px;
    padding: 10px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -75px;
    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;
}
.modal-dialog {
    width: 90%;
    max-width: 800px;
    margin: 25px auto;
}
.modal-dialog .buttons button {
    display: inline;
    margin: 10px;
}

/* Fecha de evento y de fijado hasta */
input.fechaEvento, input.fechaFijadoHasta {
    position: relative;
}

input.fechaEvento:before, input.fechaFijadoHasta:before {
    position: absolute;
    content: attr(data-date);
    display: inline-block;
}

input.fechaEvento::-webkit-datetime-edit, input.fechaFijadoHasta::-webkit-datetime-edit, input::-webkit-inner-spin-button, input::-webkit-clear-button {
    display: none;
}

input.fechaEvento::-webkit-calendar-picker-indicator, input.fechaFijadoHasta::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    color: black;
    opacity: 1;
}

.pswp img {
    max-width: none;
    object-fit: contain;
}

.pswp__img--placeholder--blank{
    display: none !important;
}