/**
 * @author Alexis Bogado <alexis.bogado@s3w.es>
 * @editor Daniel Ruiz <daniel.ruiz@s3w.es>
 * @package webinar-web
 */

@font-face {
  font-family: "Cachet std bold"; /*a name to be used later*/
  src: url("../../fonts/cachet-std-bold.otf"); /*URL to font*/
}

@font-face {
  font-family: "Cachet std medium"; /*a name to be used later*/
  src: url("../../fonts/cachet-std-medium.otf"); /*URL to font*/
}

@font-face {
  font-family: "Cachet std Book"; /*a name to be used later*/
  src: url("../../fonts/cachet-std-book.otf"); /*URL to font*/
}

body {
    font-family: 'Cachet std Book', sans-serif;
}

*:disabled {
    cursor: not-allowed;
}

/* #main-menu .nav-link:hover {
    color: rgba(41, 34, 92, .8) !important;
} */

#main-menu .nav-link::after {
    content: ' ';
    display: block;
    height: 3px;
    width: 0;
    transition: width .25s linear;
}

#main-menu .dropdown.show .nav-link::after, #main-menu .nav-link:hover::after {
    width: 100%;
}

#main-menu, #main-menu img {
    transition: max-width 0.5s, background-color 0.5s;
}

.menu-text {
    letter-spacing: 2px;
    font-size: 14px;
}

#nav-menu.w-0 .navbar-nav {
    visibility: hidden;
    opacity: 0;
}

#nav-menu .navbar-nav {
    display: visible;
    opacity: 1;
    transition: visibility 0s, opacity .35s ease-in-out;
}

.navbar-collapse-left {
    transition: width .35s ease-in-out !important;
    height: 100vh;
    width: 380px;
    z-index: 1030;
}

.maxw-65 {
    max-width: 65% !important;
}

.mw-65 {
    min-width: 65% !important;
}

.w-0 {
    width: 0 !important;
}

.bottom-0 {
    bottom: 0;
}

.right-0 {
    right: 0;
}

.h-center {
    left: 50%;
    transform: translateX(-50%);
}

.hr-bold {
    border-width: 2px !important;
}

section#inicio {
    background: #eaeef1;
    padding-top: 130px;
}

section#inicio.bg-index {
    background: url(../images/header_home.png) no-repeat, #eaeef1;
    background-size: cover;
    background-position: center top;
}

section#inicio.bg-header {
    background: url(../images/header_home.png) no-repeat, #eaeef1;
    background-size: cover;
    background-position: left 0%;
}

section#inicio.bg-header-lite {
  background: url(../images/header_lite.png) no-repeat, #eaeef1;
  background-size: cover;
  background-position: left 0%;
}

.line-height-1 {
    line-height: 1;
}

.font-weight-ultrabold {
    font-weight: 900 !important;
}

.social-media-icons li {
    height: 45px;
    width: 45px;
}

.social-media-icons li a {
    border: 2px solid;
}

.social-media-icons li a:hover {
    background-color: #fff;
    color: #14112c !important;
    text-decoration: none;
    transition: all 110ms;
}

.arrow-icon {
    transition: transform .2s ease-in-out;
}

.transform-180deg {
    transform: rotate(180deg) !important;
}

.fs-12 {
    font-size: 12px;
}

.fs-14 {
    font-size: 14px;
}

.text-underlined {
    text-decoration: underline;
}

.border-lg-green {
    border-bottom: 10px solid #318b68;
}

.border-lg-dark-blue {
  border-bottom: 10px solid #004d6d;
}

.border-transparent{
  border-color: transparent;
}

a.text-dark-purple:hover {
    color: #38345c;
    opacity: .9;
}

a.text-cyan:hover {
    color: #00a09a;
    opacity: .9;
}

footer a.nav-link:hover {
    text-decoration: underline;
}

#go-top {
    display: none;
    width: 60px;
    height: 60px;
}

.nav-link.dropdown-toggle::after {
    border: 0 !important;
    margin: 0 !important;
    vertical-align: unset !important;
}

.transform-none {
    transform: none !important;
}

.download-box::after {
    width: 100%;
    content: ' ';
    background-color: rgba(255, 255, 255, 0.4);
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    height: 0%;
    transition: height .1s ease-in;
}

.download-box:hover::after {
    height: 100%;
    transition: height .1s ease-in;
}

.separator {
    background-color: #000;
    height: 1px;
}

/* Background colors */
.bg-purple {
    background-color: #29225c !important;
}

.bg-dark-purple {
    background-color: #14112c !important;
}

.bg-dark-blue {
  background-color: #004d6d !important;
}

.bg-gray-purple {
    background-color: #38345c !important;
}

.bg-green {
    background-color: #318b68 !important;
}

.bg-gray-green {
    background-color: #318b68 !important;
}

.bg-cyan {
    background-color: #00a09a !important;
}

.bg-blue {
    background-color: #0A1838 !important;
}

.bg-red {
  background-color: #c43f27 !important;
}

.bg-light-green {
    background-color: #318b6873 !important;
}

.bg-black-transparent {
  background-color: #f4f4f430 !important;
}

.bg-gray {
    background-color: #f1f4f4 !important;
}

.bg-black {
    background-color: #000 !important;
}

/* Text colors */
.text-dark-purple {
    color: #29225c;
}

.text-light-purple {
    color: #38345c;
}

.text-cyan {
    color: #00a09a;
}

.text-light-cyan {
    color: #17cec7;
}

.text-blue {
    color: #1A42b2;
}

.text-red {
  color: #c43f27;
}

.text-red:focus{
  color: #c43f27;
}

.text-light-blue {
    color: #83f2f2;
}

.text-dark-blue {
    color: #0000c9;
}

.text-gray {
    color: #8b8b8b;
}

.text-black {
    color: #000;
}

.text-green {
  color: #00B05B;
}



/* Border colors */
.border-blue {
    border: 2px solid #4ab3d2 !important;
}

.form-control.border-blue:focus {
    border-color: rgba(74, 179, 210, .4);
    box-shadow: 0 0 0 0.2rem rgba(74, 179, 210, .25);
}

@media (max-width: 768px) {
    section#inicio {
        padding-top: 150px;
    }

    .navbar-collapse-left {
        width: 100%;
    }
}

.blurred-header{
  backdrop-filter: blur(10px);
  background-color: rgba(29, 86, 162, .7);
  /* Antiguo
  background-color: rgba(255, 255, 255, .7);
  */
}

input[type=text], input[type=email], input[type=password]{
  background-color: rgba(0, 149, 255, .26);
  color: #000;
  border-radius: 0px;
  border: 1px solid white;
}

select{
  background-color: #f4f4f4 !important;
  color: #0095ff;
  border-radius: 0px;
  border: 1px solid white;
}

.form-control-focus:focus{
  border-color: transparent;
  box-shadow: none;
}

textarea::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #1D56A2 !important;
  font-weight: bold;
  opacity: 1; /* Firefox */
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #1D56A2 !important;
  opacity: 1; /* Firefox */
  font-weight: 100;
}

#cookie-box {
  background-color: rgba(0, 0, 0, 0.74);
  position: fixed;
  bottom: 0;
  padding: 10px 20px;
  z-index: 1;
  display: none;
}

#closeCookies {
  color: white;
  opacity: 0.8;
}

.webinar-title {
    letter-spacing: 5px;
    line-height: .85em;
    color: #000;
}

.webinar-subtitle {
    font-size: 23px;
    padding: 0 30px;
}

@media (min-width: 992px) {
    .webinar-title {
        font-size: 5em;
    }

    .webinar-subtitle {
        font-size: 40px;
        letter-spacing: 5px;
    }
}

@media (min-width: 768px) {
    .webinar-title {
        font-size: 4em;
    }
    
    .webinar-subtitle {
        font-size: 31px;
        letter-spacing: 5px;
    }
}

@media (min-width: 576px) {
    .webinar-title {
        font-size: 3em;
    }
    
    .webinar-subtitle {
        letter-spacing: 5px;
    }
}


/* Estilos Dani */
.text-nuevoazul-claro{
    color: #367BBD;
}

.text-nuevoazul-oscuro{
    color: #1D56A2;
}

.text-nuevocyan {
    color: #5AB2E7;
}

.bg-azuloscuro {
    background-color: #1D56A2;
}

.font-size-sections{
    font-size: 30px;
}

.font-size-medium{
    font-size: 20px;
}

.font-size-normal{
    font-size: 15px;
}

.logo-header {
    width: 70px;
}

.logo-safth {
    width: 450px;
}

.title {
    font-size: 7rem;
}

.subtitle {
    font-size: 2rem;
}

.boton-accede{
    width: 250px;
}

.btn-it{
  font-size: 12pt;
  border-radius: 30px;
  padding: 10px 20px !important;
}

.btn-green {
  background-color: #00B05b;
}

.bg-blue {
 background-color: #0A1838;
}

.bg-blue-btn {
  background-color: #1A42B2;
}

.br-0 {
  border-radius: 0px;
}

.border-white {
  border: 2px solid white;
}

.border-presentacion {
  border: 1px solid #e6e6e6;
  border-radius: 10px;
}

.boton-enviar-form{
    width: 150px;
}

.divisor-programa {
    background-color: #00B05B;
    height: 1px;
}

@media (max-width: 577px) {
    .title {
    font-size: 3rem;
}

    .subtitle {
        font-size: 1rem;
    }
    .boton-accede{
        width: 150px;
    }

}

@media (max-width: 767px) {
    .logo-header {
        width: 150px;
    }
    .logo-safth {
        width: 250px;
    }
}


.custom-radio {
  height: 25px;
  min-width: 35px;
  border-top: 1px solid;
  border-right: 0px solid;
  border-left: 0px solid;
  border-bottom: 0px solid;
  border-radius: 5px;
  -webkit-box-shadow: inset 0px 1px 1px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: inset 0px 1px 1px 0px rgba(0,0,0,0.75);
  box-shadow: inset 0px 1px 1px 0px rgba(0,0,0,0.75);
}

.custom-radio.selected::before {
  background-color: #1942B1;
  content: ' ';
  display: block;
  height: 25px;
  width: 35px;
  border: 5px solid #1942B1;
  border-radius: 5px;
}

.w-35{
  min-width: 35px;
  display: inline-block;
}