@import url('https://fonts.googleapis.com/css?family=Karla:700|Lato:300,400&display=swap');

:root{
    --black: #000;
    --bg-color: #f4f4f4;
    --bg-header: var(--white);
    --border-color: #979797;
    --bg-sp: #FCFCFC;
    --gray-light: #D8D8D8;
    --title-color: #4A4A4A;
    --txt-color: var(--black);
    --bg-footer: var(--title-color);
    --red-secondary: #E91C71;
    --blue-secondary: #1899CD;
    --size-big: 30px;
    --size-normal: 18px;
    --size-normal-less: 16px;
    --size-small: 14px;
    --size-msmall: 12px;
    --size-xsmall: 10px;
    --size-medium: 22px;
    --size-medium-less: 20px;
    --container-max-width: 950px;
    --container-md-width: 720px;
    --txt-family: 'Lato', sans-serif;
    --title-family: 'Karla', sans-serif;
}

@keyframes messageAppear {
    0% { height: 0;padding: 0; overflow: hidden; }
    90% { height: 100px; padding: 0.6rem; overflow: hidden; }
    100% { height: auto;padding: 0.7rem; overflow: unset; }
}

body{
    font-family: var(--txt-family);
    font-size: var(--size-normal);
    background: url('../img/pole-innovation.svg') no-repeat -20px 140px,  url('../img/polygones.svg') no-repeat 1100px 200px, #f4f4f4;
}
h1, h2, h3, h4, h5, h6{
    font-family: var(--title-family);
    font-weight: 700;
}
#header{
    background-color: var(--bg-header);
    padding: .25rem 0;
    font-size: var(--size-normal-less);
}
#header a, #header a:hover, #header a:focus{
    color: var(--black);
    text-decoration: none;
}
.baseline{
    font-size: var(--size-normal-less);
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    color: var(--title-color);
}
.side-menu{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.notify-bell{
    display: inline-block;
    margin-right: 1rem;
}
.dropdown-toggle.notify-bell::after{
    content: "";
    display: none;
}
.nb-ntf{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: var(--red-secondary);
    color: var(--white);
    font-size: var(--size-xsmall);
    height: 15px;
    min-width: 15px;
    padding: .1rem .2rem;
    border-radius: 50%;
    position: relative;
    top: -.85rem;
}
.dropdown-menu.menu-small .dropdown-item{
    font-size: var(--size-msmall);
}
.round-img{
    height: 40px;
    width: 40px;
    border-radius: 100%;
    overflow: hidden;
    display: inline-block;
    background-color: var(--bg-footer);
}
.round-img img{
    width: 100%;
}
.filters{
    display: flex;
    font-size: var(--size-normal-less);
    align-items: center;
    padding: 0;
    background: #fafafa;
    box-shadow: 0 0 3px rgba(0,0,0,0.1);
    border-radius: 5px;
}
.lbl-filter{
    font-size: var(--size-normal-less);
    padding: 0.5rem 1.5rem;
    color: #6c757d;
    border-radius: 5px 0 0 5px;
    margin-right: 0.5rem;
    border-right: 1px solid #ddd;
    background: #e9ecef;
}
.btn-like{
    display: inline-block;
    padding: .125rem 1rem;
    border-radius: 14px;
    text-decoration: none;
    color: #aaa;
    border: 1px solid #ddd;
    margin: 0 0.5rem;
}
.btn-like:hover, .btn-like:focus{
    color: var(--red-secondary);
    border-color: var(--red-secondary);
    text-decoration: none;
}

.btn-like.active{
    background-color: #e91c7d08;
    color: var(--red-secondary);
    border-color: #e91c7d60;
}
.btn-like.active::before{
    font-family: FontAwesome;
    content: "\f00c ";
    padding-right: 0.5rem;
    display: inline-block;
    width: 1.2rem;
    text-align: center;
}
.btn-like.active:hover::before{
    content: "\f00d ";
}


@media (min-width: 992px) {
    .container.n-container {
      max-width: var(--container-max-width);
    }
  }

  @media (min-width: 1200px) {
    .container.n-container {
      max-width: var(--container-max-width);
    }
  }

.space-between-md{
    justify-content: space-between;
}
.justify-center{
    justify-content: center;
}
.c-col{
    padding: 0 15px;
    margin: 0;
    position: relative !important;
    min-height: 1px;
}
.sx-l{
    width: 644px;
}
.as-r{
    width: 270px;
}
.space-card, .side-card{
    background-color: var(--bg-header);
    border: none;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: .85rem 1.5rem;
    margin-bottom: 2rem;
}
.space-card{
    display: flex;
    flex-wrap: nowrap;
    padding: 1.5rem 3rem .85rem 1.5rem;
    background-color: var(--bg-sp);

}
.sp-img-side{
    width: 17.5%;
}
.space-caption{
    width: 82.5%;
}
.sp-title{
    font-size: var(--size-medium);
    font-weight: 700;
    color: var(--title-color);
}
.sp-txt-in{
    font-weight: 300;
}
.sp-footer{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: .85rem 0;
    margin-top: 1.5rem;
    border-top: 1px dotted var(--border-color);
}
.sp-footer-it{
    font-size: var(--size-normal-less);
    font-weight: 300;
    color: var(--title-color);
}
a.sp-footer-it:hover, a.sp-footer-it:focus{
    color: var(--title-color);
    text-decoration: underline;
}
.side-card{
    text-align: center;
}
.sc-title{
    font-size: var(--size-medium-less);
}
.side-card .round-img{
    height: 77px;
    width: 77px;
}
.sc-title.blue-ln, .sc-title.blue-ln-lg{
    text-transform: uppercase;
    text-align: center;
}
.sc-title.blue-ln-lg{
    font-size: var(--size-medium);
    margin-top: 1.5rem;
}
.sc-title.blue-ln::after, .sc-title.blue-ln-lg::after{
    content: "";
    display: block;
    height: 1px;
    width: 50px;
    background-color: var(--blue-secondary);
    margin: auto;
}
.sc-title.blue-ln-lg::after{
    width: 92px;
    margin-top: .75rem;
}
.side-card i{
    color: var(--blue-secondary);
}
.side-card a{
    color: var(--black);
    text-decoration: none;
}
.side-card a:hover, .side-card a:focus{
    color: var(--black);
    text-decoration: underline;
}
.sc-elt{
    display: block;
    margin: 0;
    line-height: 1.7;
}
.side-card > img{
    max-height: 55px;
    max-width: 155px;
}

/*.pagination*/
.pagination > .page-item > .page-link {
    padding: 0;
    width: 25px;
    height: 25px;
    border: none;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 .3rem;
    background-color: var(--gray-light);
    color: var(--white);
}
.pagination .page-item .page-link:hover{
    background-color: var(--red-secondary);
    color: var(--white);
}
.pagination .page-item.active .page-link, .pagination .page-item.active .page-link:hover{
    background-color: var(--red-secondary);
    color: var(--white);
}
.pagination .page-item:last-child .page-link, .pagination .page-item:first-child .page-link{
    border: none;
    background-color: transparent !important;
    color: var(--title-color);
}

#footer{
    padding: 3rem 0 1rem;
    background-color: var(--bg-footer);
    color: var(--white);
}
#footer a{
    color: var(--white);
    text-decoration: none;
}

.onepage-footer{
    padding:40px 0 25px 0;
    margin-top: 20px;
    background-color:#282828;
}

.onepage-footer p{
	color:#777;
}

.onepage-footer .op-contact-social li {
    width: auto;
}

.op-contact-social{
	float:right;
}

.op-contact-social li{
	display:inline-block;
	list-style:none;
	padding:10px;
	background-color:#333;
	margin-left:10px;
	width:40px;
	height:40px;
	text-align:center;
	-moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.op-contact-social li:hover{
	background-color:#555;
}

.op-contact-social li a{
	font-size:18px;
	color:#666;
	-moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.op-contact-social li:hover a{
	color:#FFF;
}

.op-contact-social{
	margin-top:20px;
	float:left;
	padding-left:0px;
}

.center-logo{
    display: flex;
    justify-content: center;
}
.center-logo a{
    display: inline-block;
    margin-bottom: -5rem;
}
.footer-sd-l{
    display: flex;
}
.footer-sd-r{
    display: flex;
    justify-content: flex-end;
}
.footer-sd-l > a, .footer-sd-r > a{
    padding-right: 2rem;
}

.copy{
    text-align: center;
    margin-top: 3rem;
}

.dwnl {
    text-align: left;
}

.dwnl > li::before{
    content: "\e085";
    font-family: 'simple-line-icons';
    display: inline-block;
    margin-right: .5rem;
    text-align: left;
}

.big-title{
    font-size: var(--size-big);
}
.txt-in-bl{
    font-size: var(--size-normal);
    font-weight: 400;
    color: var(--black);
}
.ib-footer{
    display: flex;
    justify-content: flex-end;
    padding: .5rem .35rem;
    margin-top: 1.75rem;
    border-top: 1px solid var(--border-color);
}
.nw-com, .std-com{
    padding: .7rem 0;
    margin-bottom: 1rem;
    border-radius: 10px;
}
.nw-com{
    background-color: var(--bg-header);
    margin-bottom: 2rem;
}
.row-in{
    display: flex;
    flex-wrap: nowrap;
}
.com-side-l{
    width: 12.5%;
    padding: .2rem 1rem;
    text-align: center;
}
.com-side-r{
    width: 87.5%;
    padding: .2rem 1rem;
}
.com-side-r .badge{
    font-weight: normal;
}

.nw-com-txt{
    height: 100%;
    color: var(--border-color);
    display: block;
    width: 100%;
    border: none;
    background-color: transparent;
    font-size: var(--size-normal-less);
    cursor: pointer;
}
.nw-com-txt:focus{
    outline: 0;
    box-shadow: none;
    border: none;
}

.new-message{
    animation: messageAppear 0.4s linear;
}


.sx-l.sx-page{
    width: 590px;
}
.std-com{
    border-top: 3px solid var(--blue-secondary);
    background-color: var(--white);
    color: var(--title-color);
    margin-right: 2rem;
    border-radius: 0 20px 20px 20px;
}
.com-title{
    font-weight: 700;
    font-size: var(--size-normal-less);
    font-family: var(--txt-family) !important;
    color: var(--black);
}

.com-txt-in{
    font-size: var(--size-normal-less);
    padding: 0 1.5rem 1.35rem 0;
}
.com-footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--gray-light);
    padding: .35rem 1.35rem;
    font-size: var(--size-normal-less);
}
.com-footer a, .com-footer a:hover, .com-footer a:focus, .com-footer{
    color: var(--white);
    text-decoration: none;
}
.com-footer-it{
    margin-right: 1rem;
    display: inline-block;
}
a.com-footer-it{
    color: #6c757d !important;
}
.std-com.cmn{
    border-color: var(--gray-light);
    margin-right: 0rem;
    margin-left: 2rem;
    border-radius: 20px 0 20px 20px;
}
.std-com.cmn .com-footer a, .std-com.cmn .com-footer a:hover, .std-com.cmn .com-footer a:focus, .std-com.cmn .com-footer{
    color: var(--border-color);
}
.resp-com{
    background-color: var(--gray-light);
    margin: .5rem 1.5rem;
    padding-top: 1rem;
    border-radius: 10px;
}
.content-form{
    padding: 1.5rem 0;
}
.btn, .form-control{
    border-radius: 10px;
}
.btn{
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}
.modal-content{
    border-radius: 1.2rem;
}
label{
    color: var(--title-color);
}
.form-phrase{
    text-align: center;
    font-size: var(--size-normal-less);
    margin-top: 1rem;
}
.form-row > .col, .form-row > [class*="col-"]{
    padding-left: 15px;
    padding-right: 15px;
}

.file-hidden{
    display: none;
}
label[for="nothing"]{
    opacity: 0;
}

.btn-light{
    background-color: var(--white);
}
.form-control.fl{
    display: flex;
    justify-content: space-around;
    align-items: center;
}
#avatarModal .modal-footer{
    justify-content: center;
}

/*Media Queries*/
/* Large devices */
@media screen and (max-width: 1199px) {

}

/* Medium devices */
@media screen and (max-width: 991px) {
    .sx-l{
        width: 500px;
    }
    .sx-l.sx-page{
        width: 500px;
    }
    .as-r{
        width: 200px;
    }
    .center-logo{
        display: flex;
        justify-content: center;
    }
    .center-logo a{
        margin-bottom: 2rem;
    }
    .sc-title.blue-ln, .dwnl{
        font-size: var(--size-normal-less);
    }
}

/* small devices */
@media screen and (max-width: 767px) {
    #header{
        padding: .5rem 0;
    }
    .logo-m{
        text-align: center;
        margin-bottom: .9rem;
    }
    .baseline{
        display: inline-block;
    }
    .side-menu{
        justify-content: center;
    }

    .sx-l, .as-r{
        width: 100% !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .footer-sd-l, .footer-sd-r{
        display: block;
    }
    .footer-sd-l a, .footer-sd-r a{
        display: block;
        width: 100%;
        padding: .5rem .35rem;
        text-align: center;
    }
    .footer-sd-r{
        display: block;
        text-align: center;
    }
}
/*Extra small*/
@media screen and (max-width: 575px){
    .filters{
        display: flex;
        justify-content: center !important;
        flex-wrap: wrap;
    }
    .lbl-filter{
        width: 100%;
        margin: .7rem 0;
        text-align: center;
    }
    .com-footer-it, .com-datetime{
        font-size: var(--size-msmall);
    }
    .com-footer-it{
        margin: 0;
    }
    .com-footer{
        justify-content: center;
        flex-wrap: wrap;

    }
    .left-footer{
        width: 100%;
        display: flex;
        justify-content: space-between;
        margin-bottom: .5rem;
    }
    .center-logo img{
        max-width: 150px;
    }

}

@media screen and (max-width: 480px){

}

.editor-wrapper {
    padding: .35rem 1.35rem;
    width: 100%;
}

.ck-editor {
    color: var(--title-color);
    --ck-border-radius: 10px;
}

.message-update-info {
    color: var(--white);
    display: flex;
    justify-content: flex-end;
    font-size: var(--size-normal-less);
    flex-direction: column;
    align-items: flex-end;
}

.message-update-info.cmn{
    color: var(--border-color);
}

.message-header {
     display: flex;
    justify-content: space-between;
}

.message-own-reply-color {
    color: var(--title-color);
}

.message-button-row {
    display: flex;
    justify-content: space-between;
    margin-top: 10px
}

.btn-message-send {
    background-color: #42ad4a;
    color: var(--white);
}

.message-load-more-button {
    margin-bottom: 20px;
    background-color: #42ad4a;
}

.message-deleted {
    background-color: #a0a0a0;
}

.section-breadcrumb {
    background: #e9ecef;
}
.breadcrumb{
    margin-bottom: 0;
}
.breadcrumb-row {
    flex-grow: 1;
}
.breadcrumb a{
    color: #6c757d;
}
.breadcrumb a:hover{
    color: #4a4a4a;
}
.sp-title a {
    color: var(--title-color);
    text-decoration: none;
    text-decoration-color: var(--title-color);
}

.sp-title a:hover{
    color: var(--title-color);
    text-decoration-line: underline;
    text-decoration-color: var(--title-color);
}

.list-spaces .space-card{
    padding: 0;
    align-items: stretch;
    overflow: hidden;
}
.list-spaces .sp-img-side{
    width: 35%;
}
.list-spaces .space-caption{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 1rem 0;
}

.display-small .space-card{
    margin-bottom: 0.5rem;
}
.display-small .space-caption{
    padding: 0.5rem 0.5rem 0;
}
.display-small .sp-title{
    font-size: var(--size-normal);
}
.display-small .sp-img-side{
    max-width: 80px;
}
.display-small .sp-txt-in{
    display: none;
}
.display-small .sp-footer{
    border: none;
    margin-top: 0;
    padding-top: 0;
}
.display-mode{
    float: right;
    align-self: center;
}
.display-mode .btn {
    padding: 0.2rem 1rem;
}

#spaceTab{
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 3px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}


#spaceTab .nav-item{
    margin-bottom: 0;
}
#spaceTab .nav-item a{
    margin-right: 1rem;
    color: #6c757d;
    outline: 0;
}
#spaceTab .nav-link{
    border: 3px solid #FFF;
    border-width: 0 0 3px 0;
}
#spaceTab .nav-link.active, #spaceTab .nav-link.active:hover{
    border: 3px solid #1899cd;
    border-width: 0 0 3px 0;
}
#spaceTab .badge-info{
    background-color:  #1899cd;
}

#spaceTab .nav-link:hover{
    border: 3px solid #CCC;
    border-width: 0 0 3px 0;
}

.downloadable-file{
    width: 100%;
    margin-bottom: 1rem;
}

.file-picture{
    background: #aaa;
    position: relative;
    color: #fff;
    text-align: center;
    max-height: 110px;
    height: 110px;
}
.file-picture .badge{
    position: absolute;
    bottom: 15%;
    right: 25%;
    background-color: #1899cd;
}
.downloadable-file a, .downloadable-file a:hover{
    font-size:16px;
    text-decoration: none;
}
.downloadable-file .card-body{
    padding: 0.8rem;
}
.downloadable-file .card-text{
    font-size: 14px;
    margin: 0;
    line-height: 1rem;
}
.downloadable-file h5{
    margin-bottom: 0.3rem;
}
