@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;400&display=swap');

body {
    margin: 0px;
    background-image: url("../imagenes/FondoPrincipal.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-color: #ffffff;
    font-family: 'Montserrat', sans-serif;
}

element.style {
    width: calc(100% - 50px);
}

.example-container {
    width: 800px;
    height: 600px;
    margin: 5% auto 0px auto;
    border: 1px solid #2f353f;
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;    
}

.example-panel {
    padding: 0px;
    color: #fff;
}

i.glyphicon {
    font-size:   40px;
    line-height: 42px;
    text-align: center;
    width: 100%;
}

#toggle-menu-button {
    width:  50px;
    height: 50px;
    line-height: 50px;
    cursor: pointer;
    background-color: #a00000;
    color: #fff;
}

#toggle-menu-button:hover {
    color: #a00000;
    background-color: transparent;
}

.RotateMenu {
    -webkit-transition: -webkit-transform 0.5s ease-out;
    -moz-transition: -moz-transform 0.5s ease-out;
    transition: transform 0.5s ease-out;
    border-radius: 55px;
    font-size: 2em;
    border:2px solid #000;
    background: rgba(255,255,255,.2);
    padding: 15px;     
    color: #000;  
}
.RotateMenu:hover {
     -webkit-transform: rotate(45deg);
     -moz-transform: rotate(45deg);
     transform: rotate(45deg);       
}    
.GranTitulo {
    font-size: 14px;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
}
.swirl-in-fwd {
    -webkit-animation: swirl-in-fwd 0.6s ease-out both;
            animation: swirl-in-fwd 0.6s ease-out both;
}
@-webkit-keyframes swirl-in-fwd {
  0% {
    -webkit-transform: rotate(-540deg) scale(0);
            transform: rotate(-540deg) scale(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotate(0) scale(1);
            transform: rotate(0) scale(1);
    opacity: 1;
  }
}
@keyframes swirl-in-fwd {
  0% {
    -webkit-transform: rotate(-540deg) scale(0);
            transform: rotate(-540deg) scale(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotate(0) scale(1);
            transform: rotate(0) scale(1);
    opacity: 1;
  }
}



.toolslide {
    position: absolute;
    overflow: hidden;
    pointer-events: none;
    z-index: 10;
}

.toolslide.ts-left {
    left: 0px;
    top:  0px;
    color:  white;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5em;
    font-weight: 200;
}

.ts-embed-container {
    transition: margin 0.5s ease;
    -webkit-transition: margin 0.5s ease;                  
    -moz-transition: margin 0.5s ease;                 
    -o-transition: margin 0.5s ease;   
    -ms-transition: margin 0.5s ease;
    color: red;
}

.toolslide .ts-container {
    height: 100%;
    width:  100%;
    position: absolute;
    pointer-events: all;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;                  
    -moz-transition: all 0.5s ease;                 
    -o-transition: all 0.5s ease;   
    -ms-transition: all 0.5s ease;    
}

.toolslide .ts-content-container {
    background-color: #a00000;
    height: 100%;
    width: 100%;
}

.toolslide .ts-content-item {
    height: 100%;
    width: 100%;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    padding-left: 20px;
    padding-top: 20px;
}

.toolslide .ts-content-item.active {
    opacity: 1;
    visibility: visible;
}

.toolslide.ts-left.open .ts-container,
.toolslide.ts-left .ts-content-item.active.slide,
.toolslide.ts-left .ts-content-item.active.slidefade {
    transform: initial;
    -webkit-transform: initial;
    -moz-transform: initial;
    -o-transform: initial;
    -ms-transform: initial;
}

.toolslide.ts-left.closed .ts-container,
.toolslide.ts-left .ts-content-item.slide,
.toolslide.ts-left .ts-content-item.slidefade {
    transform: translate(-100%,0);
    -webkit-transform: translate(-100%,0);
    -moz-transform: translate(-100%,0);
    -o-transform: translate(-100%,0);
    -ms-transform: translate(-100%,0);
}

.menu {
    padding: 5px;
    cursor: pointer;
}
.menu:hover {
    background: rgba(0,0,0,0.5);
}