/*
Table of Contents
1.  Generic ----------------------------------------
     01. Base --------------------------------------
     02. Fonts -------------------------------------
     03. Helpers -----------------------------------
2.  Page Sections ----------------------------------
     01. Wrapper -----------------------------------
     02. Header ------------------------------------
     03. Main Content ------------------------------
     04. Footer ------------------------------------
*/


/* ==========================================================================
   I.   Generic
   ========================================================================== */


/* ------------------------------------------------------------
    Base
------------------------------------------------------------ */

html, body {
    height: 100%;
    margin: 0;
}
.content {
    min-height: 100%;
}
.content-inside {
    padding-bottom: 60px;
}
.wpb_footer {
    height: 50px;
    margin-top: -50px;
}
html {
    color: #000e3c;
    line-height: 1.5;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    font-family: 'Open Sans',
    sans-serif;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}

body {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-family: 'Open Sans',
    sans-serif;
    color: #000e3c;
    line-height: 1.5;
}

h1,
.h1 {
    font-size: 2.5rem;
}

h2,
.h2 {
    font-size: 2rem;
}

h3,
.h3 {
    font-size: 1.75rem;
}

h4,
.h4 {
    font-size: 1.5rem;
}

h5,
.h5 {
    font-size: 1.25rem;
}

h6,
.h6 {
    font-size: 1rem;
}
ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}
li{
    list-style: none;
}
@media (max-width: 991px) {
    h2 {
        font-size: 1.6rem;
    }
    h3 {
        font-size: 1.6rem;
    }
    h4 {
        font-size: 1.6rem;
    }
    h5 {
        font-size: 1.6rem;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 1.6rem;
    }
    h1 small {
        font-size: 1.6rem;
    }
    h2 {
        font-size: 1.6rem;
    }
    h3 {
        font-size: 1.6rem;
    }
    h4 {
        font-size: 1.6rem;
    }
}

h1[class],
h2[class],
h3[class],
h4[class],
h5[class],
h6[class],
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
p:last-child,
ul:last-child,
ol:last-child,
dl:last-child,
table:last-child,
blockquote:last-child {
    margin-bottom: 0;
}


/* ==========================================================================
   2.   Page Sections
   ========================================================================== */


/* ------------------------------------------------------------
    Wrappers
------------------------------------------------------------ */

.wpb_container {
    width: 100%;
    max-width: 1440px;
    padding: 0px 40px;
    margin: 0 auto;
}

/* ------------------------------------------------------------
    Header
------------------------------------------------------------ */

.wpb_header {
    border-bottom: 1px solid #eaeaea;
    min-height: 61px;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, .1)
}
.logo{
    margin-top: 17px;
    display: inline-block;
}

/* ------- Header Nav ---- */

.wpb_nav {}

@media (max-width: 991px) {}

@media (max-width: 767px) {}


/* ------------------------------------------------------------
    Main Content
------------------------------------------------------------ */

.wpb_main_content {}


/* ------------------------------------------------------------
    Footer
------------------------------------------------------------ */

.wpb_footer > .container{
    border-top: 1px solid #f2f2f2;
    padding-top: 19px;
    padding-bottom: 20px;
}
.copyright_nav{
    padding: 0;
}
.copyright_nav li{
    display: inline-block;
    color: #868686;
}
.copyright_nav li a{
    display: inline-block;
    color: #868686;
    border-left: 1px solid #868686;
    padding: 0 16px;
    font-size: 12px;
}
.copyright_nav li:first-child a {
    border-left: 0px solid #868686;
    padding-left: 0;
}
.copyright_txt{
    font-size: 12px;
    color: #868686;
}

/* ------------------------------------------------------------
    PlaceHolder Styles
------------------------------------------------------------ */
.chip {
    display: inline-block;
    height: 32px;
    font-size: 13px;
    font-weight: 500;
    color: #f8f9fa;
    line-height: 32px;
    padding: 0 12px;
    border-radius: 16px;
    background-color: #7d7d7d;
    margin-bottom: 5px;
    margin-right: 5px;
}

/* ------------------------------------------------------------
    Styles to visualizate template view
------------------------------------------------------------ */
.wrapper{
    position:relative;
    padding-bottom:56.25%
}
.wrapper iframe{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%
}

.error {
    border-color: #dc3545 !important;
}

  .loader {
    height: 100%;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    vertical-align: middle;
    background-color: rgba(0, 0, 0, 0.8);
    display: block;
    position: fixed;
    top: 0;
    z-index: 999999;
  }

  .spinloader {
    animation: 0.5s linear 0s normal none infinite running spin;
    background-image: url("../img/loader.png");
    background-repeat: no-repeat;
    background-size: 100% auto;
    height: 70px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    top: 50%;
    width: 70px;
  }
  @keyframes spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  @-ms-keyframes spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  @-webkit-keyframes spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  @-moz-keyframes spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  .form-control[disabled],
  .form-control[readonly],
  fieldset[disabled] .form-control {
    background-color: #f1f1f1;
  }

  .feedback-teaser-lg.feedback-teaser{
    max-width: 100%;
    width: 700px;
  }
  .feedback-teaser-lg.feedback-teaser .feed-image{height: 170px;}

  /* Custom div toggler for user in dashboard starts*/
   .usario_detail_modal .single-detail {
      border-top: 1px solid #e8e8e8;
      padding: 10px;
      margin: 0;
    }
    .usario_detail_modal .single-detail:hover {
      color: #404040;
      background-color: #e8f4fe;
    }
    .usario_detail_modal .single-detail .collapsible { display: none;}

    .single-detail.row-drop{
        display: block;
        background: skyblue;
        padding: 2.5%;
        border-radius: 2px;
        color: black;
    }
  /* Custom div toggler for user in dashboard ends*/

  .hide {
    display: none;
  }

.select2-custom-design {
    font-size: 14px;
}

.select2-custom-design .select2-drop {
    background: #3b3b3b;
}

.select2-custom-design .select2-highlighted{
    background: #5c5c5c !important;
}

.select2-custom-design .ui-select-choices-group-label {
    color: #fff;
}
.select2-custom-design .ui-select-choices-row {
    font-size: 12px;
    color: #868686;
}
.select2-custom-design .select2-search {
    padding-top: 10px;
}

.select2-custom-design .select2-result-label:hover {
    background: #5c5c5c;
    color: #fff;
}
.select2-custom-design li.ui-select-choices-row{
    border-radius: .25rem;
}

.select2-custom-design .ui-select-choices-row-inner {
    border-radius: inherit;
}

.select2-custom-design .select2-choice,
.select2-custom-design .select2-choices {
    border-color: #3b3b3b !important;
}

.select2-custom-design .select2-choice,
.select2-custom-design .select2-dropdown-open .select2-choice{
    background-image : none !important;
    background-color : none;
}

.select2-custom-design .select2-container .select2-choice .select2-arrow {
    background : none !important;
    background-image : none !important;
}
 .select2-custom-design .ui-select-toggle{
    top: 6px !important;
}

.select2-container .select2-choice .select2-arrow, .select2-dropdown-open .select2-choice {
        background : none !important;
    background-image : none !important;
}

.select2-container span.select2-chosen{
    max-width: 90% !important;
}

.select2-custom-design .select2-choice, .select2-custom-design .dropdown-toggle
{
    border: 1px solid #e8e8e8 !important;
}

span.select2-arrow.ui-select-toggle{
    border-left: none !important;
}



.select2-custom-design.select2-container-multi .select2-choices{
    background-image : none;
}


.select2-custom-design.select2-container-multi .select2-choices {
    border: 1px solid #e8e8e8 !important;
}

.select2-custom-design.select2-container-multi{
    border-radius: .25rem;
}

.select2-custom-design.ui-select-multiple .select2-choice,
.select2-custom-design.ui-select-multiple .select2-choices,
.select2-container-active .select2-choices
{
    border-color: #e8e8e8 !important;
    -webkit-box-shadow : none !important;
    box-shadow : none !important;
}

.select2-custom-design .dropdown-toggle::after{
    border-bottom: 0 !important;
    border-top: .3em solid !important;
}

.select2-custom-design.show .dropdown-toggle::after{
    border-top: 0 !important;
    border-bottom: .3em solid !important;
}


.select2-custom-design .select2-result-sub li{
    border-top: 1px solid #404040;
}

.form-control::placeholder {
    color: #6c757d !important;
    opacity: 0.5 !important;
}

.form-control::placeholder {
    color: #6c757d !important;
    opacity: 0.5 !important;
}

@-moz-document url-prefix() {
    fieldset { display: table-cell; }
}

.ab_test_config {
  margin-top: 40px;
  margin-bottom: 40px;
  background: #efefef;
  padding: 20px 0;
}

.rzslider .rz-pointer.rz-active:after {
  background-color: white !important;
}

.abconfig-metrics-divider {
  border-bottom: 1px solid #eee;
  margin-top: 10px;
  margin-bottom: 10px;
}

.configuracion_page .add-email-input {
  margin-bottom: 10px !important;
}

.block_header {
  background-color: #9e9e9e;
  padding: 10px 0 10px 20px;
  display: flex;
  align-items: center;
}
.block_header span{
  color: #9e9e9e;
  background-color: #fff;
  padding: 5px 10px;
  border-radius: 50%;
  font-weight: bold;
  display: inline-block;
}
.block_header .header_title{
  display: inline-block;
  color: #fff;
  padding-left: 15px;
}
.block_header .header_title h4{
  font-weight: bold;
  margin: 0;
  font-size: 24px;
  color: white;
}
.block_header .header_title p{
  margin: 0;
}
.plantilla_sub_header{
  background-color: #e5e5e5;
  padding: 15px 0 15px 20px;
}
.plantilla_sub_header p, .plantilla_sub_header a{
  display: inline-block;
}
.plantilla_sub_header p{
  color: #777777;
  margin: 0;
  font-size: 16px;
  width: 70%;
}
.plantilla_sub_header a{
  background-color: #fff;
  color: #01458c;
  border: 1px solid #01458c;
  border-radius: 2px;
  padding: 10px 50px;
  margin-left: 25px;
}
.plantilla_body{
  padding: 25px 20px;
}
.plantilla_body p{
  font-size: 16px;
  color: #666666;
}
.plantilla_body p span{
  font-weight: bold;
  color: #000;
}
.plantilla_body p span.green{
  background-color: transparent !important;
  color: #8cc63e;
}
.plantilla_body p span.red{
  background-color: transparent !important;
  color: #eb1c24;
}
p.plantilla_error{
  margin: 0;
  padding: 10px 15px;
  background-color: #eb1c24;
  color: #fff;
}
p.no_margin{
  margin: 5px 0;
}
.emai_temp_view{
  padding-top: 20px;
}
.emai_temp_view{
  padding-bottom: 50px;
  border-bottom: 1px solid #bfd0e2;
}
.plantilla_form_section{
  padding-top: 20px;
}
.plantilla_form_section form{
  padding-top: 15px;
}
.plantilla_form_section form label{
  font-size: 12px;
  color: #55595c;
  font-weight: bold;
  display: block;
}
.plantilla_form_section form p{
  font-size: 25px;
  color: #000;
  font-weight: bold;
}
.plantilla_form_section form input{
  width: 70%;
}
.plantilla_form_section form button{
  text-align: center;
  background-color: #01458c;
  color: #fff;
  font-size: 14px;
  border: none;
  padding: 10px 60px;
  border-radius: 2px;
  margin: 45px auto 0 auto;
  display: block;
}
.footer{
  z-index: -1;
}
.resumen_page{
  padding: 0 50px;
}
.resumen_page_header{
  padding-bottom: 25px;
  border-bottom: 1px solid #bfd0e2;
}
.resumen_page_header input{
  display: inline-block;
  opacity: 1 !important;
  visibility: visible !important;
  position: inherit !important;
  vertical-align: middle;
}
.resumen_page_header p{
  display: inline-block;
  margin: 5px 0;
  vertical-align: middle;
  padding-left: 5px;
  text-transform: initial;
  color: #7a7a7a;
}
.resumen_page_header .new_box_2 {
  width: 100% !important;
  margin: 0 !important;
}
.resumen_page_header .new_box_2:last-child{
  margin: 5px 0 0 0 !important;
}
.resumen_page_header [type="checkbox"]+label:before, .resumen_page_header [type="checkbox"]:not(.filled-in)+label:after{
  left: -12px !important;
}
.resumen_page_header .new_box_2 [type="checkbox"]:checked+label:before {
  background-image: url(../img/checked.png) !important;
  height: 18px !important;
  width: 18px !important;
  border: none !important;
  top: 0 !important;
  transform: inherit !important;
  left: -12px !important;
}
.resumen_page_header .secound_ch [type="checkbox"]:checked+label:before {
  left: -15px !important;
}
.resumen_page_header .secound_ch [type="checkbox"]+label:before, .resumen_page_header .secound_ch [type="checkbox"]:not(.filled-in)+label:after{
  left: -15px !important;
}
/* .resumen_page_header label{
  margin: 5px 0;
  padding-left: 5px;
  text-transform: initial;
  color: #7a7a7a;
  /*margin: 0 !important;
}*/
.resumen_page h2{
  font-size: 22px;
  color: #02458b;
  font-weight: bold;
}
.email_temps span{
  color: #a9a9a9;
  font-size: 12px;
}
.email_temps p{
  display: block !important;
  padding: 0;
  color: #000;
}
.resumen_page_inner p{
  font-size: 14px !important;
  color: #7f8082 !important;
  margin: 0 !important;
  line-height: 0;
}
.resumen_page_inner span{
  font-size: 16px;
  color: #000;
  line-height: 0;
}
.resumen_page_inner div {
  display: inline-block;
  line-height: 1;
}
.resumen_page_inner div:first-child{
  padding-right: 50px;
}
.resumen_page_subheader{
  padding: 20px 0 35px 0;
  border-bottom: 1px solid #bfd0e2;
}
.resumen_page_inner{
  padding-top: 25px;
}
.resumen_page_body{
  padding-top: 20px;
  padding-bottom: 35px;
  border-bottom: 1px solid #bfd0e2;
}
h2.resumen_page_body_title{
  font-size: 18px !important;
  margin-bottom: 30px;
}
.resumen_page_body_inner p{
  margin: 0;
  color: #000;
  font-size: 16px;
}
.resumen_page_placeholder{
  padding-top: 30px;
}
.resumen_page_placeholder p{
  font-size: 14px;
  color: #7a7a7a;
  padding-bottom: 10px;
}
.resumen_page_placeholder span{
  padding: 5px 35px 25px 10px;
  display: inline-block;
}
.resumen_page_end_title span{
  color: #fff;
  background-color: #01458e;
  font-size: 14px;
  border-radius: 50%;
  padding: 5px 10px;
  display: inline-block;
  font-weight: bold;
  margin-right: 15px;
}
.asunto p{
  color: #8f8f8f;
  font-size: 15px;
}
.asunto p span.bold{
  font-weight: bold;
  color: #000;
}
.asunto p span.red{
  color: #ec1d25;
  background-color: transparent !important;
  font-weight: bold;
}
.resumen_page_end_title h2{
  display: inline-block;
}
.resumen_page_end{
  padding-top: 25px;
}
.resumen_page_buttons a{
  background-color: #01458c;
  border-radius: 2px;
  padding: 10px 60px;
  color: #fff;
}
.resumen_page_buttons a.disable{
  background-color: #bcbdbf;
}
.resumen_page_buttons{
  text-align: center;
  margin-top: 70px;
}
.reporte_page{
  padding: 0 30px;
}
.reporte_page .reporte_page_header{
  background-color: #01458c;
  padding: 20px 30px;
}
.reporte_page .reporte_page_header .row{
  margin: 0;
}
.reporte_page .reporte_page_header span{
  color: #fff;
  font-size: 16px;
}
.reporte_page .reporte_page_header h4{
  color: #fff;
  font-size: 35px;
  /*font-weight: bold;*/
  margin-bottom: 0;
}
.reporte_page .reporte_page_header span.bold{
  font-size: 20px;
}
.reporte_page .reporte_page_inner h2{
  font-size: 22px;
  color: #02458b;
  font-weight: bold;
  margin: 0;
}
.reporte_page .reporte_page_inner .reporte_page_header_data{
  padding: 25px 0 45px 0;
  border-bottom: 1px solid #bfd0e2;
}
.reporte_page .reporte_page_inner span{
  text-transform: initial;
  color: #8c8c8e;
}
.asnto_header .asnto_header_content{
  background-color: #a7a8ac;
  padding: 15px 20px;
  display: flex;
  align-items: center;
}
.asnto_header .asnto_header_content span{
  display: inline-block;
  color: #01448b;
  background-color: #fff;
  padding: 5px 12px;
  border-radius: 50%;
  font-weight: bold;
  font-size: 18px;
  margin-right: 20px;
}
.asnto_header .asnto_header_content .asnto_header_text{
  display: inline-block;
}
.reporte_page_inner .reporte_page_header_data .col.marg_top_repo{
  padding: 0;
  margin-top: 20px !important;
}
.asnto_header .asnto_header_content .asnto_header_text p, .asnto_header .asnto_header_content .asnto_header_text h4{
  color: #fff;
  margin: 0;
}

.wrapper {
  position: relative;
  padding-bottom: 56.25%;
}
.wrapper, iframe.fr-iframe {
  min-height: 2400px;
}

iframe.fr-iframe {
  min-height: 1500px;
}

.preview iframe {
  height: 1200px;
}

.circle {
  cursor: pointer;
}

.refresh-section {
  text-align: center;
  margin-bottom: 20px;
}

.metrics.loading {
  background: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
  position: absolute;
  text-align: center;
}

.loading .label {
  font-size: 10px;
  margin-top: 7px;
}

.refresh-section .last-report {
  font-size: 12px;
  margin-top: 10px;
}

.orderedUp {
  background: url(/public/img/filter.png) no-repeat left center;
  padding-left: 28px !important;
  background-position-x: 8px;
}

.orderedDown {
  background: url(/public/img/filter-down.png) no-repeat left center;
  padding-left: 28px !important;
  background-position-x: 8px;
}
