.box-shortcode-info {
    width: 100%;
    border: 1px solid;
    padding: 10px;
    margin: 10px 0px 10px 0px;
}

.videojs-message {
    position: absolute;
    z-index: 100;
    top: 10px;
    left: 10px;
    width: 100%;
    display: flex;
  }
  .videojs-message-preview {
    width: 100%;
    display: flex;
  }
  .message-alert-content {
    border-radius: 10px;
    padding: 10px;
    margin-right: 5px;
    background-color: #0000008a;
    color: #fff;
  }
  .message-alert-content .close {
    margin: -1px -3px 0px 10px;
  }

  #global-message > .alert > .close {
    position: absolute;
    right: 10px;
    top: 10px;
  }
  .videojs-message .close,
  .close-message {
    margin-left: 10px;
    color: #fff !important;
  }
  .volume svg:hover path {
    fill: var(--theme-primary);
    cursor: pointer;
  }
  .volume-slider:hover,
  .controls-right *:hover {
    cursor: pointer;
  }

  /* Time sim */
.nublogin-time-simulator {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.nublogin-time-simulator .simulator-toggle {
    background: var(--theme-primary);
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.nublogin-time-simulator .simulator-toggle:hover {
    opacity: 0.9;
}

.nublogin-time-simulator .simulator-content {
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    padding: 15px;
    margin-top: 10px;
    width: 320px;
    display: none;
}

.nublogin-time-simulator:not(.minimized) .simulator-content {
    display: block;
}

.simulator-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.simulator-header h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
}

.simulator-header .btn-minimize {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    width: 24px;
    height: 24px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    padding: 0;
}

.simulator-header .btn-minimize:hover {
    background: #e9ecef;
}

.simulator-body label {
    display: block;
    margin-bottom: 5px;
    font-size: 13px;
    font-weight: 500;
}

.simulator-body input[type="datetime-local"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 10px;
}

.simulator-body input[type="datetime-local"]:focus {
    outline: none;
    border-color: var(--theme-primary);
    box-shadow: 0 0 0 0.2rem rgba(var(--theme-primary), 0.25);
}

.simulator-actions {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.simulator-actions .btn-apply {
    background: var(--theme-primary);
    color: white;
    border: none;
}

.simulator-actions .btn-apply:hover {
    opacity: 0.9;
}

.simulator-actions .btn-clear {
    background: #6c757d;
    color: white;
    border: none;
}

.simulator-actions .btn-clear:hover {
    background: #5a6268;
}

.current-simulation {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 4px;
    font-size: 13px;
    border-left: 3px solid var(--theme-primary);
}

.current-simulation strong {
    display: block;
    margin-bottom: 4px;
    font-size: 12px;
    text-transform: uppercase;
    color: #6c757d;
}

.current-simulation span {
    color: #212529;
    font-weight: 600;
}

@media (max-width: 768px) {
    .nublogin-time-simulator {
        bottom: 10px;
        right: 10px;
    }

    .nublogin-time-simulator .simulator-content {
        width: calc(100vw - 40px);
        max-width: 320px;
    }
}

/* Speakers boxes styles */

.speakers-title {
    width: 100%;
    padding: 10px;
    background-color: #1a4056;
    color: #fff;
    margin-left: -7.5px;
    text-align: center;
}

.testimonials {
    margin-top: 20px;
    margin-bottom: 30px;
}

.testimonial {
    margin-bottom: 1em;
    border: 1px solid #ddd;
    position: relative;
    border-radius: 10px;
    background: transparent;
    padding: 0 !important;
    height: calc(100% - 15px);
}

.testimonial .testimonial-content {
    background: #fff;
    padding: 1em;
    border-radius: 10px;
}

.testimonial-social {
    height: 100%;
    width: 100%;
    z-index: 3;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #000000b3;
}

.testimonial:hover .not-visible {
    display: flex;
}

.not-visible {
    display: none;
}

.testimonial-social:hover {
    display: flex;
}

.testimonial-social-item a {
    color: #fff;
    margin: 10px;
}

.testimonial-social-item svg:hover {
    color: var(--theme-primary);
}

.testimonial-social-item svg {
    color: #fff;
    font-size: 43px;
}

.avatar .img-circle {
    background: #fff;
    border: 1px solid #c5c5c5;
    width: 115px;
    height: 115px;
    overflow: hidden;
    position: relative;
}

.avatar .img-circle img {
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    left: -9999px;
    right: -9999px;
    margin: auto;
    object-fit: cover;
}

.img-circle {
    border-radius: 50%;
}

.testimonial h4,
.testimonial h4 a {
    font-weight: 700;
    font-size: 1em;
}

.testimonial h4 {
    margin-bottom: 20px;
}

.testimonial .testimony-body {
    font-size: .9em;
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .testimonial .testimonial-main {
        padding-left: 0;
    }
    .row.ponentes-container,
    .row.ponentes-container .row {
        display: flex;
    }
}
/* End Speakers boxes styles */