@font-face {
    font-family: 'Montserrat';
    src: url('/fonts/montserrat/Montserrat-Regular.ttf') format('TrueType');
    font-weight: 1 400;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/fonts/montserrat/Montserrat-Medium.ttf') format('TrueType');
    font-weight: 500 500;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/fonts/montserrat/Montserrat-SemiBold.ttf') format('TrueType');
    font-weight: 600 600;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/fonts/montserrat/Montserrat-Bold.ttf') format('TrueType');
    font-weight: 700 900;
    font-style: normal;
}

@font-face {
    font-family: 'Myriad Pro';
    src: url('/fonts/myriad-pro/MyriadPro-Light.otf') format('OpenType');
    font-weight: 1 400;
    font-style: normal;
}

@font-face {
    font-family: 'Myriad Pro';
    src: url('/fonts/myriad-pro/MyriadPro-Regular.otf') format('OpenType');
    font-weight: 500 500;
    font-style: normal;
}

@font-face {
    font-family: 'Myriad Pro';
    src: url('/fonts/myriad-pro/MyriadPro-SemiBold.otf') format('OpenType');
    font-weight: 600 600;
    font-style: normal;
}

@font-face {
    font-family: 'Myriad Pro';
    src: url('/fonts/myriad-pro/MyriadPro-Bold.otf') format('OpenType');
    font-weight: 700 900;
    font-style: normal;
}

@font-face {
    font-family: 'Antipasto Pro';
    src: url('/fonts/antipasto/AntipastoPro.ttf') format('TrueType');
    font-weight: 1 400;
    font-style: normal;
}

@font-face {
    font-family: 'Antipasto Pro';
    src: url('/fonts/antipasto/AntipastoPro-Medium.ttf') format('TrueType');
    font-weight: 500 500;
    font-style: normal;
}

@font-face {
    font-family: 'Antipasto Pro';
    src: url('/fonts/antipasto/AntipastoPro-DemiBold.ttf') format('TrueType');
    font-weight: 600 700;
    font-style: normal;
}

@font-face {
    font-family: 'Antipasto Pro';
    src: url('/fonts/antipasto/AntipastoPro-ExtraBold.ttf') format('TrueType');
    font-weight: 700 900;
    font-style: normal;
}


body{
    background: #120C3C;
    background: linear-gradient(to top right, #120C3C 0%, #252278 50%, #120C3C 100%);
}

.bg-azul-lignum{
    background: #120C3C !important;
}

.bg-verde-lignum{
    background: #2CAAA1 !important;
}

.bg-negro-lignum{
    background: #252525 !important;
}

.bg-naranja-lignum{
    background: #E2710A !important;
}

.color-azul-lignum{
    color: #120C3C !important;
}

.color-verde-lignum{
    color: #2CAAA1;
}

.color-naranja-lignum{
    color: #E2710A !important;
}

.border-color-naranja-lignum{
    border-color: #E2710A;
}
.border-color-azul-lignum{
    border-color: #120C3C ;
}

.border-color-verde-lignum{
    border-color: #2CAAA1;
}

.border-radius-15px-lignum{
    border-radius: 15px !important;
}

.border-radius-30px-lignum{
    border-radius: 30px !important;
}


.sombra-lignum{
    box-shadow: 4px 5px 5px 0px rgba(48,48,48,0.72);
    -webkit-box-shadow: 4px 5px 5px 0px rgba(48,48,48,0.72);
    -moz-box-shadow: 4px 5px 5px 0px rgba(48,48,48,0.72);
}

.sombra-lignum-1{
    box-shadow: 1px 1px 1px 0px rgba(85, 85, 85, 0.72);
    -webkit-box-shadow: 1px 1px 1px 0px rgba(85, 85, 85, 0.72);
    -moz-box-shadow: 1px 1px 1px 0px rgba(85, 85, 85, 0.72);
}

.texto-sombra-lignum{
    text-shadow:  1px 1px 1px rgba(14, 14, 14, 0.72) !important;
}

.placeholder-italic-lignum:placeholder-shown {
    font-style: italic;
}

/* elementos particulares */

body::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
}

body::-webkit-scrollbar
{
    width: 3px;
    background-color: #F5F5F5;
}

body::-webkit-scrollbar-thumb
{
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: #9c9c9c;
}

.preloader {
    background: #c8c0eb;
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 99999;
    margin: auto;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    display: none;
}
.spinner{
    animation-name: spin;
    animation-duration: 800ms;
    animation-iteration-count:initial;
    animation-timing-function: linear;
    /* transform: rotate(3deg); */
     /* transform: rotate(0.3rad);/ */
     /* transform: rotate(3grad); */
     /* transform: rotate(.03turn);  */
     display: none;
    }

@keyframes spin {
      from {
          transform:rotate(0deg);
      }
      to {
          transform:rotate(360deg);
      }
    }


/* The flip box container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */
.flip-box {
    background-color: transparent;
    width: 60px;
    height: 60px;
    perspective: 1000px; /* Remove this if you don't want the 3D effect */
    }

    /* This container is needed to position the front and back side */
.flip-box-inner {
        position: relative;
        width: 100%;
        height: 100%;
        text-align: center;
        transition: transform 0.8s;
        transform-style: preserve-3d;
    }

    /* Do an horizontal flip when you move the mouse over the flip box container */
.flip-box:hover .flip-box-inner {
        transform: rotateY(180deg);
    }

    /* Position the front and back side */
.flip-box-front, .flip-box-back {
        position: absolute;
        width: 100%;
        height: 100%;
        -webkit-backface-visibility: hidden; /* Safari */
        backface-visibility: hidden;
    }

    /* Style the back side */
.flip-box-back {
        transform: rotateY(180deg);
    }











    /* Propios */

    .navbar-lignum{
        border-bottom: 1px solid rgba(184, 184, 184, 0.527) !important;
    }

    /* body {
        font-family: 'Myriad Pro' !important;
        font-weight: 400 !important;
     } */
