    
 

/*  Events display */
.events-container {
    overflow-y: scroll;
  
    float: right;
    margin: 0px auto; 
    font: 13px Helvetica, Arial, sans-serif; 
    display: inline-block; 
    padding: 0 10px;
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
}
.events-container:after{
    clear:both;
}
.event-card {
    padding: 20px 0;
    width: 100%;
    margin: 20px auto;
    display: block;
    background: #fff;
    border-left: 10px solid #000;
    border-radius: 3px;
    box-shadow: 3px 8px 16px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
    -moz-box-shadow: 3px 8px 16px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
    -webkit-box-shadow: 3px 8px 16px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}
.event-count, .event-name, .event-cancelled {
    display: inline;
    padding: 0 10px;
    font-size: 1rem;
}
.event-count {
    color: #52A0FD;
    text-align: right;
}
.event-name {
    padding-right:0;
    text-align: left;
}
.event-cancelled {
    color: #FF1744;
    text-align: right;
}

/*  Calendar wrapper */
.calendar-container  { 
    float: left;
    position: relative;
    margin: 0px auto; 

    background: #fff;
    font: 13px Helvetica, Arial, san-serif; 
    display: inline-block; 
    border-bottom-left-radius: 3px;
    border-top-left-radius: 3px;
}
.calendar-container:after{
    clear:both;
}
.calendar {
    display: table;
}

/* Calendar Header */
.year-header { 
          background: #ececec;
    background: -moz-linear-gradient(left, #52A0FD 0%, #00C9FB 80%, #00C9FB 100%);
    background: -webkit-linear-gradient(left, #f5f5f5 0%, #ededed 80%, #f5f5f5 100%);
    background: linear-gradient(to right, #590734 0%, #8f0c5f 80%, #590734 100%);
    font-family: Helvetica;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    -moz-box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    -webkit-box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    height: 40px;
    text-align: center;
    position: relative;
    color: #fff;
    border-top-left-radius: 3px;
    width: 100%;
} 
.year-header span { 
    display:inline-block; 
    font-size: 20px;
    line-height:40px; 
}
.left-button, .right-button { 
    cursor: pointer;
    width:28px; 
    text-align:center; 
    position:absolute; 
} 
.left-button { 
    left:0; 
    -webkit-border-top-left-radius: 5px; 
    -moz-border-radius-topleft: 5px; 
    border-top-left-radius: 5px; 
} 
.right-button { 
    right:0; 
    top:0; 
    -webkit-border-top-right-radius: 5px; 
    -moz-border-radius-topright: 5px; 
    border-top-right-radius: 5px; 
} 
.left-button:hover {
      background: #fff;
    color: #545454;
}
.right-button:hover { 
    background: #fff;
    color: #545454;
}

/* Buttons */
.button{
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    font-size: 1rem;
    border-radius: 25px;
    padding: 0.65rem 1.9rem;
    transition: .2s ease all;
    color: white;
    border: none;
    box-shadow: -1px 10px 20px #9BC6FD;
    background: #52A0FD;
    background: -moz-linear-gradient(left,  #52A0FD 0%, #00C9FB 80%, #00C9FB 100%);
    background: -webkit-linear-gradient(left,  #52A0FD 0%, #00C9FB 80%, #00C9FB 100%);
    background: linear-gradient(to right,  #52A0FD 0%, #00C9FB 80%, #00C9FB 100%);
}
#cancel-button {
    box-shadow: -1px 10px 20px #FF7DAE;
    background: #FF1744;
    background: -moz-linear-gradient(left,  #FF1744 0%, #FF5D95 80%, #FF5D95 100%);
    background: -webkit-linear-gradient(left,  #FF1744 0%, #FF5D95 80%, #FF5D95 100%);
    background: linear-gradient(to right,  #FF1744 0%, #FF5D95 80%, #FF5D95 100%);
}
#add-button {
    display: block;
    position: absolute;
    right:20px;
    bottom: 20px;
}
#add-button:hover, #ok-button:hover, #cancel-button:hover {
    transform: scale(1.03);
}
#add-button:active, #ok-button:active, #cancel-button:active {
    transform: translateY(3px) scale(.97);
}

/* Days/months tables */
.days-table, .dates-table, .months-table { 
    border-collapse:separate; 
    text-align: center;
} 
.day {
    height: 26px;
    width: 44px;
    padding: 0 10px;
    line-height: 26px;
    border: 2px solid transparent;
    text-transform: uppercase;
    font-size: 90%;
    color: #9e9e9e;
}
.month {
    cursor: default;
    height: 26px;
    width: 26px;
    padding: 0 2px;
    padding-top:10px;
    line-height: 26px; 
    /*text-transform:uppercase; */
    font-size: 11px; 
    color:#9e9e9e; 
    transition: all 250ms;
}
.active-month {
   font-weight: bold;
    font-size: 14px;
    color: #000000;
    text-shadow: 0 1px 4px #000;
}
.month:hover {
    color: #000;
    text-shadow: 0 1px 4px #f9f9f9;
    cursor: pointer;
}

/*  Dates table */
.table-date {
    cursor: default;
    color:#2b2b2b; 
    height:26px;
    width: 26px;
        font-size: 17.4px;
    padding: 10px;
    line-height:26px; 
    text-align:center; 
    border-radius: 50%;
    border: 2px solid transparent;
    transition: all 250ms;
}
.table-date:not(.nil):hover { 
    border-color: gray;
    box-shadow: 0 2px 6px #f9f9f9;
    cursor: pointer;
}
.event-date {
     border-color: #c2a857;
    box-shadow: 0 2px 8px #f9f9f9;
}
.active-date{ 
    background: #cf2822;
    box-shadow: 0 2px 8px #cf2822;
    color: #fff;
}
.event-date.active-date {
   background: #c2a857;
    box-shadow: 0 2px 8px #c2a857;
}

/* input dialog */
.dialog{
    z-index: 5;
    background: #fff;
    position:absolute;
    width:415px;
    height: 500px;
    left:387px;
    border-top-right-radius:3px;
    border-bottom-right-radius: 3px;
    display:none;
    border-left: 1px #aaa solid;
}
.dialog-header {
    margin: 20px;
    color:#333;
    text-align: center;
}
.form-container {
    margin-top:25%;
}
.form-label {
    color:#333;
}
.input {
    border:none;
    background: none;
    border-bottom: 1px #aaa solid;
    display:block;
    margin-bottom:50px;
    width: 200px;
    height: 20px;
    text-align: center;
    transition: border-color 250ms;
}
.input:focus {
    outline:none;
    border-color: #00C9FB;
}
.error-input {
    border-color: #FF1744;
}

/* Tablets and smaller */
@media only screen and (max-width: 780px) {
    .content {
        overflow: visible;
        position:relative;
        max-width: 100%;
        width: 370px;
        height: 100%;
      /*  background: #52A0FD;*/
       /* background: -moz-linear-gradient(left,  #52A0FD 0%, #00C9FB 80%, #00C9FB 100%);
        background: -webkit-linear-gradient(left,  #52A0FD 0%, #00C9FB 80%, #00C9FB 100%);
        background: linear-gradient(to right,  #52A0FD 0%, #00C9FB 80%, #00C9FB 100%);  */
    }
    .dialog {
        width:370px;
        height: 450px;
        border-radius: 3px;
        top:0;
        left:0;
    }
    .events-container {
        float:none;
        overflow: visible;
        margin: 0 auto;
        padding: 0;
        display: block;
        left: 0;
        border-radius: 3px;
    }

    .calendar-container {
        float: none;
        padding: 0;
        margin: 0 auto;
        margin-right: 0;
        display: block;
        left: 0;
        border-radius: 3px;
        box-shadow: 3px 8px 16px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
        -moz-box-shadow: 3px 8px 16px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
        -webkit-box-shadow: 3px 8px 16px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
    }
}

/* Small phone screens */
@media only screen and (max-width: 400px) {
    .content, .events-container, .year-header, .calendar-container {
        width: 320px;
    }
    .dialog {
        width: 320px;
    }
    .months-table {
        display: block;
        margin: 0 auto;
        width: 320px;
    }
    .event-card {
        width: 300px;
    }
    .day {
        padding: 0 7px;
    }
    .month {
        display: inline-block;
        padding: 10px 10px;
        font-size: .8rem;
    }
    .table-date {
        width: 20px;
        height: 20px;
        line-height: 20px;
    }
    .event-name, .event-count, .event-cancelled {
        font-size: .8rem;
    }
    .add-button{
        bottom: 10px;
        right: 10px;
        padding: 0.5rem 1.5rem;
    }
} 



 p.about-text {
    font-size: 24px;
    line-height: 36px;
    color: #5c5c5c;
    font-family: "Rubik",sans-serif;
    font-weight: 400;
    margin-top: 17px;
    margin-bottom: 44px;
}
 


  a.video-icon {
    position: absolute;
    width: 100px;
    height: 100px;
    font-size: 25px;
    line-height: 100px;
    background: #fff;
    display: inline-block;
    border-radius: 50%;
    text-align: center;
    border-radius: 50%;
    top: 50%;
  margin-left: -90px;
    transform: translateY(-50%);
    left: 100%;
    color:red;
    box-shadow: 2px 2px 2px 2px rgba(0,0,0,.1);
}

 .section-title {
    padding-left: 77px;
}

.mb-65 {
    margin-bottom: 67px;
}



 .modal-bod {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem;
}

.social {
  position: fixed; /* Hacemos que la posición en pantalla sea fija para que siempre se muestre en pantalla*/
  left: 0; /* Establecemos la barra en la izquierda */
  left: -39px;
  top: 200px; /* Bajamos la barra 200px de arriba a abajo */
  z-index: 2000; /* Utilizamos la propiedad z-index para que no se superponga algún otro elemento como sliders, galerías, etc */
}

  .social ul {
    list-style: none;
  }

  .social ul li a {
    display: inline-block;
    color:#fff;
    background: #000;
    padding: 10px 15px;
    text-decoration: none;
    -webkit-transition:all 500ms ease;
    -o-transition:all 500ms ease;
    transition:all 500ms ease; /* Establecemos una transición a todas las propiedades */
  }

  .social ul li .icon-facebook {background:#3b5998;} /* Establecemos los colores de cada red social, aprovechando su class */
  .social ul li .icon-twitter {background: #00abf0;}
  .social ul li .icon-googleplus {background: #d95232;}
  .social ul li .icon-pinterest {background: #ae181f;}
  .social ul li .icon-mail {background: #666666;}

  .social ul li a:hover {
    background: #000; /* Cambiamos el fondo cuando el usuario pase el mouse */
    padding: 10px 30px; /* Hacemos mas grande el espacio cuando el usuario pase el mouse */
  }
 


 






  .btn-3d {
    padding: 25px 60px 25px 120px;
    border-radius: 10px;
}

.btn-3 {
    background: #fcad26;
    color: #fff;
}
.btne {
   /* border: none;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    cursor: pointer;
    padding: 25px 80px;
    display: inline-block;
    margin: 15px 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    outline: none !important;
    position: relative;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    background: #f9f9f9;*/


    border: none;
    font-family: inherit;
    font-size: inherit;
    color: #c4a857;
    background: none;
    cursor: pointer;
    padding: 20px 80px;
    display: inline-block;
    margin: 15px 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    outline: none !important;
    position: relative;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    background: #f9f9f9;
  
}

 

.btne::after {
    content: '';
    position: absolute;
    z-index: 1;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.btn-3d::after {
    width: 20px;
    height: 20px;
    background: #3b3b3b;
    z-index: 40000000;
    left: 58px;
    top: 50%;
    margin: -10px 0 0 -10px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.btn-3d:before {
    background: #3b3b3b;
    color: #cdb570;
    z-index: 2;
  /*  border-radius: 10px 0 0 10px;*/







}
.btn-3:before {
   /* position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    line-height: 3;
    font-size: 140%;
    width: 60px;*/

position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    line-height: 3;
    font-size: 128%;
    width: 60px;







}

.btn-3d:active:before {
  color: #f58500;
}

.btn-3d:active {
  top: 0;
}

.btn-3d:active:after {
  left: 60px;
}


  @font-face {
  font-family: 'customFont';
  src: url('../fonts/GloriaHallelujah.ttf');
}

.TutorialMDM6{
  position: absolute;
  top:0px;
  left:0px;
  bottom:0px;
  right:0px;
  z-index: 50000;
  font-family: customFont;
  color:white;
}

.TutorialMDM6 .overlay{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 /* background: #7B7979;
  opacity: 0.70;
  filter: Alpha(Opacity=70);*/

  background: #ffffff;
    /* opacity: 0.70;*/
}

.TutorialMDM6 .content{
  position: absolute;
  top:0px;
  left:0px;
  bottom:0px;
  right:0px;
}

/*tutorial center*/

.Tutorial-center{
  width: 200px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  top:270px;
  z-index: 1000;
}
.Tutorial-center .iconMouse{
  position: absolute;
  top: 21px;
  right: 28px;
}

.Tutorial-center .iconHand{
  position: absolute;
  top: 2px;
  left: -15px;
}
.Tutorial-center .fontsMouse{
  left: 139px;
  top: -11px;
  position:absolute;
  
}
.Tutorial-center .fontsMouse .title{
  position:absolute;
  top:0px;
  font-size: 200%;
  font-weight:bold;
  -webkit-transform: rotate(356deg);
  -moz-transform: rotate(356deg);
  -o-transform: rotate(356deg);
  writing-mode: lr-tb;
}
.Tutorial-center .fontsMouse .options{
  position: absolute;
  top:115px;
  font-size: 200%;
  font-weight:bold;
  -webkit-transform: rotate(9deg);
  -moz-transform: rotate(9deg);
  -o-transform: rotate(9deg);
  writing-mode: lr-tb;
}

.Tutorial-center .fontsHand{
  left: -72px;
  top: -38px;
  position:absolute;
}
.Tutorial-center .fontsHand .title{
  position:absolute;
  top:0px;
  left:120px;
  font-size: 200%;
  font-weight:bold;
}
.Tutorial-center .fontsHand .options{
  position: absolute;
  top:115px;
  font-size: 200%;
  font-weight:bold;
}

/*close tutorial*/
.Tutorial-close{
 /* width: 65px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    top: 70px;
    right: -19px;
    position: absolute;
    z-index: 1000;
    font-size: 400%;
    cursor: pointer;
    /* text-decoration: underline; este no */
   /* color: white;
    font-family: arial;
*/
 
    width: 77px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    position: relative;
        top: 0px;
    right: -32px;
    position: absolute;
    z-index: 1000;
    font-size: 400%;
    cursor: pointer;
    /* text-decoration: underline; */
    color: white;
    font-family: arial;

    z-index: 10000000;
 




}
/**Herramientas*/

.Tutorial-panel-tools{
  position:absolute;
  top:149px;
  left:20px;
  width:382px;
  background:transparent;
  height:200px;
}


.Tutorial-panel-tools .vSeparator{
  position:absolute;top:0px;width: 6px;height: 46px;
}



.Tutorial-panel-tools .vSeparatorMidle{
  position:absolute;top:52px;width: 6px;height: 63px;
}

.Tutorial-panel-tools .hSeparator{
  position:absolute;left:40px;top:46px;width: 252px;height: 6px;
}

.Tutorial-panel-tools .ruteo-hSeparator{
  position:absolute;left:347px;top:92px;width:44px;height: 6px;
}

.Tutorial-panel-tools .fonts{
  left: 40px;
  top: 112px;
  position:absolute;
}
.Tutorial-panel-tools .fonts .title{
  font-size: 220%;
  font-weight:bold;
  -webkit-transform: rotate(356deg);
  -moz-transform: rotate(356deg);
  -o-transform: rotate(356deg);
  writing-mode: lr-tb;
}
.Tutorial-panel-tools .fonts .options{
  font-size: 160%;
  margin-left:37px;
  line-height:1.3;
  -webkit-transform: rotate(363deg);
  -moz-transform: rotate(363deg);
  -o-transform: rotate(363deg);
}

/*tracking*/

.Tutorial-tracking{
  position:absolute;
  top:75px;
  right:250px;
  width:370px;
  background:transparent;
  height:82px;
}



.Tutorial-tracking .fonts .options{
  font-size: 160%;
  margin-left: 386px;
    margin-top: 15px;
    line-height: 1.3;
  -webkit-transform: rotate(356deg);
  -moz-transform: rotate(356deg);
  -o-transform: rotate(356deg);
}

.Tutorial-tracking .hSeparator{
  position:absolute; right:-197px; top:131px; width:65px; height:6px;
}



.Tutorial-tracking .vSeparator{
  position:absolute; right:-210px; top:134px; width:80px; height: 34px;
}



/*Busqueda*/

.Tutorial-search{
  position:absolute;
  top:65px;
  left:250px;
  width:370px;
  background:transparent;
  height:82px;
}
.Tutorial-search .hSeparator{
  position:absolute;left:0px;top:15px;width: 160px;height: 6px;
}
.Tutorial-search .fonts{
  left: 175px;
  top: -10px;
  position:absolute;
  
}
.Tutorial-search .fonts .title{
  font-size: 220%;
  font-weight:bold;
  -webkit-transform: rotate(352deg);
  -moz-transform: rotate(352deg);
  -o-transform: rotate(352deg);
  writing-mode: lr-tb;
  line-height:1.3
}


/*temas*/

.thems{
  position: absolute;bottom:0px;left: 0px;
  height:300px;
  background: transparent;
  left:32px;
  right:233px;
}

.thems .vSeparator{
  position:absolute;bottom:10px;width: 6px;height: 48px;
}

.thems .hSeparator{
  position:absolute;left:0px;bottom:59px;width: 100%;height: 6px;
}

.thems .vSeparatorMidle{
  position:absolute;bottom:62px;width: 6px;height: 63px;
}
.thems .fonts{
  left: 88px;
  bottom: 120px;
  position:absolute;
}
.thems .fonts .title{
  font-size: 220%;
  font-weight:bold;
  -webkit-transform: rotate(350deg);
  -moz-transform: rotate(350deg);
  -o-transform: rotate(350deg);
}

/*map reference*/

.mapReference{
  position: absolute;
  bottom:11px;
  height:120px;
  background: transparent;
  width:205px;
  right:219px;
}

.mapReference .vSeparator{
  position:absolute;bottom:10px;width: 6px;height: 93%;
}

.mapReference .hSeparator{
  position:absolute;right:10px;bottom:95%;width: 50px;height: 6px;
}

.mapReference .fonts{
  right: 68px;
  bottom: 82px;
  position:absolute;
}
.mapReference .fonts .title{
  font-size: 160%;
  font-weight:bold;
  -webkit-transform: rotate(357deg);
  -moz-transform: rotate(357deg);
  -o-transform: rotate(357deg);
  line-height:1.3;
}
/*layers*/

.addLayers{
  position: absolute;
  bottom:11px;
  height:200px;
  background: transparent;
  width:231px;
  right:196px;
}

.addLayers .vSeparator{
  position:absolute;bottom:10px;width: 6px;height: 93%;
}

.addLayers .hSeparator{
  position:absolute;right:10px;bottom:95%;width: 50px;height: 6px;
}

.addLayers .fonts{
  right: 65px;
  bottom: 157px;
  position:absolute;
}
.addLayers .fonts .title{
  font-size: 160%;
  font-weight:bold;
  -webkit-transform: rotate(353deg);
  -moz-transform: rotate(353deg);
  -o-transform: rotate(353deg);
  line-height:1.6;
}

/*transparency*/

.transparency{
  position: absolute;
  bottom:11px;
  height:270px;
  background: transparent;
  width:209px;
  right:169px;
}

.transparency .vSeparator{
  position:absolute;bottom:10px;width: 6px;height: 93%;
}

.transparency .hSeparator{
  position:absolute;right:10px;bottom:95%;width: 50px;height: 6px;
}

.transparency .fonts{
  right: 75px;
  bottom: 229px;
  position:absolute;
}
.transparency .fonts .title{
  font-size: 160%;
  font-weight:bold;
  -webkit-transform: rotate(356deg);
  -moz-transform: rotate(356deg);
  -o-transform: rotate(356deg);
  line-height:1.3;
}
/*other maps*/

.otherMaps{
  position: absolute;
  bottom:11px;
  height:355px;
  background: transparent;
  width:172px;
  right:78px;
}

.otherMaps .vSeparator{
  position:absolute;bottom:10px;width: 6px;height: 93%;
}

.otherMaps .hSeparator{
  position:absolute;right:10px;bottom:95%;width: 50px;height: 6px;
}

.otherMaps .fonts{
  right: 71px;
  bottom: 309px;
  position:absolute;
}
.otherMaps .fonts .title{
  font-size: 160%;
  font-weight:bold;
  -webkit-transform: rotate(350deg);
  -moz-transform: rotate(350deg);
  -o-transform: rotate(350deg);
  line-height:1.3;
}

/*control zoom*/

.Tutorial-controlZoom{
  position:absolute;
  top:80px;
  right:42px;
  width:350px;
  background:transparent;
  height:67px;
}

.Tutorial-controlZoom .vSeparator{
  position:absolute;bottom:0px;top:0px;width: 6px;
}
.Tutorial-controlZoom .hSeparator{
  position:absolute;right:0px;width: 30px;height: 6px;
}
.Tutorial-controlZoom .fonts{
  right: 76px;
  top: 9px;
  position:absolute;
}
.Tutorial-controlZoom .fonts .title{
  font-size: 220%;
  font-weight:bold;
  -webkit-transform: rotate(-9deg);
  -moz-transform: rotate(-9deg);
  -o-transform: rotate(-9deg);
  writing-mode: lr-tb;
}
.Tutorial-controlZoom .fonts .options{
  font-size: 220%;
  font-weight:bold;
  -webkit-transform: rotate(362deg);
  -moz-transform: rotate(362deg);
  -o-transform: rotate(362deg);
  writing-mode: lr-tb;
}


/*.Tutorial_template{display:block;background-image:url(https://www.iepcdurango.mx/instituto_electoral/Eterna/img/folder_icon.gif);overflow:hidden;}

.line-horizontal{
  display:block;background-image:url(https://www.iepcdurango.mx/instituto_electoral/Eterna/img/contraloria_3456.png);overflow:hidden;background-repeat: repeat-x;
}
.line-vertical{
  display:block;background-image:url(https://www.iepcdurango.mx/instituto_electoral/Eterna/img/afilia_123456.gif);overflow:hidden;background-repeat: repeat-y;
}


*/
.mouse{
  background-position:-208px -27px;
  background-repeat: no-repeat;
  width:130px;
  height: 218px;
}
.hand{
  background-position:-4px -28px;
  background-repeat: no-repeat;
  width:185px;
  height: 218px;
}
.scroll{
  background-position:-346px -84px;
  background-repeat: no-repeat;
  width:49px;
  height: 88px;
}

.drag{
  background-position:-348px -3px;
  background-repeat: no-repeat;
  width:60px;
  height: 71px;
}

.zoomBottons{
  background-position:-348px -184px;
  background-repeat: no-repeat;
  width:60px;
  height: 84px;
}


/*Right tools*/

.rightTools_arrow{
  background-position:-420px -19px;;
  background-repeat: no-repeat;
  width:189px;
  height: 34px;
  
  -webkit-transform: rotate(-9deg);
  -moz-transform: rotate(-9deg);
  -o-transform: rotate(-9deg);
}

.Tutorial-rightTools {
    top: 0px;
    position: relative;
}
.Tutorial-rightTools .fonts .title{
  font-size: 220%;
  font-weight:bold;
  -webkit-transform: rotate(-9deg);
  -moz-transform: rotate(-9deg);
  -o-transform: rotate(-9deg);
  writing-mode: lr-tb;
}


/********************************** TUTORIAL ECONOMICO *****************/
@font-face {
  font-family: 'customFont';
  src: url('../fonts/GloriaHallelujah.ttf');
}

#tutorialCE{
  position: absolute;
  bottom: 41px;
  left:30px;
}

#tutorialCE .marker{
  position: relative;
  margin-left: 16px;
}


#tutorialCE .icon_marker{
  position: absolute;
  top: 68px;
  left: 14px;
}

#tutorialCE .labels{
  position: relative;
   width: 220px;
  text-align: center;
}


#tutorialCE .labels .description{
  color:#fff;
  font-size: 200%;
  text-shadow: 0 0 0px #fff, 0 0 0px #fff, 0 0 0px #fff, 0 0 10px #808080, 0 0 10px #808080, 0 0 10px #808080, 0 0 10px #808080, 0 0 10px #808080;
}
#tutorialCE .labels .reference{
  color:#EF7620;
  font-size: 270%;
  font-weight:bold;
  text-shadow: 0px 2px 1px #808080;
 
}


.template_tutorialCE{
  display:none;background-image:url(../img/CE/tutorialCE.png);overflow:hidden; background-repeat:no-repeat;
}

.ttce_logo{ width:150px; height:192px; background-position:0px 0px; }


 .cuadro6 {
    background-color: #3b3b3b;
        padding: 15px;
}
.mb10 {
    margin-bottom: 10px !important;
}


.text-lefts {
    text-align: left;
}

 section.section .section-titles {
    text-transform: uppercase;
}

.dorado {
      color: #ceb670;;
}
.font-alts {
    font-family: 'Montserrat', sans-serif;
}


.marco {
    box-shadow: 1px 2px 10px lightgrey;
}
.marco {
    box-shadow: 1px 2px 10px lightgrey;
}

.bgcolor-white {
    background-color: rgba(255, 255, 255, 0.98) !important;
    color: #444444 !important;
    border-color: #cfd9db !important;
}
.pa10 {
    padding: 10px !important;
}

.pt15 {
    padding-top: 15px !important;
}


.nm {
    margin: 0px !important;
    text-align: center;
}

@media (min-width: 992px){
.col-lg-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
    float: left;
}}




  .parallax {
    background-attachment: fixed;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

.breadcrumb {
    background-size: cover;
    margin: 0 !important;
}
.ptb200 {
    padding-top: 200px;
    padding-bottom: 200px;
}
.overlay2 {
    position: relative;
    z-index: 0;
}

.overlay2::before {
    position: absolute;
    content: "";
    background-color: #000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.5;
}



  .amor{
padding: 16px;border-left-color: red;
border-color: #fff;


}


.amor:before {
    top: 0;
    left: 0;
    border-width: 1px 0 0 1px;
}

.amor:before {
    content: '';
    position: absolute;
    width: 54px;
    height: 54px;
    border-style: solid;
  border-color: #000;
}




.amor:after {
    right: 0;
    bottom: 0;
    border-width: 0 1px 1px 0;
}



.amor:after {
    content: '';
    position: absolute;
    width: 54px;
    height: 54px;
    border-style: solid;
    border-color: #000;
}

a.video-icon {
    position: absolute;
    width: 100px;
    height: 100px;
    font-size: 25px;
    line-height: 100px;
    background: #ffffffd6;
    display: inline-block;
    border-radius: 50%;
    text-align: center;
    border-radius: 50%;
    top: 50%;
    margin-left: -90px;
    transform: translateY(-50%);
    left: 100%;
  
    box-shadow: 2px 2px 2px 2px rgba(0,0,0,.1);
}




@media (max-height: 768px), (max-width: 1200px){

#hero {
    margin-bottom: -56px;
     height: 85vh;
}



#hero .carousel-inner .carousel-item, #hero .carousel-inner .active.carousel-item-left, #hero .carousel-inner .active.carousel-item-right{
height:600px;

}


}





@media (min-width: 992px){
.col-lg-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    float: left;
}

}
@media (min-width: 768px){
.col-md-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    float: left;
}
}


.slanted-gray:after {
    content: "";
    background: #fff;
    height: 200px;
    -webkit-transform: skewY(-5deg);
    -ms-transform: skewY(-5deg);
    transform: skewY(-5deg);
    position: absolute;
    left: 0;
    bottom: -100px;
    right: 0;
    z-index: 1;
}




.temasinte{
  font-size: 42px;
    font-weight: 600;
    margin-bottom: -30px;
    padding-bottom: 20px;
    position: relative;
    font-family: 'Poppins', 'sans-serif';

 
 
  background: -webkit-linear-gradient(left top, #59073B, #910a61);
  background: linear-gradient(to bottom right, #59073B, #910a61);
  -webkit-background-clip: text;  
  -webkit-text-fill-color: transparent;  





    
}

