@import url('https://fonts.googleapis.com/css?family=Montserrat+Alternates:400,700|Montserrat:400,700|Open+Sans:300,400,400i,600,700,800');
/** Open Sans **/
/** Light */
@font-face {
  font-family: "Open Sans";
  font-weight: 300;
  src: url("https://d28dhcwclph1gf.cloudfront.net/css_common/propios/fonts/Open_Sans/OpenSans-Light.woff2");
  font-style: light;
}

/** Regular */
@font-face {
  font-family: "Open Sans";
  font-weight: 400;
  src: url("https://d28dhcwclph1gf.cloudfront.net/css_common/propios/fonts/Open_Sans/OpenSans-Regular.woff2");
  font-style: regular;
}

@font-face {
  font-family: "Open Sans";
  font-weight: 600;
  src: url("https://d28dhcwclph1gf.cloudfront.net/css_common/propios/fonts/Open_Sans/OpenSans-SemiBold.woff2");
  font-style: semibold;
}

/** Bold */
@font-face {
  font-family: "Open Sans";
  font-weight: 700;
  src: url("https://d28dhcwclph1gf.cloudfront.net/css_common/propios/fonts/Open_Sans/OpenSans-Bold.woff2");
  font-style: bold;
}

* {
  font-family: "Open Sans";
}

.montserrat {
  font-family: 'Montserrat Alternates', sans-serif;
}

.openSans {
  font-family: 'Open Sans', sans-serif;
}

.montserratOriginal {
  font-family: 'Montserrat', sans-serif;
}

.text {
  font-size: 1rem;
  font-weight: 400;
}

.text.title {
  font-size: 3.2rem;
}

.text.size-xxl {
  font-size: 4.5rem;
}

.text.size-xl2 {
  font-size: 3rem;
}

.text.size-xl {
  font-size: 2.5rem;
}

.text.size-l {
  font-size: 2.2rem;
}

.text.size-md2 {
  font-size: 2rem;
}

.text.size-md {
  font-size: 1.8rem;
}

.text.size-sm2 {
  font-size: 1.5rem;
}

.text.size-sm {
  font-size: 1.2rem;
}

.text.size-s {
  font-size: 1.1rem;
}

.text.size-xs {
  font-size: .8rem;
}

.text.semibold {
  font-weight: 600;
}

.text.bold {
  font-weight: 700;
}

.text.medium {
  font-weight: 500;
}

.text.light {
  font-weight: 400;
}

.text.capital {
  text-transform: capitalize;
}

.text.uppercase {
  text-transform: uppercase;
}

.text.italic {
  font-style: italic;
}

.text.underline {
  text-decoration: underline !important;
}

.text.through {
  text-decoration: line-through;
}

.text.elipsis {
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  text-align: left;
  word-wrap: break-word;
}

.text.elipsis-two-lines {
  display: block;
  display: -webkit-box;
  max-width: 100%;
  max-height: 4rem;
  margin: 0 auto;
  line-height: 1;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 2rem;
  margin-top: 1px;
}

.text.break-word {
  overflow-wrap: break-word;
}

.text.text-shadow {
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
}

.text.text-shadow-white {
  text-shadow: 3px 3px 3px rgba(255, 255, 255, 0.3);
}

.text.text-white {
  color: #fff;
}

.text.text-gray {
  color: #808080;
}

.text.text-darkGray {
  color: #707070;
}

.text.text-black {
  color: #000;
}

.text.text-red, .text.alert-error {
  color: #fa225b;
}

.text.text-blue {
  color: #7a89ab;
}

.text.text-green, .text.alert-success {
  color: #62A215;
}

.text.text-darkGreen {
  color: #053a05;
}

.text.text-classonlive-green {
  color: #62A215;
}

.text.text-classonlive-orange {
  color: #FF751A;
}

.text.text-classonlive-gray {
  color: #424e4f;
}

.text.text-blog-gray {
  color: #cccccc;
}

.text.center {
  text-align: center;
}

.text.left {
  text-align: left;
}

.text.right {
  text-align: right;
}

.modal .modal-dialog {
  max-width: 600px;
  margin: 30px auto;
  height: 100%;
  top: 2rem;
  min-width: 50%;
}

.modal .modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.modal .modal-header .modal-title {
  width: 100%;
}

.modal .modal-header.column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.modal .center {
  text-align: center;
}

.modal .modal-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.modal .modal-footer a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.modal .modal-footer .btn {
  border: 0px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  letter-spacing: 1px;
}

.modal .modal-footer .btn-orange {
  background: #FF751A;
}

.modal .modal-footer .btn-orange:hover {
  background: #f46200;
}

.modal .modal-footer .btn-outline-secondary {
  border: 1px solid transparent;
  border-color: #6c757d;
}

/*loader principal*/
#backg {
  background: #b0c4de repeat scroll;
  /* These three lines are for transparency in all browsers. */
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  opacity: .5;
  height: 10000px;
  left: 0;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 999;
}

#loader {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 999990;
  width: 100px;
  height: 100px;
  margin: -75px 0 0 -75px;
  border: 16px solid #fff;
  border-radius: 50%;
  border-top: 16px solid #00de00;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/* Add animation to "page content" */
.animate-bottom {
  position: relative;
  -webkit-animation-name: animatebottom;
  -webkit-animation-duration: 1s;
  animation-name: animatebottom;
  animation-duration: 1s;
}

@-webkit-keyframes animatebottom {
  from {
    bottom: -100px;
    opacity: 0;
  }
  to {
    bottom: 0px;
    opacity: 1;
  }
}

@keyframes animatebottom {
  from {
    bottom: -100px;
    opacity: 0;
  }
  to {
    bottom: 0;
    opacity: 1;
  }
}

/*fin loader*/
.loader {
  background: white repeat scroll;
  /* These three lines are for transparency in all browsers. */
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  opacity: 1;
  height: 100%;
  left: 0;
  margin: 0;
  padding: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99998;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.cssload-loader {
  z-index: 99999;
  display: block;
  height: 6em;
  width: 6em;
  background-color: #338899;
  border-radius: 4.5em 4.5em 4.5em 4.5em;
  -o-border-radius: 4.5em 4.5em 4.5em 4.5em;
  -ms-border-radius: 4.5em 4.5em 4.5em 4.5em;
  -webkit-border-radius: 4.5em 4.5em 4.5em 4.5em;
  -moz-border-radius: 4.5em 4.5em 4.5em 4.5em;
  box-shadow: inset 0 0 0 0.5em #eceae0;
  -o-box-shadow: inset 0 0 0 0.5em #eceae0;
  -ms-box-shadow: inset 0 0 0 0.5em #eceae0;
  -webkit-box-shadow: inset 0 0 0 0.5em #eceae0;
  -moz-box-shadow: inset 0 0 0 0.5em #eceae0;
  background: linear-gradient(-45deg, #B3B3B3, #B3B3B3 50%, #CCCCCC 50%, #CCCCCC);
  background: -moz-linear-gradient(-45deg, #B3B3B3, #B3B3B3 50%, #CCCCCC 50%, #CCCCCC);
  background-blend-mode: multiply;
  border-top: 5px solid #B3B3B3;
  border-left: 5px solid #B3B3B3;
  border-bottom: 5px solid #CCCCCC;
  border-right: 5px solid #CCCCCC;
  animation: cssload-roto 1.15s infinite linear;
  -o-animation: cssload-roto 1.15s infinite linear;
  -ms-animation: cssload-roto 1.15s infinite linear;
  -webkit-animation: cssload-roto 1.15s infinite linear;
  -moz-animation: cssload-roto 1.15s infinite linear;
}

.cssload-loader.classonlive {
  background-color: #338899;
  border-radius: 4.5em 4.5em 4.5em 4.5em;
  -o-border-radius: 4.5em 4.5em 4.5em 4.5em;
  -ms-border-radius: 4.5em 4.5em 4.5em 4.5em;
  -webkit-border-radius: 4.5em 4.5em 4.5em 4.5em;
  -moz-border-radius: 4.5em 4.5em 4.5em 4.5em;
  box-shadow: inset 0 0 0 0.5em #eceae0;
  -o-box-shadow: inset 0 0 0 0.5em #eceae0;
  -ms-box-shadow: inset 0 0 0 0.5em #eceae0;
  -webkit-box-shadow: inset 0 0 0 0.5em #eceae0;
  -moz-box-shadow: inset 0 0 0 0.5em #eceae0;
  background: linear-gradient(-45deg, #00C900, #00C900 50%, #01DE01 50%, #01DE01);
  background: -moz-linear-gradient(-45deg, #00C900, #00C900 50%, #01DE01 50%, #01DE01);
  background-blend-mode: multiply;
  border-top: 5px solid #00C900;
  border-left: 5px solid #00C900;
  border-bottom: 5px solid #01DE01;
  border-right: 5px solid #01DE01;
}

@keyframes cssload-roto {
  0% {
    -webkit-transform: rotateZ(0deg);
            transform: rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateZ(360deg);
            transform: rotateZ(360deg);
  }
}

@-webkit-keyframes cssload-roto {
  0% {
    -webkit-transform: rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateZ(360deg);
  }
}

.container-loader-square {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.loader-square {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 33% 33% 33%;
      grid-template-columns: 33% 33% 33%;
  grid-gap: 2px;
  width: 80px;
  height: 80px;
  border: 0;
}

.loader-square > div {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  background: #2c3e50;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-animation: loaderSquare 2s infinite linear;
          animation: loaderSquare 2s infinite linear;
}

.loader-square > div:nth-of-type(1), .loader-square > div:nth-of-type(5), .loader-square > div:nth-of-type(9) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.loader-square > div:nth-of-type(4), .loader-square > div:nth-of-type(8) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.loader-square > div:nth-of-type(2), .loader-square > div:nth-of-type(6) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.loader-square > div:nth-of-type(3) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

@-webkit-keyframes loaderSquare {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  80% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}

@keyframes loaderSquare {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  80% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}

.calendar-container {
  position: relative;
}

.calendar-container .container-loader-square {
  position: absolute;
  top: 3%;
  left: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.8);
  width: 100%;
  height: 97%;
}

@media (max-width: 767px) {
  .modal-dialog {
    width: calc(100% - 20px);
  }

  .temp1-sect0-title * {
    font-size: 3rem !important;
    margin-bottom: 1.5rem !important;
  }
}

ul, li, a {
  text-decoration: none !important;
  list-style: none;
}

.customText, .note-editor {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  width: 100%;
}

.customText ul, .note-editor ul {
  text-decoration: inherit !important;
  list-style: disc;
  margin-top: 0;
  margin-bottom: 10px;
}

.customText ol, .note-editor ol {
  display: block;
  list-style-type: decimal;
  -webkit-margin-before: 1em;
          margin-block-start: 1em;
  -webkit-margin-after: 1em;
          margin-block-end: 1em;
  -webkit-margin-start: 0px;
          margin-inline-start: 0px;
  -webkit-margin-end: 0px;
          margin-inline-end: 0px;
  -webkit-padding-start: 40px;
          padding-inline-start: 40px;
  margin-top: 0;
  margin-bottom: 10px;
}

.customText li, .note-editor li {
  display: list-item;
  text-align: -webkit-match-parent;
  text-decoration: inherit !important;
  list-style: inherit !important;
  padding: inherit !important;
  padding-left: 0 !important;
}

.note-toolbar {
  position: relative;
  z-index: inherit !important;
}

a {
  cursor: pointer;
}

.elipsis {
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  text-align: left;
}

p {
  margin: 0;
  padding: 0;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  height: 100%;
  width: 100%;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
}

@media (max-width: 767px) {
  html {
    font-size: 10px;
    height: auto;
  }
  html body {
    height: auto;
  }
}

@media (max-width: 1024px) {
  html {
    font-size: 10px;
  }
}

@media (max-width: 1280px) {
  html {
    font-size: 10px;
  }
}

body.noscroll {
  overflow: hidden;
}

.btn-classonlive {
  background-color: #00bc00;
  border: 0px;
  border-radius: 8px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  letter-spacing: 1px;
  height: 50px;
}

.btn-classonlive:hover {
  background-color: #00de00;
  color: #fff;
  border: 0px;
}

.btn-orange {
  background: #FF751A;
}

.btn-orange:hover {
  background: #f46200;
}

.btn {
  outline: none;
  border-radius: 3px !important;
  cursor: pointer;
}

.btn:focus {
  outline: none;
}

.btn.btn-green {
  background: #62A215 !important;
  color: #fff;
}

.btn.btn-green:hover {
  opacity: .8;
}

.btn.btn-orange {
  background: #FF751A;
  color: #fff;
}

.btn.btn-orange:hover {
  opacity: .8 !important;
}

.btn.btn-line-green {
  background: #fff;
  color: #62A215;
  border: 2px solid #62A215;
}

.btn.btn-line-green:hover {
  background: #62A215;
  color: #fff;
}

.btn.btn-line-orange {
  background: #fff;
  color: #FF751A;
  border: 2px solid #FF751A;
}

.btn.btn-line-orange:hover {
  background: #FF751A;
  color: #fff;
}

.btn.btn-grey {
  color: #1b1d1e !important;
  background: #758789 !important;
  color: white !important;
}

.btn.btn-white {
  color: #1b1d1e !important;
  background: white !important;
  border: 1px solid #1b1d1e !important;
}

.btn.btn-white:hover {
  background: lightgray !important;
}

.panel-default > .panel-heading, .panel {
  background-color: #e6e6e6;
  border: 0 none;
  -webkit-box-shadow: none;
          box-shadow: none;
  position: initial !important;
  top: 35px !important;
}

.note-popover {
  display: none;
}

.btn-sm {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}

.note-editor.note-frame .note-editing-area .note-editable {
  padding: 10px;
  overflow: auto;
  color: #000;
  word-wrap: break-word;
  background-color: #fff;
}

.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: 400;
  line-height: 1.42857143;
  color: #333;
  white-space: nowrap;
}

#temp1-nav {
  border: 0;
  -webkit-box-shadow: 0 5px 8px rgba(0, 0, 0, 0.3);
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.3);
  padding: 0px;
  position: relative;
}

#temp1-nav .navbar-header .navbar-brand {
  padding: 0px;
}

#temp1-nav .navbar-header .navbar-brand .general-logo-img {
  width: auto !important;
  padding: 0 !important;
  max-height: 60px;
  height: 100%;
  margin-top: 0;
}

#temp1-nav #temp1-menu-responsive {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 200;
}

#temp1-nav #temp1-menu-responsive .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

#temp1-nav #temp1-menu-responsive .links .text {
  font-size: 15px;
}

#temp1-nav #temp1-menu-responsive .links .nav-link {
  margin-right: 10px;
}

#temp1-nav #temp1-menu-responsive .links .nav-link:last-child {
  margin-right: 0;
}

#temp1-nav #temp1-menu-responsive .links .nav-link a {
  color: #fff;
  padding: 15px;
}

#temp1-nav #temp1-menu-responsive .links .nav-link a.temp1-menulink-color {
  color: #fff;
  opacity: 0.8;
}

#temp1-nav #temp1-menu-responsive .links .nav-link a.temp1-menulink-color:hover {
  opacity: 1 !important;
}

#temp1-nav #temp1-menu-responsive .login {
  background-color: #FDCC00;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 25px;
  padding-left: 25px;
  margin-left: 15px;
  height: inherit;
  border: 0;
  border-radius: 15px;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
}

#temp1-nav #temp1-menu-responsive .login:hover {
  opacity: 0.9;
}

#temp1-nav #temp1-menu-responsive .login:active {
  -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.7);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.7);
  border: 0px;
  outline: 0;
}

#temp1-nav #temp1-menu-responsive .login:focus {
  border: 0px;
  outline: 0 !important;
}

@media (max-width: 1024px) {
  #temp1-nav #temp1-menu-responsive {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    background: #777;
    padding: 10px 0;
    -webkit-transition: opacity 0.4s, -webkit-transform 0s 0.4s;
    transition: opacity 0.4s, -webkit-transform 0s 0.4s;
    transition: opacity 0.4s, transform 0s 0.4s;
    transition: opacity 0.4s, transform 0s 0.4s, -webkit-transform 0s 0.4s;
    -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
    transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  }
  #temp1-nav #temp1-menu-responsive .links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #temp1-nav #temp1-menu-responsive .links .nav-link {
    margin-right: 0;
  }
  #temp1-nav #temp1-menu-responsive .login {
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  #temp1-nav #temp1-menu-responsive {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    background: #777;
    padding: 10px 0;
    -webkit-transition: opacity 0.4s, -webkit-transform 0s 0.4s;
    transition: opacity 0.4s, -webkit-transform 0s 0.4s;
    transition: opacity 0.4s, transform 0s 0.4s;
    transition: opacity 0.4s, transform 0s 0.4s, -webkit-transform 0s 0.4s;
    -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
    transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  }
  #temp1-nav #temp1-menu-responsive .links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #temp1-nav #temp1-menu-responsive .links .nav-link {
    margin-right: 0;
  }
  #temp1-nav #temp1-menu-responsive .login {
    margin-left: 0;
  }
}

#temp1-nav .iconmenu {
  color: #888;
  cursor: pointer;
  background: transparent;
  border: 0;
}

.temp1-navbar-bg {
  background-color: #1b1d1e;
}

#temp-footer {
  padding-top: 80px;
  padding-bottom: 80px;
  width: 100%;
  float: left;
  border: 0;
  text-align: center;
  background-color: #000;
}

#temp-footer .row {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#temp-footer .temp1-sect8-item1 .temp1-sect8-p1 p {
  color: inherit !important;
}

#temp-footer .temp1-sect8-logo {
  max-height: 40px;
  height: 100%;
  margin-top: 5px;
  width: auto;
}

#temp-footer .temp1-sect8-text-color {
  color: #BFC5C6;
  margin: 10px 0;
}

#temp-footer .temp1-sect8-rrss > a {
  font-size: x-large;
  cursor: pointer;
  /* color: #a5a5a5; */
  opacity: 1;
  margin-left: 1px;
  margin-right: 1px;
}

#temp-footer .temp1-sect8-rrss > a:hover {
  /* opacity: 1; */
  text-decoration: none;
}

@media (max-width: 767px) {
  #temp-footer .temp1-sect8-logo, #temp-footer .temp1-sect8-item2, #temp-footer .temp1-sect8-rrss, #temp-footer .temp1-sect8-p1 {
    margin-bottom: 20px;
  }
}

.temp-btn-color {
  background-color: #FDCC00;
  height: auto;
}

.temp-btn-color:hover {
  background-color: #FDCC00;
  opacity: .9;
}

.elipsis-two-lines {
  display: block;
  display: -webkit-box;
  max-width: 100%;
  max-height: 4rem;
  margin: 0 auto;
  line-height: 1;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 2rem;
  margin-top: 1px;
}

.background {
  background-position: center 0;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 5%;
  padding-top: 10%;
  min-height: 500px;
}

.background .content-a {
  display: table;
  background-position: center center;
  background-size: contain;
  position: relative;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.background .content-a .content-b {
  display: table-cell;
  position: relative;
  vertical-align: middle;
  text-align: center;
}

.background .content-a .content-b .providerSlogan {
  font-weight: lighter;
  margin: 0px auto 15px;
  color: white;
  font-family: 'Open Sans', sans-serif;
  font-weight: 42px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

@media (max-width: 767px) {
  .background .content-a {
    padding: 0;
  }
}

@media (max-width: 1024px) {
  .background .content-a {
    padding: 0;
  }
}

@media (max-width: 767px) {
  .background {
    /* min-height: auto; */
  }
}

@media (max-width: 767px) {
  .background.headernotext {
    background-size: contain;
    min-height: auto;
  }
}

.fullscreen.overflow,
.fullscreen.overflow .content-a {
  height: auto;
  min-height: 100%;
}

#coursesArea {
  padding-bottom: 60px;
  padding-top: 60px;
}

#coursesArea .providerCoursesSectionTitle {
  font-size: 42px;
  text-transform: uppercase;
  margin-bottom: 35px;
  text-align: center;
}

#coursesArea .content_center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#coursesArea .content_center .temp1-course-item {
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #CCCCCC;
  border-bottom: 2px solid #CCCCCC;
  float: left;
  cursor: pointer;
  padding-bottom: 10px;
  margin-top: 15px;
  margin-bottom: 15px;
  width: 100%;
  height: 500px;
}

#coursesArea .content_center .temp1-course-item .img-miniatura-course {
  width: 100%;
  border-radius: 5px 5px 0px 0px;
  background-color: black;
  height: 250px;
}

#coursesArea .content_center .temp1-course-item .temp1-detail-course-info {
  padding-left: 10px;
  padding-right: 10px;
  color: #000;
}

#coursesArea .content_center .temp1-course-item .temp1-detail-course-info .type-course {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 5px 0;
}

#coursesArea .content_center .temp1-course-item .temp1-detail-course-info .type-course .course-type {
  padding-left: 0px !important;
}

#coursesArea .content_center .temp1-course-item .temp1-detail-course-info .type-course .course-date {
  padding-left: 0;
  padding-right: 0px !important;
}

#coursesArea .content_center .temp1-course-item .temp1-detail-course-info .container-title-course {
  height: auto;
  padding-left: 0px !important;
  margin-bottom: 20px;
}

#coursesArea .content_center .temp1-course-item .temp1-detail-course-info-price {
  width: 50%;
  float: right;
  text-align: right;
  position: absolute;
  bottom: 5%;
  right: 6%;
}

#coursesArea .content_center .temp1-course-item .temp1-detail-course-info-price .temp-btn-color {
  background-color: #FDCC00;
  height: auto;
}

@media (max-width: 767px) {
  #coursesArea .content_center {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#coursesArea .btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 10px;
}

@media (max-width: 1024px) {
  #coursesArea .courses-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #coursesArea .contentItem {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 767px) {
  #coursesArea .courses-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #coursesArea .courses-list .contentItem {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
}

#aboutUsArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 60px;
  padding-top: 60px;
  background-color: rgba(6, 45, 68, 0.2);
}

#aboutUsArea .wow .providerAboutUsSectionTitle {
  font-family: 'Segoe UI Black';
  color: black;
  font-weight: normal;
  font-size: 42px;
  text-transform: uppercase;
  margin-bottom: 35px;
  margin-top: 35px;
  text-align: center;
}

#aboutUsArea #container {
  width: 100%;
}

#aboutUsArea #floated {
  float: right;
  z-index: 3;
}

#instructorsArea {
  padding-bottom: 60px;
  padding-top: 60px;
}

#instructorsArea .container {
  max-width: 90%;
}

#instructorsArea .providerExpertsSectionTitle {
  font-family: 'Segoe UI Black';
  color: black;
  font-weight: normal;
  font-size: 42px;
  text-transform: uppercase;
  margin-bottom: 35px;
  margin-top: 35px;
  text-align: center;
}

#instructorsArea .content_center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#instructorsArea .content_center .providerDetailExpertPhoto {
  width: 145px;
  height: 137px;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

#instructorsArea .content_center .comentarios_instructor {
  height: auto;
  margin: 8px;
  border: 1px solid #ddd;
  padding: 15px;
  position: relative;
  font-weight: 400;
  line-height: 24px;
}

#instructorsArea .content_center .comentarios_instructor .social_icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#instructorsArea .content_center .comentarios_instructor .social_icons .providerDetailExpertLinkedin {
  margin-right: 15px;
}

#instructorsArea .content_center .comentarios_instructor .social_icons, #instructorsArea .content_center .comentarios_instructor .tag {
  list-style: none;
  padding: 0;
}

#instructorsArea .content_center .comentarios_instructor .media-body {
  padding: 0 15px;
}

#instructorsArea .content_center .comentarios_instructor .media-body a {
  color: #6c757d;
}

#instructorsArea .content_center .comentarios_instructor .media-body a:hover {
  color: #888;
}

#instructorsArea .content_center .comentarios_instructor .media-body .profileTeacherLinkedin {
  margin-right: 15px;
}

@media (max-width: 1024px) {
  #instructorsArea .content_center .col-md-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 767px) {
  #instructorsArea .content_center {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #instructorsArea .content_center .col-md-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
}

#portfolio {
  padding-bottom: 60px;
  padding-top: 100px;
}

#portfolio .center {
  margin-bottom: 20px;
}

.searchContentButton {
  color: #6c757d;
  background-color: transparent;
  background-image: none;
  border-color: #6c757d;
  cursor: pointer;
}

.searchContentButton:hover {
  background: #6c757d;
  color: #fff;
}

#feature {
  background: #f2f2f2;
}

#feature .selectCat-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-top: 20px;
}

#feature .temp1-course-item:hover {
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

#feature .btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 10px 0;
}

@media (max-width: 767px) {
  #feature #coursesArea {
    margin: 0;
    padding: 0;
  }
  #feature .portfolio-items {
    padding: 0;
  }
  #feature .selectCat-container {
    margin: 0;
  }
  #feature .selectCat-container .selectCat {
    width: 100%;
  }
}
