@charset "UTF-8";
/**
 * Estilos específicos de la página de widget
 */
.widget-header {
  padding: 20px 0;
}
.widget-header h1 {
  margin-bottom: 15px;
}

.widget-content-wrapper {
  background-color: #fff;
  padding: 30px;
}

.widget-footer-text {
  font-size: 12px;
}

.widget-tab {
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}

.tipos-agenda {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  padding-bottom: 1em;
}
.tipos-agenda a {
  background-color: #585858;
  color: #fff;
  padding: 5px 10px;
  border-radius: 6px;
  text-decoration: none;
}
.tipos-agenda a.tipo-agenda-2 {
  background-color: #2a6dfc;
}

.widget-form .form-group,
.widget-form .form-group-stacked {
  margin: 15px 0;
}
.widget-form .label-block {
  display: block;
}
.widget-form input,
.widget-form textarea,
.widget-form select {
  font-size: 14px;
  line-height: 1.4;
  padding: 6px 10px;
  color: #555;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  background-image: none;
}
.widget-form textarea {
  display: block;
  width: 100%;
}
.widget-form .form-group-stacked textarea {
  margin-top: 10px;
}

@media screen and (min-width: 1000px) {
  .widget-tab {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .widget-tab .col-form {
    width: calc(100% - 440px);
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .widget-tab .col-preview {
    width: 420px;
    text-align: right;
  }
  .form-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
  .form-group .label-inline {
    width: 7em;
  }
}