:root {
  --primary: #02ACBA;
  --secondary: #42957FF2;
  --tertiary: #61CEB2;
  --cuaternary: #c6f2f5;
  --quinary: #EDFAFB;
  --senary: #018591;
}

/* Login */

#body {
  background-image: url(https://picsum.photos/1920/1080.webp);
  background-position: center;
  background-size: cover;
  background-color: var(--primary);
}

#platform_login > * {
  margin: auto;
}

#platform > * {
  margin: auto !important;
}

#platform_login, #platform {
  width: 100%;
  height: 100vh;
  background-image: url(https://picsum.photos/1920/1080.webp);
  background-position: center;
  background-size: cover;
  background-color: var(--primary);
  background-repeat: no-repeat;
}

#login_forms {
  width: 100%;
  height: auto;
  padding: 30px;
  background: rgba(255 255 255/ 95%);
  border-radius: 30px;
  box-shadow: 0 6px 12px rgba(0 0 0 / 33%);
}

@media (min-width: 992px) {
  #login_forms {
    width: calc(45%);
  }
}

@media (min-width: 1400px) {
  #login_forms {
    width: calc(33%);
  }
}

.btns-forms {
  border-bottom: solid 1px #ccc;
}

.btn-forms {
  padding: 5px 10px;
  width: 50%;
  transition: 1s;
  border-radius: 15px 15px 0 0;
}

.btn-forms:hover {
  background-color: #f3f3f3;
}

.btn-forms.active {
  background-color: var(--cuaternary);
}

#form-login, #form-register, #form-reset {
  margin: 30px 0;
}

.already {
  font-size: .8em;
  color: var(--primary);
  transition: .3s;
}

.already:hover {
  color: black;
}

.reset {
  color: gray;
  transition: .3s;
  font-size: .9em;
}

.reset:hover {
  color: black;
}

.btn-sumit {
  background: var(--primary);
  color: white;
  font-weight: 600;
  transition: .3s;
  border-radius: 30px;
}

.btn-sumit:hover {
  color: white;
  background-color: var(--senary);
}

.animated {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

.form-control:focus, .form-select:focus {
  color: #212529;
  background-color: #fff;
  border-color: var(--primary);
  outline: 0;
  box-shadow: 0 0 0 0.25rem var(--cuaternary);
}

.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.form-check-input:focus {
  border-color: var(--primary);
  outline: 0;
  box-shadow: 0 0 0 0.25rem #e4dbff;
}

.form-control {
  background: transparent;
}

.txt-info {
  font-size: .8em;
  color: gray;
}

.message {
  font-size: .9em;
}

.profile img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: solid 1px #f3f3f3;
  margin-bottom: 15px;
}

.profile h2 {
  font-size: 1.2em;
  color: var(--primary);
}

.txt-subtitle {
  font-size: 1em;
  font-weight: 700;
}

.bg-user {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 30px;
  box-shadow: 0 3px 6px rgba(0 0 0 / 10%);
}

.links-profile ul li {
  margin-bottom: 15px;
}

.links-profile a {
  color: var(--primary);
  text-decoration: none;
  transition: .3s;
  font-size: 1.1em;
  font-weight: 600;
}

.links-profile a:hover {
  color: black;
}

.form-control, .form-check-input {
  border-color: gray;
}

/* Login */

/* --- */

.nav-pills .nav-link {
  border-bottom: solid 2px transparent;
  border-radius: 0;
}

.nav-pills .bi {
  color: var(--primary);
  font-size: 20px;
  margin-right: 10px;
  margin-top: 3px;
}

.nav-pills .nav-item {
  margin-bottom: 10px;
  display: flex;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  background: transparent;
  color: black;
  border-bottom: solid 2px var(--primary);
  border-radius: 0;
}

.tab-pane h3 {
  font-size: 25px;
  color: var(--primary);
  margin-bottom: 15px;
}

.card-course {
  text-decoration: none;
  color: white;
  display: block;
  background: var(--primary);
  display: block;
  padding: 10px;
  border-radius: 15px;
  height: 110px;
  margin-bottom: 20px;
  box-shadow: 0px 0px 12px rgba(0 0 0/ 15%);
  transition: .3s ease;
}

.card-course:hover {
  background: var(--senary);
  box-shadow: 0px 0px 12px rgba(0 0 0/ 25%);
}

.card-course span {
  font-size: 14px;
}

/* ---- */

.search button {
  background: var(--primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  margin: 0 10px;
  border: none;
  transition: .3s ease;
  display: block;
}

.search button:hover {
  background: var(--senary);
  color: white;
  border: none;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: .3s ease;
}

a:hover {
  color: var(--senary);
}

.card-course {
  color: white;
}

.card-course:hover {
  color: white;
}

.bg-gray {
  background-color: #f3f3f3;
}

/* Collapsible traducción */

.collapsible {
  background-color: #f0f9f9;
  color: #02ACBA;
  cursor: pointer;
  padding: 5px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: .3s ease;
}

.btn-single {
  display: block;
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  position: relative;
}

.btn-single:after {
  content: "" !important;
}

/* Collapsible traducción */

.collapsible {
  background-color: #f0f9f9;
  color: #02ACBA;
  cursor: pointer;
  padding: 5px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: .3s ease;
}

.btn-single {
  display: block;
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  position: relative;
}

.btn-single:after {
  content: "" !important;
}

.collapsible.btn-single:before {
  content: url('https://api.iconify.design/bi/translate.svg?color=%2302acba&width=30&height=30');
  width: 45px;
  height: 45px;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 1px;
  left: -3px;
}

.bg-content {
  background: transparent !important;
  padding: 0 !important;
}

.collapsible svg {
  width: 30px;
  height: 30px;
}

.collapsible:after {
  content: '\002B';
  color: #02ACBA;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.collapsible.active:after {
  content: "\2212" !important;
}

.content {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: #f0f9f9;
}

.content p {
  margin: 20px 10px;
}

/* Dictionary */

/* #btn-dictionary {
  position: fixed;
  z-index: 9999;
  bottom: 30px;
  right: 20px;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #EDFAFB;
  background: #02ACBA;
  border-radius: 50%;
  font-size: 30px;
  box-shadow: 0px 3px 9px rgba(0 0 0 / 15%);
  cursor: pointer;
  transition: .3s ease;
} */
#btn-dictionary {
  position: fixed;
  z-index: 9999;
  bottom: 30px;
  right: 20px;
  width: 200px;
  height: 66px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #EDFAFB;
  background: #000;
  border-radius: 2em;
  font-size: 30px;
  box-shadow: 0px 3px 9px rgba(0 0 0 / 15%);
  cursor: pointer;
  transition: .3s ease;
}
#circle{
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #02ACBA;
  border-radius: 50%;
}

#btn-dictionary:hover #circle{
  background: #000;
  bottom: 35px;
}

#btn-dictionary:hover {
  background: #0696a2;
  bottom: 35px;
}

#bloker {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(172 231 236 / .5);
  z-index: 9997;
  transition: all 0.3s ease-in-out;
  transition-delay: 0.3s;
  opacity: 0;
  visibility: hidden;
  cursor: crosshair;
}

#bloker.active {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease-in-out;
  transition-delay: 0.3s;
}

#dictionary {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: auto;
  overflow: hidden auto;
  width: 95%;
  z-index: 9998;
  -webkit-transition: -webkit-transform 0.8s;
  transition: -webkit-transform 0.8s;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  background: white;
}

@media (min-width: 768px) {
  #dictionary {
    width: 550px;
  }
}

#dictionary.open {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform 0.8s;
  transition: -webkit-transform 0.8s;
  transition-timing-function: ease, ease;
}

#dictionary .efect-navigation {
  height: 112%;
  padding: 30px;
  overflow: auto;
}

@media (min-width: 768px) {
  #dictionary.efect-navigation {
    padding: 42px 60px;
  }
}

#dictionary .efect-navigation {
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s ease-in-out;
  position: relative;
}

#dictionary.open .efect-navigation {
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

#close-dictionary {
  position: absolute;
  top: 0;
  left: 30px;
  background: var(--primary);
  padding: 20px 5px 10px 5px;
  cursor: pointer;
  color: #EDFAFB;
  font-size: 20px;
}

#close-dictionary:hover > picture {
  transform: rotate(90deg);
}

.modal-content {
  padding: 24px !important;
}

.forma-modal {
  margin-top: 15px;
}

.cerrar-modal {
  border-radius: 9px;
  background-color: #02ACBA;
  color: #ffffff;
}

/* Formulario Campaña */
#wpcf7-f14183-p10-o1{
  display: flex;
  justify-content: center;
}
#wpcf7-f14183-p10-o1 form{
  width: 90%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
#wpcf7-f14183-p10-o1 p{
  width: 45%;
  margin: auto;
}
#wpcf7-f14183-p10-o1 input[type="text"],#wpcf7-f14183-p10-o1 input[type="email"],#wpcf7-f14183-p10-o1 input[type="tel"], #wpcf7-f14183-p10-o1 select , #wpcf7-f14183-p10-o1 #Comentarios{
    width: 100%;
    padding: 0.5rem;
    margin-top: 1rem;
    border: 2px solid #02ACBA;
    border-radius: 15px;
}
#wpcf7-f14183-p10-o1 div{
  width: 100%;
  margin-top: 1rem;
}
#wpcf7-f14183-p10-o1 div{
  width: 100%;
}
#wpcf7-f14183-p10-o1 div p{
  width: 90%;
  height: auto;
}
#wpcf7-f14183-p10-o1 #Comentarios{
  width: 100%;
  min-height: 100px;
  max-height: 200px;
}
#wpcf7-f14183-p10-o1 #Comentarios p {
  text-align: center;
}
#wpcf7-f14183-p10-o1 input[type="submit"]{
  background-color: #02ACBA;
  border-radius: 999px;
  padding: 1rem;
  margin-top: 1rem;
}

 /* newsletter */
 .send, .tnp-subscription input.tnp-submit{
    background-color: var(--primary);
  }
  .tnp-subscription input.tnp-submit{max-width: 30%}
  .fa-newspaper{width: 10%}

